--- a/opc_ua/opcua_client_maker.py Sun Jan 16 17:00:58 2022 +0100
+++ b/opc_ua/opcua_client_maker.py Wed Feb 02 20:27:17 2022 +0100
@@ -29,7 +29,7 @@
UA_NODE_ID_types = {
"int" : ("UA_NODEID_NUMERIC", "{}" ),
"str" : ("UA_NODEID_STRING" , '"{}"'),
- "UUIS" : ("UA_NODEID_UUID" , '"{}"'),
+ "UUID" : ("UA_NODEID_UUID" , '"{}"'),
}
lstcolnames = [ "Name", "NSIdx", "IdType", "Id", "Type", "IEC"]
@@ -485,11 +485,11 @@
#include <open62541/client_highlevel.h>
#include <open62541/plugin/log_stdout.h>
-UA_Client *client;
+static UA_Client *client;
#define DECL_VAR(ua_type, C_type, c_loc_name) \\
-UA_Variant c_loc_name##_variant; \\
-C_type c_loc_name##_buf = 0; \\
+static UA_Variant c_loc_name##_variant; \\
+static C_type c_loc_name##_buf = 0; \\
C_type *c_loc_name = &c_loc_name##_buf;
%(decl)s
@@ -501,7 +501,7 @@
}
-#define INIT_READ_VARIANT(ua_type, c_loc_name) \\
+#define INIT_READ_VARIANT(ua_type, c_loc_name) \\
UA_Variant_init(&c_loc_name##_variant);
#define INIT_WRITE_VARIANT(ua_type, ua_type_enum, c_loc_name) \\
--- a/svghmi/analyse_widget.xslt Sun Jan 16 17:00:58 2022 +0100
+++ b/svghmi/analyse_widget.xslt Wed Feb 02 20:27:17 2022 +0100
@@ -18,14 +18,26 @@
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
- <xsl:variable name="_type" select="substring-before($args,':')"/>
+ <xsl:variable name="_typefreq" select="substring-before($args,':')"/>
+ <xsl:variable name="typefreq">
+ <xsl:choose>
+ <xsl:when test="$_typefreq">
+ <xsl:value-of select="$_typefreq"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$args"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
+ <xsl:variable name="freq" select="substring-after($typefreq,'|')"/>
+ <xsl:variable name="_type" select="substring-before($typefreq,'|')"/>
<xsl:variable name="type">
<xsl:choose>
<xsl:when test="$_type">
<xsl:value-of select="$_type"/>
</xsl:when>
<xsl:otherwise>
- <xsl:value-of select="$args"/>
+ <xsl:value-of select="$typefreq"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
@@ -37,6 +49,11 @@
<xsl:attribute name="type">
<xsl:value-of select="$type"/>
</xsl:attribute>
+ <xsl:if test="$freq">
+ <xsl:attribute name="freq">
+ <xsl:value-of select="$freq"/>
+ </xsl:attribute>
+ </xsl:if>
<xsl:for-each select="str:split(substring-after($args, ':'), ':')">
<arg>
<xsl:attribute name="value">
@@ -204,6 +221,71 @@
<xsl:text>Boolean variable</xsl:text>
</path>
</xsl:template>
+ <xsl:template name="generated_button_class">
+ <xsl:param name="fsm"/>
+ <xsl:text> frequency = 5;
+</xsl:text>
+ <xsl:text> display = "inactive";
+</xsl:text>
+ <xsl:text> state = "init";
+</xsl:text>
+ <xsl:text> dispatch(value) {
+</xsl:text>
+ <xsl:apply-templates mode="dispatch_transition" select="$fsm"/>
+ <xsl:text> }
+</xsl:text>
+ <xsl:text> onmouseup(evt) {
+</xsl:text>
+ <xsl:text> svg_root.removeEventListener("pointerup", this.bound_onmouseup, true);
+</xsl:text>
+ <xsl:apply-templates mode="mouse_transition" select="$fsm">
+ <xsl:with-param name="position" select="'up'"/>
+ </xsl:apply-templates>
+ <xsl:text> }
+</xsl:text>
+ <xsl:text> onmousedown(evt) {
+</xsl:text>
+ <xsl:text> svg_root.addEventListener("pointerup", this.bound_onmouseup, true);
+</xsl:text>
+ <xsl:apply-templates mode="mouse_transition" select="$fsm">
+ <xsl:with-param name="position" select="'down'"/>
+ </xsl:apply-templates>
+ <xsl:text> }
+</xsl:text>
+ <xsl:apply-templates mode="actions" select="$fsm"/>
+ <xsl:text> animate(){
+</xsl:text>
+ <xsl:text> if (this.active_elt && this.inactive_elt) {
+</xsl:text>
+ <xsl:for-each select="str:split('active inactive')">
+ <xsl:text> if(this.display == "</xsl:text>
+ <xsl:value-of select="."/>
+ <xsl:text>")
+</xsl:text>
+ <xsl:text> this.</xsl:text>
+ <xsl:value-of select="."/>
+ <xsl:text>_elt.style.display = "";
+</xsl:text>
+ <xsl:text> else
+</xsl:text>
+ <xsl:text> this.</xsl:text>
+ <xsl:value-of select="."/>
+ <xsl:text>_elt.style.display = "none";
+</xsl:text>
+ </xsl:for-each>
+ <xsl:text> }
+</xsl:text>
+ <xsl:text> }
+</xsl:text>
+ <xsl:text> init() {
+</xsl:text>
+ <xsl:text> this.bound_onmouseup = this.onmouseup.bind(this);
+</xsl:text>
+ <xsl:text> this.element.addEventListener("pointerdown", this.onmousedown.bind(this));
+</xsl:text>
+ <xsl:text> }
+</xsl:text>
+ </xsl:template>
<xsl:template match="widget[@type='CircularBar']" mode="widget_desc">
<type>
<xsl:value-of select="@type"/>
--- a/svghmi/gen_dnd_widget_svg.xslt Sun Jan 16 17:00:58 2022 +0100
+++ b/svghmi/gen_dnd_widget_svg.xslt Wed Feb 02 20:27:17 2022 +0100
@@ -20,14 +20,26 @@
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
- <xsl:variable name="_type" select="substring-before($args,':')"/>
+ <xsl:variable name="_typefreq" select="substring-before($args,':')"/>
+ <xsl:variable name="typefreq">
+ <xsl:choose>
+ <xsl:when test="$_typefreq">
+ <xsl:value-of select="$_typefreq"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$args"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
+ <xsl:variable name="freq" select="substring-after($typefreq,'|')"/>
+ <xsl:variable name="_type" select="substring-before($typefreq,'|')"/>
<xsl:variable name="type">
<xsl:choose>
<xsl:when test="$_type">
<xsl:value-of select="$_type"/>
</xsl:when>
<xsl:otherwise>
- <xsl:value-of select="$args"/>
+ <xsl:value-of select="$typefreq"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
@@ -39,6 +51,11 @@
<xsl:attribute name="type">
<xsl:value-of select="$type"/>
</xsl:attribute>
+ <xsl:if test="$freq">
+ <xsl:attribute name="freq">
+ <xsl:value-of select="$freq"/>
+ </xsl:attribute>
+ </xsl:if>
<xsl:for-each select="str:split(substring-after($args, ':'), ':')">
<arg>
<xsl:attribute name="value">
--- a/svghmi/gen_index_xhtml.xslt Sun Jan 16 17:00:58 2022 +0100
+++ b/svghmi/gen_index_xhtml.xslt Wed Feb 02 20:27:17 2022 +0100
@@ -175,14 +175,26 @@
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
- <xsl:variable name="_type" select="substring-before($args,':')"/>
+ <xsl:variable name="_typefreq" select="substring-before($args,':')"/>
+ <xsl:variable name="typefreq">
+ <xsl:choose>
+ <xsl:when test="$_typefreq">
+ <xsl:value-of select="$_typefreq"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$args"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
+ <xsl:variable name="freq" select="substring-after($typefreq,'|')"/>
+ <xsl:variable name="_type" select="substring-before($typefreq,'|')"/>
<xsl:variable name="type">
<xsl:choose>
<xsl:when test="$_type">
<xsl:value-of select="$_type"/>
</xsl:when>
<xsl:otherwise>
- <xsl:value-of select="$args"/>
+ <xsl:value-of select="$typefreq"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
@@ -194,6 +206,11 @@
<xsl:attribute name="type">
<xsl:value-of select="$type"/>
</xsl:attribute>
+ <xsl:if test="$freq">
+ <xsl:attribute name="freq">
+ <xsl:value-of select="$freq"/>
+ </xsl:attribute>
+ </xsl:if>
<xsl:for-each select="str:split(substring-after($args, ':'), ':')">
<arg>
<xsl:attribute name="value">
@@ -998,7 +1015,7 @@
<xsl:template xmlns="http://www.w3.org/2000/svg" mode="unlink_clone" match="svg:*">
<xsl:param name="seed"/>
<xsl:choose>
- <xsl:when test="@id = $hmi_elements/@id">
+ <xsl:when test="@id = $hmi_widgets/@id">
<use>
<xsl:attribute name="xlink:href">
<xsl:value-of select="concat('#',@id)"/>
@@ -1228,13 +1245,25 @@
</xsl:if>
</xsl:for-each>
</xsl:variable>
+ <xsl:variable name="freq">
+ <xsl:choose>
+ <xsl:when test="$widget/@freq">
+ <xsl:value-of select="$widget/@freq"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:text>undefined</xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:variable>
<xsl:text> "</xsl:text>
<xsl:value-of select="@id"/>
<xsl:text>": new </xsl:text>
<xsl:value-of select="$widget/@type"/>
<xsl:text>Widget ("</xsl:text>
<xsl:value-of select="@id"/>
- <xsl:text>",[</xsl:text>
+ <xsl:text>",</xsl:text>
+ <xsl:value-of select="$freq"/>
+ <xsl:text>,[</xsl:text>
<xsl:value-of select="$args"/>
<xsl:text>],[</xsl:text>
<xsl:value-of select="$indexes"/>
@@ -1424,12 +1453,14 @@
</xsl:text>
<xsl:text>
</xsl:text>
- <xsl:text> constructor(elt_id,args,indexes,minmaxes,members){
+ <xsl:text> constructor(elt_id, freq, args, indexes, minmaxes, members){
</xsl:text>
<xsl:text> this.element_id = elt_id;
</xsl:text>
<xsl:text> this.element = id(elt_id);
</xsl:text>
+ <xsl:text> if(freq !== undefined) this.frequency = freq;
+</xsl:text>
<xsl:text> this.args = args;
</xsl:text>
<xsl:text> this.indexes = indexes;
@@ -2183,6 +2214,62 @@
<xsl:text>Boolean variable</xsl:text>
</path>
</xsl:template>
+ <xsl:variable name="_push_button_fsm">
+ <fsm>
+ <state name="init">
+ <on-dispatch value="false">
+ <jump state="reflect_off"/>
+ </on-dispatch>
+ <on-dispatch value="true">
+ <jump state="reflect_on"/>
+ </on-dispatch>
+ </state>
+ <state name="reflect_on">
+ <show eltname="active"/>
+ <on-mouse position="down">
+ <jump state="on"/>
+ </on-mouse>
+ <on-mouse position="up">
+ <jump state="off"/>
+ </on-mouse>
+ <on-dispatch value="false">
+ <jump state="reflect_off"/>
+ </on-dispatch>
+ </state>
+ <state name="on">
+ <hmi-value value="true"/>
+ <show eltname="active"/>
+ <on-mouse position="up">
+ <jump state="off"/>
+ </on-mouse>
+ <on-dispatch value="false">
+ <jump state="reflect_off"/>
+ </on-dispatch>
+ </state>
+ <state name="reflect_off">
+ <show eltname="inactive"/>
+ <on-mouse position="down">
+ <jump state="on"/>
+ </on-mouse>
+ <on-mouse position="up">
+ <jump state="off"/>
+ </on-mouse>
+ <on-dispatch value="true">
+ <jump state="reflect_on"/>
+ </on-dispatch>
+ </state>
+ <state name="off">
+ <hmi-value value="false"/>
+ <show eltname="inactive"/>
+ <on-mouse position="down">
+ <jump state="on"/>
+ </on-mouse>
+ <on-dispatch value="true">
+ <jump state="reflect_on"/>
+ </on-dispatch>
+ </state>
+ </fsm>
+ </xsl:variable>
<xsl:variable name="_button_fsm">
<fsm>
<state name="init">
@@ -2313,6 +2400,10 @@
<xsl:value-of select="@name"/>
<xsl:text>_action(){
</xsl:text>
+ <xsl:text>console.log("Entering state </xsl:text>
+ <xsl:value-of select="@name"/>
+ <xsl:text>");
+</xsl:text>
<xsl:apply-templates mode="actions" select="*"/>
<xsl:text> }
</xsl:text>
@@ -2331,74 +2422,80 @@
<xsl:text>);
</xsl:text>
</xsl:template>
+ <xsl:template name="generated_button_class">
+ <xsl:param name="fsm"/>
+ <xsl:text> frequency = 5;
+</xsl:text>
+ <xsl:text> display = "inactive";
+</xsl:text>
+ <xsl:text> state = "init";
+</xsl:text>
+ <xsl:text> dispatch(value) {
+</xsl:text>
+ <xsl:apply-templates mode="dispatch_transition" select="$fsm"/>
+ <xsl:text> }
+</xsl:text>
+ <xsl:text> onmouseup(evt) {
+</xsl:text>
+ <xsl:text> svg_root.removeEventListener("pointerup", this.bound_onmouseup, true);
+</xsl:text>
+ <xsl:apply-templates mode="mouse_transition" select="$fsm">
+ <xsl:with-param name="position" select="'up'"/>
+ </xsl:apply-templates>
+ <xsl:text> }
+</xsl:text>
+ <xsl:text> onmousedown(evt) {
+</xsl:text>
+ <xsl:text> svg_root.addEventListener("pointerup", this.bound_onmouseup, true);
+</xsl:text>
+ <xsl:apply-templates mode="mouse_transition" select="$fsm">
+ <xsl:with-param name="position" select="'down'"/>
+ </xsl:apply-templates>
+ <xsl:text> }
+</xsl:text>
+ <xsl:apply-templates mode="actions" select="$fsm"/>
+ <xsl:text> animate(){
+</xsl:text>
+ <xsl:text> if (this.active_elt && this.inactive_elt) {
+</xsl:text>
+ <xsl:for-each select="str:split('active inactive')">
+ <xsl:text> if(this.display == "</xsl:text>
+ <xsl:value-of select="."/>
+ <xsl:text>")
+</xsl:text>
+ <xsl:text> this.</xsl:text>
+ <xsl:value-of select="."/>
+ <xsl:text>_elt.style.display = "";
+</xsl:text>
+ <xsl:text> else
+</xsl:text>
+ <xsl:text> this.</xsl:text>
+ <xsl:value-of select="."/>
+ <xsl:text>_elt.style.display = "none";
+</xsl:text>
+ </xsl:for-each>
+ <xsl:text> }
+</xsl:text>
+ <xsl:text> }
+</xsl:text>
+ <xsl:text> init() {
+</xsl:text>
+ <xsl:text> this.bound_onmouseup = this.onmouseup.bind(this);
+</xsl:text>
+ <xsl:text> this.element.addEventListener("pointerdown", this.onmousedown.bind(this));
+</xsl:text>
+ <xsl:text> }
+</xsl:text>
+ </xsl:template>
<xsl:template match="widget[@type='Button']" mode="widget_class">
<xsl:text>class </xsl:text>
<xsl:text>ButtonWidget</xsl:text>
<xsl:text> extends Widget{
</xsl:text>
<xsl:variable name="fsm" select="exsl:node-set($_button_fsm)"/>
- <xsl:text> frequency = 5;
-</xsl:text>
- <xsl:text> display = "inactive";
-</xsl:text>
- <xsl:text> state = "init";
-</xsl:text>
- <xsl:text> dispatch(value) {
-</xsl:text>
- <xsl:apply-templates mode="dispatch_transition" select="$fsm"/>
- <xsl:text> }
-</xsl:text>
- <xsl:text> onmouseup(evt) {
-</xsl:text>
- <xsl:text> svg_root.removeEventListener("pointerup", this.bound_onmouseup, true);
-</xsl:text>
- <xsl:apply-templates mode="mouse_transition" select="$fsm">
- <xsl:with-param name="position" select="'up'"/>
- </xsl:apply-templates>
- <xsl:text> }
-</xsl:text>
- <xsl:text> onmousedown(evt) {
-</xsl:text>
- <xsl:text> svg_root.addEventListener("pointerup", this.bound_onmouseup, true);
-</xsl:text>
- <xsl:apply-templates mode="mouse_transition" select="$fsm">
- <xsl:with-param name="position" select="'down'"/>
- </xsl:apply-templates>
- <xsl:text> }
-</xsl:text>
- <xsl:apply-templates mode="actions" select="$fsm"/>
- <xsl:text> animate(){
-</xsl:text>
- <xsl:text> if (this.active_elt && this.inactive_elt) {
-</xsl:text>
- <xsl:for-each select="str:split('active inactive')">
- <xsl:text> if(this.display == "</xsl:text>
- <xsl:value-of select="."/>
- <xsl:text>")
-</xsl:text>
- <xsl:text> this.</xsl:text>
- <xsl:value-of select="."/>
- <xsl:text>_elt.style.display = "";
-</xsl:text>
- <xsl:text> else
-</xsl:text>
- <xsl:text> this.</xsl:text>
- <xsl:value-of select="."/>
- <xsl:text>_elt.style.display = "none";
-</xsl:text>
- </xsl:for-each>
- <xsl:text> }
-</xsl:text>
- <xsl:text> }
-</xsl:text>
- <xsl:text> init() {
-</xsl:text>
- <xsl:text> this.bound_onmouseup = this.onmouseup.bind(this);
-</xsl:text>
- <xsl:text> this.element.addEventListener("pointerdown", this.onmousedown.bind(this));
-</xsl:text>
- <xsl:text> }
-</xsl:text>
+ <xsl:call-template name="generated_button_class">
+ <xsl:with-param name="fsm" select="$fsm"/>
+ </xsl:call-template>
<xsl:text>}
</xsl:text>
</xsl:template>
@@ -2412,6 +2509,28 @@
<xsl:with-param name="mandatory" select="'no'"/>
</xsl:call-template>
</xsl:template>
+ <xsl:template match="widget[@type='PushButton']" mode="widget_class">
+ <xsl:text>class </xsl:text>
+ <xsl:text>PushButtonWidget</xsl:text>
+ <xsl:text> extends Widget{
+</xsl:text>
+ <xsl:variable name="fsm" select="exsl:node-set($_push_button_fsm)"/>
+ <xsl:call-template name="generated_button_class">
+ <xsl:with-param name="fsm" select="$fsm"/>
+ </xsl:call-template>
+ <xsl:text>}
+</xsl:text>
+ </xsl:template>
+ <xsl:template match="widget[@type='PushButton']" mode="widget_defs">
+ <xsl:param name="hmi_element"/>
+ <xsl:call-template name="defs_by_labels">
+ <xsl:with-param name="hmi_element" select="$hmi_element"/>
+ <xsl:with-param name="labels">
+ <xsl:text>active inactive</xsl:text>
+ </xsl:with-param>
+ <xsl:with-param name="mandatory" select="'no'"/>
+ </xsl:call-template>
+ </xsl:template>
<xsl:template match="widget[@type='CircularBar']" mode="widget_desc">
<type>
<xsl:value-of select="@type"/>
@@ -8682,6 +8801,8 @@
</xsl:text>
<xsl:text>function send_hmi_value(index, value) {
</xsl:text>
+ <xsl:text> console.log("send_hmi_value("+index+", "+value+")")
+</xsl:text>
<xsl:text> if(index > last_remote_index){
</xsl:text>
<xsl:text> updates.set(index, value);
@@ -8730,9 +8851,11 @@
</xsl:text>
<xsl:text>function apply_hmi_value(index, new_val) {
</xsl:text>
- <xsl:text> let old_val = cache[index];
-</xsl:text>
- <xsl:text> if(new_val != undefined && old_val != new_val)
+ <xsl:text> console.log("apply_hmi_value("+index+", "+new_val+")")
+</xsl:text>
+ <xsl:text> /*let old_val = cache[index];*/
+</xsl:text>
+ <xsl:text> if(new_val != undefined /*&& old_val != new_val*/)
</xsl:text>
<xsl:text> send_hmi_value(index, new_val);
</xsl:text>
--- a/svghmi/parse_labels.ysl2 Sun Jan 16 17:00:58 2022 +0100
+++ b/svghmi/parse_labels.ysl2 Wed Feb 02 20:27:17 2022 +0100
@@ -2,7 +2,7 @@
// Parses:
-// "HMI:WidgetType:param1:param2@path1,path1min,path1max@path2"
+// "HMI:WidgetType|freq:param1:param2@path1,path1min,path1max@path2"
//
// Into:
// widget type="WidgetType" id="blah456" {
@@ -28,15 +28,23 @@
otherwise value "$description";
}
- const "_type", "substring-before($args,':')";
- const "type" choose {
- when "$_type" value "$_type";
+ const "_typefreq", "substring-before($args,':')";
+ const "typefreq" choose {
+ when "$_typefreq" value "$_typefreq";
otherwise value "$args";
}
+ const "freq", "substring-after($typefreq,'|')";
+
+ const "_type", "substring-before($typefreq,'|')";
+ const "type" choose {
+ when "$_type" value "$_type";
+ otherwise value "$typefreq";
+ }
if "$type" widget {
attrib "id" > «$id»
attrib "type" > «$type»
+ if "$freq" attrib "freq" > «$freq»
foreach "str:split(substring-after($args, ':'), ':')" {
arg {
attrib "value" > «.»
--- a/svghmi/svghmi.js Sun Jan 16 17:00:58 2022 +0100
+++ b/svghmi/svghmi.js Wed Feb 02 20:27:17 2022 +0100
@@ -332,8 +332,10 @@
};
function apply_hmi_value(index, new_val) {
- let old_val = cache[index];
- if(new_val != undefined && old_val != new_val)
+ // Similarly to previous comment, taking decision to update based
+ // on cache content is bad and can lead to inconsistency
+ /*let old_val = cache[index];*/
+ if(new_val != undefined /*&& old_val != new_val*/)
send_hmi_value(index, new_val);
return new_val;
}
--- a/svghmi/widget_button.ysl2 Sun Jan 16 17:00:58 2022 +0100
+++ b/svghmi/widget_button.ysl2 Wed Feb 02 20:27:17 2022 +0100
@@ -28,6 +28,41 @@
gen_index_xhtml {
+const "_push_button_fsm" fsm {
+ state "init" {
+ on_dispatch "false" jump "reflect_off";
+ on_dispatch "true" jump "reflect_on";
+ }
+
+ state "reflect_on" {
+ show "active";
+ on_mouse "down" jump "on";
+ on_mouse "up" jump "off";
+ on_dispatch "false" jump "reflect_off";
+ }
+
+ state "on" {
+ hmi_value "true";
+ show "active";
+ on_mouse "up" jump "off";
+ on_dispatch "false" jump "reflect_off";
+ }
+
+ state "reflect_off" {
+ show "inactive";
+ on_mouse "down" jump "on";
+ on_mouse "up" jump "off";
+ on_dispatch "true" jump "reflect_on";
+ }
+
+ state "off" {
+ hmi_value "false";
+ show "inactive";
+ on_mouse "down" jump "on";
+ on_dispatch "true" jump "reflect_on";
+ }
+}
+
// State machine to drive HMI_BOOL on a potentially laggy connection
const "_button_fsm" fsm {
state "init" {
@@ -111,7 +146,7 @@
}
template "state", mode="actions" {
| «@name»_action(){
- //| console.log("Entering state «@name»");
+ | console.log("Entering state «@name»");
apply "*", mode="actions";
| }
}
@@ -125,26 +160,24 @@
}
-widget_class("Button"){
- const "fsm","exsl:node-set($_button_fsm)";
+
+function "generated_button_class" {
+ param "fsm";
| frequency = 5;
| display = "inactive";
| state = "init";
| dispatch(value) {
- // | console.log("dispatch"+value);
apply "$fsm", mode="dispatch_transition";
| }
| onmouseup(evt) {
| svg_root.removeEventListener("pointerup", this.bound_onmouseup, true);
- // | console.log("onmouseup");
apply "$fsm", mode="mouse_transition" with "position", "'up'";
| }
| onmousedown(evt) {
| svg_root.addEventListener("pointerup", this.bound_onmouseup, true);
- // | console.log("onmousedown");
apply "$fsm", mode="mouse_transition" with "position", "'down'";
| }
@@ -167,6 +200,22 @@
| }
}
+
+widget_class("Button"){
+ const "fsm","exsl:node-set($_button_fsm)";
+ call "generated_button_class" with "fsm", "$fsm";
+}
+
widget_defs("Button") {
optional_labels("active inactive");
}
+
+widget_class("PushButton"){
+ const "fsm","exsl:node-set($_push_button_fsm)";
+ call "generated_button_class" with "fsm", "$fsm";
+}
+
+widget_defs("PushButton") {
+ optional_labels("active inactive");
+}
+
--- a/svghmi/widgets_common.ysl2 Sun Jan 16 17:00:58 2022 +0100
+++ b/svghmi/widgets_common.ysl2 Wed Feb 02 20:27:17 2022 +0100
@@ -83,7 +83,14 @@
if "position()!=last()" > ,
}
- | "«@id»": new «$widget/@type»Widget ("«@id»",[«$args»],[«$indexes»],[«$minmaxes»],{
+ const "freq" choose {
+ when "$widget/@freq"
+ > «$widget/@freq»
+ otherwise
+ > undefined
+ }
+
+ | "«@id»": new «$widget/@type»Widget ("«@id»",«$freq»,[«$args»],[«$indexes»],[«$minmaxes»],{
apply "$widget", mode="widget_defs" with "hmi_element",".";
| })`if "position()!=last()" > ,`
}
@@ -164,9 +171,10 @@
unsubscribable = false;
pending_animate = false;
- constructor(elt_id,args,indexes,minmaxes,members){
+ constructor(elt_id, freq, args, indexes, minmaxes, members){
this.element_id = elt_id;
this.element = id(elt_id);
+ if(freq !== undefined) this.frequency = freq;
this.args = args;
this.indexes = indexes;
this.minmaxes = minmaxes;
--- a/tests/BACnet/bacnet_0@bacnet/bacnet_slave Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,202 +0,0 @@
-(dp0
-S'BV_Obj'
-p1
-(lp2
-sS'AV_Obj'
-p3
-(lp4
-(dp5
-S'loc'
-p6
-S'MD0_2'
-p7
-sS'Description'
-p8
-S''
-p9
-sS'Unit ID'
-p10
-I19
-sS'Object Identifier'
-p11
-I0
-sS'Ctype'
-p12
-S'float'
-p13
-sS'BACnetObjTypeID'
-p14
-I2
-sS'Settable'
-p15
-S'Y'
-p16
-sS'Engineering Units'
-p17
-V(Energy) kilowatt-hours (19)
-p18
-sS'Object Name'
-p19
-VEnergyCounter
-p20
-sasS'AO_Obj'
-p21
-(lp22
-(dp23
-g6
-S'QD0_1'
-p24
-sg8
-V
-p25
-sS'Unit ID'
-p26
-I62
-sS'Object Identifier'
-p27
-V0
-p28
-sg12
-g13
-sg14
-I1
-sg15
-g16
-sS'Object Name'
-p29
-VTemperatureSetPoint
-p30
-sS'Engineering Units'
-p31
-V(Temperature) degrees-celsius (62)
-p32
-sasS'MSI_Obj'
-p33
-(lp34
-sS'BO_Obj'
-p35
-(lp36
-(dp37
-g6
-S'QX0_4'
-p38
-sg8
-g9
-sS'Object Identifier'
-p39
-I2
-sg12
-S'uint8_t'
-p40
-sg14
-I4
-sg15
-g16
-sS'Object Name'
-p41
-VBlockClimateControl
-p42
-sasS'MSO_Obj'
-p43
-(lp44
-sS'EDEfile_parm'
-p45
-(dp46
-S'next_EDE_file_version'
-p47
-I1
-ssS'BI_Obj'
-p48
-(lp49
-(dp50
-g6
-S'IX0_3'
-p51
-sg8
-g9
-sS'Object Identifier'
-p52
-I0
-sg12
-g40
-sg14
-I3
-sg15
-S'N'
-p53
-sS'Object Name'
-p54
-VHeater
-p55
-sa(dp56
-g6
-g51
-sg8
-g9
-sg52
-I1
-sg12
-g40
-sg14
-I3
-sg15
-g53
-sg54
-VCooler
-p57
-sasS'AI_Obj'
-p58
-(lp59
-(dp60
-g6
-S'ID0_0'
-p61
-sg8
-VCurrent termperature in Beremiz lab
-p62
-sS'Unit ID'
-p63
-I62
-sS'Object Identifier'
-p64
-I0
-sg12
-g13
-sg14
-I0
-sg15
-g53
-sS'Engineering Units'
-p65
-V(Temperature) degrees-celsius (62)
-p66
-sS'Object Name'
-p67
-VTemperature
-p68
-sa(dp69
-g6
-g61
-sg8
-VCurrent humidity in Beremiz lab
-p70
-sg63
-I29
-sg64
-I1
-sg12
-g13
-sg14
-I0
-sg15
-g53
-sg67
-VHumidity
-p71
-sg65
-V(Humidity) percent-relative-humidity (29)
-p72
-sasS'MSV_Obj'
-p73
-(lp74
-s.
\ No newline at end of file
--- a/tests/BACnet/bacnet_0@bacnet/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="bacnet_0"/>
--- a/tests/BACnet/bacnet_0@bacnet/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BACnetServerNode xmlns:xsd="http://www.w3.org/2001/XMLSchema" UDP_Port_Number="47808" BACnet_Device_ID="3" BACnet_Communication_Control_Password=" " BACnet_Device_Location="Beremiz lab" Network_Interface="virbr0"/>
--- a/tests/BACnet/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="LOCAL://">
- <TargetType/>
-</BeremizRoot>
--- a/tests/BACnet/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,601 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2018-07-28T02:24:08"/>
- <contentHeader name="BACnet" modificationDateTime="2018-09-26T14:00:21">
- <coordinateInfo>
- <fbd>
- <scaling x="0" y="0"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="program0" pouType="program">
- <interface>
- <localVars>
- <variable name="EnergyCounter" address="%MD0.2.0">
- <type>
- <REAL/>
- </type>
- </variable>
- <variable name="Temperature" address="%ID0.0.0">
- <type>
- <REAL/>
- </type>
- </variable>
- <variable name="Humidity" address="%ID0.0.1">
- <type>
- <REAL/>
- </type>
- </variable>
- </localVars>
- <localVars>
- <variable name="TempSimulation">
- <type>
- <derived name="Simulator"/>
- </type>
- </variable>
- <variable name="HumiditySimulation">
- <type>
- <derived name="Simulator"/>
- </type>
- </variable>
- </localVars>
- <localVars>
- <variable name="TemperatureSetPoint" address="%QD0.1.0">
- <type>
- <REAL/>
- </type>
- </variable>
- <variable name="ControlDisable" address="%QX0.4.2">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="Heater" address="%IX0.3.0">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="Cooler" address="%IX0.3.1">
- <type>
- <BOOL/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <inVariable localId="1" executionOrderId="0" height="30" width="114" negated="false">
- <position x="299" y="521"/>
- <connectionPointOut>
- <relPosition x="114" y="15"/>
- </connectionPointOut>
- <expression>EnergyCounter</expression>
- </inVariable>
- <outVariable localId="2" executionOrderId="0" height="30" width="114" negated="false">
- <position x="654" y="521"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="3" formalParameter="OUT">
- <position x="654" y="536"/>
- <position x="533" y="536"/>
- </connection>
- </connectionPointIn>
- <expression>EnergyCounter</expression>
- </outVariable>
- <block localId="3" typeName="ADD" executionOrderId="0" height="60" width="67">
- <position x="466" y="506"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="1">
- <position x="466" y="536"/>
- <position x="404" y="536"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="4">
- <position x="466" y="556"/>
- <position x="436" y="556"/>
- <position x="436" y="585"/>
- <position x="401" y="585"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="67" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="4" executionOrderId="0" height="30" width="105" negated="false">
- <position x="296" y="570"/>
- <connectionPointOut>
- <relPosition x="105" y="15"/>
- </connectionPointOut>
- <expression>0.00131</expression>
- </inVariable>
- <comment localId="5" height="67" width="229">
- <position x="27" y="525"/>
- <content>
- <xhtml:p><![CDATA[Always consume some energy]]></xhtml:p>
- </content>
- </comment>
- <block localId="6" typeName="Simulator" instanceName="TempSimulation" executionOrderId="0" height="128" width="143">
- <position x="188" y="648"/>
- <inputVariables>
- <variable formalParameter="MinVal">
- <connectionPointIn>
- <relPosition x="0" y="38"/>
- <connection refLocalId="8">
- <position x="188" y="686"/>
- <position x="138" y="686"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="MaxVal">
- <connectionPointIn>
- <relPosition x="0" y="74"/>
- <connection refLocalId="9">
- <position x="188" y="722"/>
- <position x="138" y="722"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="PeriodSeconds">
- <connectionPointIn>
- <relPosition x="0" y="110"/>
- <connection refLocalId="10">
- <position x="188" y="758"/>
- <position x="138" y="758"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Out">
- <connectionPointOut>
- <relPosition x="143" y="38"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <outVariable localId="7" executionOrderId="0" height="30" width="98" negated="false">
- <position x="421" y="671"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="6" formalParameter="Out">
- <position x="421" y="686"/>
- <position x="331" y="686"/>
- </connection>
- </connectionPointIn>
- <expression>Temperature</expression>
- </outVariable>
- <inVariable localId="8" executionOrderId="0" height="30" width="105" negated="false">
- <position x="33" y="671"/>
- <connectionPointOut>
- <relPosition x="105" y="15"/>
- </connectionPointOut>
- <expression>18.0</expression>
- </inVariable>
- <inVariable localId="9" executionOrderId="0" height="30" width="105" negated="false">
- <position x="33" y="707"/>
- <connectionPointOut>
- <relPosition x="105" y="15"/>
- </connectionPointOut>
- <expression>30.0</expression>
- </inVariable>
- <inVariable localId="10" executionOrderId="0" height="30" width="105" negated="false">
- <position x="33" y="743"/>
- <connectionPointOut>
- <relPosition x="105" y="15"/>
- </connectionPointOut>
- <expression>120</expression>
- </inVariable>
- <block localId="11" typeName="Simulator" instanceName="HumiditySimulation" executionOrderId="0" height="137" width="143">
- <position x="185" y="803"/>
- <inputVariables>
- <variable formalParameter="MinVal">
- <connectionPointIn>
- <relPosition x="0" y="39"/>
- <connection refLocalId="13">
- <position x="185" y="842"/>
- <position x="135" y="842"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="MaxVal">
- <connectionPointIn>
- <relPosition x="0" y="78"/>
- <connection refLocalId="14">
- <position x="185" y="881"/>
- <position x="135" y="881"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="PeriodSeconds">
- <connectionPointIn>
- <relPosition x="0" y="117"/>
- <connection refLocalId="15">
- <position x="185" y="920"/>
- <position x="135" y="920"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Out">
- <connectionPointOut>
- <relPosition x="143" y="39"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <outVariable localId="12" executionOrderId="0" height="30" width="111" negated="false">
- <position x="418" y="827"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="11" formalParameter="Out">
- <position x="418" y="842"/>
- <position x="328" y="842"/>
- </connection>
- </connectionPointIn>
- <expression>Humidity</expression>
- </outVariable>
- <inVariable localId="13" executionOrderId="0" height="30" width="105" negated="false">
- <position x="30" y="827"/>
- <connectionPointOut>
- <relPosition x="105" y="15"/>
- </connectionPointOut>
- <expression>55.0</expression>
- </inVariable>
- <inVariable localId="14" executionOrderId="0" height="30" width="105" negated="false">
- <position x="30" y="866"/>
- <connectionPointOut>
- <relPosition x="105" y="15"/>
- </connectionPointOut>
- <expression>78.0</expression>
- </inVariable>
- <inVariable localId="15" executionOrderId="0" height="30" width="105" negated="false">
- <position x="30" y="905"/>
- <connectionPointOut>
- <relPosition x="105" y="15"/>
- </connectionPointOut>
- <expression>58</expression>
- </inVariable>
- <block localId="16" typeName="GT" executionOrderId="0" height="60" width="67">
- <position x="231" y="1103"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="18">
- <position x="231" y="1133"/>
- <position x="132" y="1133"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="22">
- <position x="231" y="1153"/>
- <position x="208" y="1153"/>
- <position x="208" y="1169"/>
- <position x="185" y="1169"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="67" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="18" executionOrderId="0" height="30" width="98" negated="false">
- <position x="40" y="1118"/>
- <connectionPointOut>
- <relPosition x="98" y="15"/>
- </connectionPointOut>
- <expression>Temperature</expression>
- </inVariable>
- <block localId="19" typeName="AND" executionOrderId="0" height="60" width="67">
- <position x="347" y="1059"/>
- <inputVariables>
- <variable formalParameter="IN1" negated="true">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="20">
- <position x="347" y="1089"/>
- <position x="263" y="1089"/>
- <position x="263" y="1074"/>
- <position x="145" y="1074"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="16" formalParameter="OUT">
- <position x="347" y="1109"/>
- <position x="337" y="1109"/>
- <position x="337" y="1133"/>
- <position x="298" y="1133"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="67" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="20" executionOrderId="0" height="30" width="122" negated="false">
- <position x="41" y="1059"/>
- <connectionPointOut>
- <relPosition x="122" y="15"/>
- </connectionPointOut>
- <expression>ControlDisable</expression>
- </inVariable>
- <outVariable localId="21" executionOrderId="0" height="30" width="92" negated="false">
- <position x="468" y="1074"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="19" formalParameter="OUT">
- <position x="468" y="1089"/>
- <position x="414" y="1089"/>
- </connection>
- </connectionPointIn>
- <expression>Cooler</expression>
- </outVariable>
- <inVariable localId="22" executionOrderId="0" height="30" width="162" negated="false">
- <position x="39" y="1154"/>
- <connectionPointOut>
- <relPosition x="162" y="15"/>
- </connectionPointOut>
- <expression>TemperatureSetPoint</expression>
- </inVariable>
- <block localId="17" typeName="LT" executionOrderId="0" height="60" width="67">
- <position x="228" y="1278"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="23">
- <position x="228" y="1308"/>
- <position x="129" y="1308"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="27">
- <position x="228" y="1328"/>
- <position x="205" y="1328"/>
- <position x="205" y="1344"/>
- <position x="182" y="1344"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="67" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="23" executionOrderId="0" height="30" width="98" negated="false">
- <position x="37" y="1293"/>
- <connectionPointOut>
- <relPosition x="98" y="15"/>
- </connectionPointOut>
- <expression>Temperature</expression>
- </inVariable>
- <block localId="24" typeName="AND" executionOrderId="0" height="60" width="67">
- <position x="344" y="1234"/>
- <inputVariables>
- <variable formalParameter="IN1" negated="true">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="25">
- <position x="344" y="1264"/>
- <position x="260" y="1264"/>
- <position x="260" y="1249"/>
- <position x="142" y="1249"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="17" formalParameter="OUT">
- <position x="344" y="1284"/>
- <position x="334" y="1284"/>
- <position x="334" y="1308"/>
- <position x="295" y="1308"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="67" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="25" executionOrderId="0" height="30" width="122" negated="false">
- <position x="38" y="1234"/>
- <connectionPointOut>
- <relPosition x="122" y="15"/>
- </connectionPointOut>
- <expression>ControlDisable</expression>
- </inVariable>
- <outVariable localId="26" executionOrderId="0" height="30" width="92" negated="false">
- <position x="465" y="1249"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="24" formalParameter="OUT">
- <position x="465" y="1264"/>
- <position x="411" y="1264"/>
- </connection>
- </connectionPointIn>
- <expression>Heater</expression>
- </outVariable>
- <inVariable localId="27" executionOrderId="0" height="30" width="162" negated="false">
- <position x="36" y="1329"/>
- <connectionPointOut>
- <relPosition x="162" y="15"/>
- </connectionPointOut>
- <expression>TemperatureSetPoint</expression>
- </inVariable>
- <comment localId="28" height="67" width="229">
- <position x="343" y="734"/>
- <content>
- <xhtml:p><![CDATA[Simple sensor simulation]]></xhtml:p>
- </content>
- </comment>
- <comment localId="29" height="67" width="229">
- <position x="37" y="978"/>
- <content>
- <xhtml:p><![CDATA[Climate control]]></xhtml:p>
- </content>
- </comment>
- <comment localId="30" height="464" width="773">
- <position x="14" y="16"/>
- <content>
- <xhtml:p><![CDATA[This examples shows how to work with BACnet extension.
-
-Extensions requires native BACnet stack to be installed nearby Beremiz.
-Following directory structure is expected:
-<Parent directory>
- "beremiz"
- "BACnet"
-
-If library is installed elsewhere, then place corresponding paths
-in CFLAGS/LDFLAGS in project settings.
-
-For GNU/Linux to install BACnet library in parent directory run following commands:
-$ svn checkout https://svn.code.sf.net/p/bacnet/code/trunk/bacnet-stack/ BACnet
-$ cd BACnet
-$ make
-
-After that BACnet extension is ready to be used in Beremiz projects.
-BACnet stack implementation contains a lot of test tools. They could be useful during
-debugging and BACnet investigation. See "BACnet/bin/readme.txt" for more information about them.]]></xhtml:p>
- </content>
- </comment>
- </FBD>
- </body>
- </pou>
- <pou name="Simulator" pouType="functionBlock">
- <interface>
- <outputVars>
- <variable name="Out">
- <type>
- <REAL/>
- </type>
- </variable>
- </outputVars>
- <inputVars>
- <variable name="MinVal">
- <type>
- <REAL/>
- </type>
- </variable>
- <variable name="MaxVal">
- <type>
- <REAL/>
- </type>
- </variable>
- <variable name="PeriodSeconds">
- <type>
- <INT/>
- </type>
- </variable>
- </inputVars>
- <localVars>
- <variable name="TON0">
- <type>
- <derived name="TON"/>
- </type>
- </variable>
- <variable name="seconds">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="BaseVal">
- <type>
- <REAL/>
- </type>
- </variable>
- <variable name="VarVal">
- <type>
- <REAL/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <ST>
- <xhtml:p><![CDATA[(* pseudo-random variations *)
-TON0(IN := TRUE, PT := T#3120s);
-IF TON0.Q THEN
- TON0(IN := FALSE);
-END_IF;
-seconds := TIME_TO_INT(TON0.ET);
-
-BaseVal := (MaxVal + MinVal)/2.0;
-VarVal := (MaxVal-MinVal)*INT_TO_REAL((seconds MOD PeriodSeconds) - (PeriodSeconds/2))/INT_TO_REAL(PeriodSeconds);
-
-Out := BaseVal + VarVal;]]></xhtml:p>
- </ST>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="resource1">
- <task name="task0" priority="0" interval="T#20ms">
- <pouInstance name="instance0" typeName="program0"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/canopen_master/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<BeremizRoot URI_location="LOCAL://">
- <TargetType/>
-</BeremizRoot>
--- a/tests/canopen_master/canopen@canfestival/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<BaseParams Name="canopen" IEC_Channel="0"/>
--- a/tests/canopen_master/canopen@canfestival/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<CanFestivalInstance/>
--- a/tests/canopen_master/canopen@canfestival/master@CanOpenNode/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<BaseParams Name="master" IEC_Channel="0"/>
--- a/tests/canopen_master/canopen@canfestival/master@CanOpenNode/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<CanFestivalNode/>
--- a/tests/canopen_master/canopen@canfestival/master@CanOpenNode/eds/Slave_0_0.eds Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1161 +0,0 @@
-[FileInfo]
-FileName=Slave_0_0.eds
-FileVersion=1
-FileRevision=1
-EDSVersion=4.0
-Description=
-CreationTime=06:35PM
-CreationDate=10-07-2009
-CreatedBy=CANFestival
-ModificationTime=06:35PM
-ModificationDate=10-07-2009
-ModifiedBy=CANFestival
-
-[DeviceInfo]
-VendorName=CANFestival
-VendorNumber=0x00000000
-ProductName=OD_0_0
-ProductNumber=0x00000000
-RevisionNumber=0x00000000
-BaudRate_10=1
-BaudRate_20=1
-BaudRate_50=1
-BaudRate_125=1
-BaudRate_250=1
-BaudRate_500=1
-BaudRate_800=1
-BaudRate_1000=1
-SimpleBootUpMaster=0
-SimpleBootUpSlave=1
-Granularity=8
-DynamicChannelsSupported=0
-CompactPDO=0
-GroupMessaging=0
-NrOfRXPDO=4
-NrOfTXPDO=4
-LSS_Supported=0
-
-[DummyUsage]
-Dummy0001=0
-Dummy0002=1
-Dummy0003=1
-Dummy0004=1
-Dummy0005=1
-Dummy0006=1
-Dummy0007=1
-
-[Comments]
-Lines=0
-
-[MandatoryObjects]
-SupportedObjects=3
-1=0x1000
-2=0x1001
-3=0x1018
-
-[1000]
-ParameterName=Device Type
-ObjectType=0x7
-DataType=0x0007
-AccessType=ro
-DefaultValue=0
-PDOMapping=0
-
-[1001]
-ParameterName=Error Register
-ObjectType=0x7
-DataType=0x0005
-AccessType=ro
-DefaultValue=0
-PDOMapping=1
-
-[1018]
-ParameterName=Identity
-ObjectType=0x8
-SubNumber=5
-
-[1018sub0]
-ParameterName=Number of Entries
-ObjectType=0x7
-DataType=0x0005
-AccessType=ro
-DefaultValue=4
-PDOMapping=0
-
-[1018sub1]
-ParameterName=Vendor ID
-ObjectType=0x7
-DataType=0x0007
-AccessType=ro
-DefaultValue=0
-PDOMapping=0
-
-[1018sub2]
-ParameterName=Product Code
-ObjectType=0x7
-DataType=0x0007
-AccessType=ro
-DefaultValue=0
-PDOMapping=0
-
-[1018sub3]
-ParameterName=Revision Number
-ObjectType=0x7
-DataType=0x0007
-AccessType=ro
-DefaultValue=0
-PDOMapping=0
-
-[1018sub4]
-ParameterName=Serial Number
-ObjectType=0x7
-DataType=0x0007
-AccessType=ro
-DefaultValue=0
-PDOMapping=0
-
-[OptionalObjects]
-SupportedObjects=17
-1=0x1200
-2=0x1400
-3=0x1401
-4=0x1402
-5=0x1403
-6=0x1600
-7=0x1601
-8=0x1602
-9=0x1603
-10=0x1800
-11=0x1801
-12=0x1802
-13=0x1803
-14=0x1A00
-15=0x1A01
-16=0x1A02
-17=0x1A03
-
-[1200]
-ParameterName=Server SDO Parameter
-ObjectType=0x8
-SubNumber=3
-
-[1200sub0]
-ParameterName=Number of Entries
-ObjectType=0x7
-DataType=0x0005
-AccessType=ro
-DefaultValue=2
-PDOMapping=0
-
-[1200sub1]
-ParameterName=COB ID Client to Server (Receive SDO)
-ObjectType=0x7
-DataType=0x0007
-AccessType=ro
-DefaultValue=$NODEID+0x600
-PDOMapping=0
-
-[1200sub2]
-ParameterName=COB ID Server to Client (Transmit SDO)
-ObjectType=0x7
-DataType=0x0007
-AccessType=ro
-DefaultValue=$NODEID+0x580
-PDOMapping=0
-
-[1400]
-ParameterName=Receive PDO 1 Parameter
-ObjectType=0x8
-SubNumber=5
-
-[1400sub0]
-ParameterName=Highest SubIndex Supported
-ObjectType=0x7
-DataType=0x0005
-AccessType=ro
-DefaultValue=5
-PDOMapping=0
-
-[1400sub1]
-ParameterName=COB ID used by PDO
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=$NODEID+0x200
-PDOMapping=0
-
-[1400sub2]
-ParameterName=Transmission Type
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1400sub3]
-ParameterName=Inhibit Time
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1400sub5]
-ParameterName=Event Timer
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1401]
-ParameterName=Receive PDO 2 Parameter
-ObjectType=0x8
-SubNumber=5
-
-[1401sub0]
-ParameterName=Highest SubIndex Supported
-ObjectType=0x7
-DataType=0x0005
-AccessType=ro
-DefaultValue=5
-PDOMapping=0
-
-[1401sub1]
-ParameterName=COB ID used by PDO
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=$NODEID+0x300
-PDOMapping=0
-
-[1401sub2]
-ParameterName=Transmission Type
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1401sub3]
-ParameterName=Inhibit Time
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1401sub5]
-ParameterName=Event Timer
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1402]
-ParameterName=Receive PDO 3 Parameter
-ObjectType=0x8
-SubNumber=5
-
-[1402sub0]
-ParameterName=Highest SubIndex Supported
-ObjectType=0x7
-DataType=0x0005
-AccessType=ro
-DefaultValue=5
-PDOMapping=0
-
-[1402sub1]
-ParameterName=COB ID used by PDO
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=$NODEID+0x400
-PDOMapping=0
-
-[1402sub2]
-ParameterName=Transmission Type
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1402sub3]
-ParameterName=Inhibit Time
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1402sub5]
-ParameterName=Event Timer
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1403]
-ParameterName=Receive PDO 4 Parameter
-ObjectType=0x8
-SubNumber=5
-
-[1403sub0]
-ParameterName=Highest SubIndex Supported
-ObjectType=0x7
-DataType=0x0005
-AccessType=ro
-DefaultValue=5
-PDOMapping=0
-
-[1403sub1]
-ParameterName=COB ID used by PDO
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=$NODEID+0x500
-PDOMapping=0
-
-[1403sub2]
-ParameterName=Transmission Type
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1403sub3]
-ParameterName=Inhibit Time
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1403sub5]
-ParameterName=Event Timer
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1600]
-ParameterName=Receive PDO 1 Mapping
-ObjectType=0x9
-SubNumber=9
-
-[1600sub0]
-ParameterName=Number of Entries
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=8
-PDOMapping=0
-
-[1600sub1]
-ParameterName=PDO 1 Mapping for an application object 1
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1600sub2]
-ParameterName=PDO 1 Mapping for an application object 2
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1600sub3]
-ParameterName=PDO 1 Mapping for an application object 3
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1600sub4]
-ParameterName=PDO 1 Mapping for an application object 4
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1600sub5]
-ParameterName=PDO 1 Mapping for an application object 5
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1600sub6]
-ParameterName=PDO 1 Mapping for an application object 6
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1600sub7]
-ParameterName=PDO 1 Mapping for an application object 7
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1600sub8]
-ParameterName=PDO 1 Mapping for an application object 8
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1601]
-ParameterName=Receive PDO 2 Mapping
-ObjectType=0x9
-SubNumber=9
-
-[1601sub0]
-ParameterName=Number of Entries
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=8
-PDOMapping=0
-
-[1601sub1]
-ParameterName=PDO 2 Mapping for an application object 1
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1601sub2]
-ParameterName=PDO 2 Mapping for an application object 2
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1601sub3]
-ParameterName=PDO 2 Mapping for an application object 3
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1601sub4]
-ParameterName=PDO 2 Mapping for an application object 4
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1601sub5]
-ParameterName=PDO 2 Mapping for an application object 5
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1601sub6]
-ParameterName=PDO 2 Mapping for an application object 6
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1601sub7]
-ParameterName=PDO 2 Mapping for an application object 7
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1601sub8]
-ParameterName=PDO 2 Mapping for an application object 8
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1602]
-ParameterName=Receive PDO 3 Mapping
-ObjectType=0x9
-SubNumber=9
-
-[1602sub0]
-ParameterName=Number of Entries
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=8
-PDOMapping=0
-
-[1602sub1]
-ParameterName=PDO 3 Mapping for an application object 1
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1602sub2]
-ParameterName=PDO 3 Mapping for an application object 2
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1602sub3]
-ParameterName=PDO 3 Mapping for an application object 3
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1602sub4]
-ParameterName=PDO 3 Mapping for an application object 4
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1602sub5]
-ParameterName=PDO 3 Mapping for an application object 5
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1602sub6]
-ParameterName=PDO 3 Mapping for an application object 6
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1602sub7]
-ParameterName=PDO 3 Mapping for an application object 7
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1602sub8]
-ParameterName=PDO 3 Mapping for an application object 8
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1603]
-ParameterName=Receive PDO 4 Mapping
-ObjectType=0x9
-SubNumber=9
-
-[1603sub0]
-ParameterName=Number of Entries
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=8
-PDOMapping=0
-
-[1603sub1]
-ParameterName=PDO 4 Mapping for an application object 1
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1603sub2]
-ParameterName=PDO 4 Mapping for an application object 2
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1603sub3]
-ParameterName=PDO 4 Mapping for an application object 3
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1603sub4]
-ParameterName=PDO 4 Mapping for an application object 4
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1603sub5]
-ParameterName=PDO 4 Mapping for an application object 5
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1603sub6]
-ParameterName=PDO 4 Mapping for an application object 6
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1603sub7]
-ParameterName=PDO 4 Mapping for an application object 7
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1603sub8]
-ParameterName=PDO 4 Mapping for an application object 8
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1800]
-ParameterName=Transmit PDO 1 Parameter
-ObjectType=0x8
-SubNumber=5
-
-[1800sub0]
-ParameterName=Highest SubIndex Supported
-ObjectType=0x7
-DataType=0x0005
-AccessType=ro
-DefaultValue=5
-PDOMapping=0
-
-[1800sub1]
-ParameterName=COB ID used by PDO
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=$NODEID+0x180
-PDOMapping=0
-
-[1800sub2]
-ParameterName=Transmission Type
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1800sub3]
-ParameterName=Inhibit Time
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1800sub5]
-ParameterName=Event Timer
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1801]
-ParameterName=Transmit PDO 2 Parameter
-ObjectType=0x8
-SubNumber=5
-
-[1801sub0]
-ParameterName=Highest SubIndex Supported
-ObjectType=0x7
-DataType=0x0005
-AccessType=ro
-DefaultValue=5
-PDOMapping=0
-
-[1801sub1]
-ParameterName=COB ID used by PDO
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=$NODEID+0x280
-PDOMapping=0
-
-[1801sub2]
-ParameterName=Transmission Type
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1801sub3]
-ParameterName=Inhibit Time
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1801sub5]
-ParameterName=Event Timer
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1802]
-ParameterName=Transmit PDO 3 Parameter
-ObjectType=0x8
-SubNumber=5
-
-[1802sub0]
-ParameterName=Highest SubIndex Supported
-ObjectType=0x7
-DataType=0x0005
-AccessType=ro
-DefaultValue=5
-PDOMapping=0
-
-[1802sub1]
-ParameterName=COB ID used by PDO
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=$NODEID+0x380
-PDOMapping=0
-
-[1802sub2]
-ParameterName=Transmission Type
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1802sub3]
-ParameterName=Inhibit Time
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1802sub5]
-ParameterName=Event Timer
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1803]
-ParameterName=Transmit PDO 4 Parameter
-ObjectType=0x8
-SubNumber=5
-
-[1803sub0]
-ParameterName=Highest SubIndex Supported
-ObjectType=0x7
-DataType=0x0005
-AccessType=ro
-DefaultValue=5
-PDOMapping=0
-
-[1803sub1]
-ParameterName=COB ID used by PDO
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=$NODEID+0x480
-PDOMapping=0
-
-[1803sub2]
-ParameterName=Transmission Type
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1803sub3]
-ParameterName=Inhibit Time
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1803sub5]
-ParameterName=Event Timer
-ObjectType=0x7
-DataType=0x0006
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A00]
-ParameterName=Transmit PDO 1 Mapping
-ObjectType=0x9
-SubNumber=9
-
-[1A00sub0]
-ParameterName=Number of Entries
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=8
-PDOMapping=0
-
-[1A00sub1]
-ParameterName=PDO 1 Mapping for a process data variable 1
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A00sub2]
-ParameterName=PDO 1 Mapping for a process data variable 2
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A00sub3]
-ParameterName=PDO 1 Mapping for a process data variable 3
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A00sub4]
-ParameterName=PDO 1 Mapping for a process data variable 4
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A00sub5]
-ParameterName=PDO 1 Mapping for a process data variable 5
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A00sub6]
-ParameterName=PDO 1 Mapping for a process data variable 6
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A00sub7]
-ParameterName=PDO 1 Mapping for a process data variable 7
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A00sub8]
-ParameterName=PDO 1 Mapping for a process data variable 8
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A01]
-ParameterName=Transmit PDO 2 Mapping
-ObjectType=0x9
-SubNumber=9
-
-[1A01sub0]
-ParameterName=Number of Entries
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=8
-PDOMapping=0
-
-[1A01sub1]
-ParameterName=PDO 2 Mapping for a process data variable 1
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A01sub2]
-ParameterName=PDO 2 Mapping for a process data variable 2
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A01sub3]
-ParameterName=PDO 2 Mapping for a process data variable 3
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A01sub4]
-ParameterName=PDO 2 Mapping for a process data variable 4
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A01sub5]
-ParameterName=PDO 2 Mapping for a process data variable 5
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A01sub6]
-ParameterName=PDO 2 Mapping for a process data variable 6
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A01sub7]
-ParameterName=PDO 2 Mapping for a process data variable 7
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A01sub8]
-ParameterName=PDO 2 Mapping for a process data variable 8
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A02]
-ParameterName=Transmit PDO 3 Mapping
-ObjectType=0x9
-SubNumber=9
-
-[1A02sub0]
-ParameterName=Number of Entries
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=8
-PDOMapping=0
-
-[1A02sub1]
-ParameterName=PDO 3 Mapping for a process data variable 1
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A02sub2]
-ParameterName=PDO 3 Mapping for a process data variable 2
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A02sub3]
-ParameterName=PDO 3 Mapping for a process data variable 3
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A02sub4]
-ParameterName=PDO 3 Mapping for a process data variable 4
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A02sub5]
-ParameterName=PDO 3 Mapping for a process data variable 5
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A02sub6]
-ParameterName=PDO 3 Mapping for a process data variable 6
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A02sub7]
-ParameterName=PDO 3 Mapping for a process data variable 7
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A02sub8]
-ParameterName=PDO 3 Mapping for a process data variable 8
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A03]
-ParameterName=Transmit PDO 4 Mapping
-ObjectType=0x9
-SubNumber=9
-
-[1A03sub0]
-ParameterName=Number of Entries
-ObjectType=0x7
-DataType=0x0005
-AccessType=rw
-DefaultValue=8
-PDOMapping=0
-
-[1A03sub1]
-ParameterName=PDO 4 Mapping for a process data variable 1
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A03sub2]
-ParameterName=PDO 4 Mapping for a process data variable 2
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A03sub3]
-ParameterName=PDO 4 Mapping for a process data variable 3
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A03sub4]
-ParameterName=PDO 4 Mapping for a process data variable 4
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A03sub5]
-ParameterName=PDO 4 Mapping for a process data variable 5
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A03sub6]
-ParameterName=PDO 4 Mapping for a process data variable 6
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A03sub7]
-ParameterName=PDO 4 Mapping for a process data variable 7
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[1A03sub8]
-ParameterName=PDO 4 Mapping for a process data variable 8
-ObjectType=0x7
-DataType=0x0007
-AccessType=rw
-DefaultValue=0
-PDOMapping=0
-
-[ManufacturerObjects]
-SupportedObjects=2
-1=0x2000
-2=0x2001
-
-[2000]
-ParameterName=OutVar
-ObjectType=0x7
-DataType=0x0003
-AccessType=rw
-DefaultValue=0
-PDOMapping=1
-
-[2001]
-ParameterName=InVar
-ObjectType=0x7
-DataType=0x0003
-AccessType=rw
-DefaultValue=0
-PDOMapping=1
--- a/tests/canopen_master/canopen@canfestival/master@CanOpenNode/master.od Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,224 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE PyObject SYSTEM "PyObjects.dtd">
-<PyObject module="node" class="Node" id="173548044">
-<attr name="Profile" type="dict" id="173547276" >
-</attr>
-<attr name="Description" type="string" value="" />
-<attr name="Dictionary" type="dict" id="173547004" >
- <entry>
- <key type="numeric" value="4096" />
- <val type="numeric" value="0" />
- </entry>
- <entry>
- <key type="numeric" value="4097" />
- <val type="numeric" value="0" />
- </entry>
- <entry>
- <key type="numeric" value="4120" />
- <val type="list" id="172243596" >
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
-</attr>
-<attr name="SpecificMenu" type="list" id="172243852" >
-</attr>
-<attr name="ParamsDictionary" type="dict" id="173551796" >
-</attr>
-<attr name="UserMapping" type="dict" id="173551932" >
-</attr>
-<attr name="DS302" type="dict" id="172206524" >
- <entry>
- <key type="numeric" value="7968" />
- <val type="dict" id="172959508" >
- <entry>
- <key type="string" value="need" />
- <val type="False" value="" />
- </entry>
- <entry>
- <key type="string" value="values" />
- <val type="list" id="172244812" >
- <item type="dict" id="173546596" >
- <entry>
- <key type="string" value="access" />
- <val type="string" value="ro" />
- </entry>
- <entry>
- <key type="string" value="pdo" />
- <val type="False" value="" />
- </entry>
- <entry>
- <key type="string" value="type" />
- <val type="numeric" value="5" />
- </entry>
- <entry>
- <key type="string" value="name" />
- <val type="string" value="Number of Entries" />
- </entry>
- </item>
- <item type="dict" id="173552204" >
- <entry>
- <key type="string" value="access" />
- <val type="string" value="rw" />
- </entry>
- <entry>
- <key type="string" value="pdo" />
- <val type="False" value="" />
- </entry>
- <entry>
- <key type="string" value="type" />
- <val type="numeric" value="15" />
- </entry>
- <entry>
- <key type="string" value="name" />
- <val type="string" value="Store DCF for node %d[(sub)]" />
- </entry>
- <entry>
- <key type="string" value="nbmax" />
- <val type="numeric" value="127" />
- </entry>
- </item>
- </val>
- </entry>
- <entry>
- <key type="string" value="name" />
- <val type="string" value="Store DCF" />
- </entry>
- <entry>
- <key type="string" value="struct" />
- <val type="numeric" value="7" />
- </entry>
- </val>
- </entry>
- <entry>
- <key type="numeric" value="7969" />
- <val type="dict" id="173546732" >
- <entry>
- <key type="string" value="need" />
- <val type="False" value="" />
- </entry>
- <entry>
- <key type="string" value="values" />
- <val type="list" id="172253420" >
- <item type="dict" id="173552612" >
- <entry>
- <key type="string" value="access" />
- <val type="string" value="ro" />
- </entry>
- <entry>
- <key type="string" value="pdo" />
- <val type="False" value="" />
- </entry>
- <entry>
- <key type="string" value="type" />
- <val type="numeric" value="5" />
- </entry>
- <entry>
- <key type="string" value="name" />
- <val type="string" value="Number of Entries" />
- </entry>
- </item>
- <item type="dict" id="173546324" >
- <entry>
- <key type="string" value="access" />
- <val type="string" value="rw" />
- </entry>
- <entry>
- <key type="string" value="pdo" />
- <val type="False" value="" />
- </entry>
- <entry>
- <key type="string" value="type" />
- <val type="numeric" value="2" />
- </entry>
- <entry>
- <key type="string" value="name" />
- <val type="string" value="Storage Format for Node %d[(sub)]" />
- </entry>
- <entry>
- <key type="string" value="nbmax" />
- <val type="numeric" value="127" />
- </entry>
- </item>
- </val>
- </entry>
- <entry>
- <key type="string" value="name" />
- <val type="string" value="Storage Format" />
- </entry>
- <entry>
- <key type="string" value="struct" />
- <val type="numeric" value="7" />
- </entry>
- </val>
- </entry>
- <entry>
- <key type="numeric" value="7970" />
- <val type="dict" id="173552476" >
- <entry>
- <key type="string" value="need" />
- <val type="False" value="" />
- </entry>
- <entry>
- <key type="string" value="values" />
- <val type="list" id="172253484" >
- <item type="dict" id="173552884" >
- <entry>
- <key type="string" value="access" />
- <val type="string" value="ro" />
- </entry>
- <entry>
- <key type="string" value="pdo" />
- <val type="False" value="" />
- </entry>
- <entry>
- <key type="string" value="type" />
- <val type="numeric" value="5" />
- </entry>
- <entry>
- <key type="string" value="name" />
- <val type="string" value="Number of Entries" />
- </entry>
- </item>
- <item type="dict" id="173552748" >
- <entry>
- <key type="string" value="access" />
- <val type="string" value="rw" />
- </entry>
- <entry>
- <key type="string" value="pdo" />
- <val type="False" value="" />
- </entry>
- <entry>
- <key type="string" value="type" />
- <val type="numeric" value="15" />
- </entry>
- <entry>
- <key type="string" value="name" />
- <val type="string" value="Concise DCF for Node %d[(sub)]" />
- </entry>
- <entry>
- <key type="string" value="nbmax" />
- <val type="numeric" value="127" />
- </entry>
- </item>
- </val>
- </entry>
- <entry>
- <key type="string" value="name" />
- <val type="string" value="Concise DCF" />
- </entry>
- <entry>
- <key type="string" value="struct" />
- <val type="numeric" value="7" />
- </entry>
- </val>
- </entry>
-</attr>
-<attr name="ProfileName" type="string" value="None" />
-<attr name="Type" type="string" value="master" />
-<attr name="ID" type="numeric" value="0" />
-<attr name="Name" type="string" value="MasterNode" />
-</PyObject>
--- a/tests/canopen_master/canopen@canfestival/master@CanOpenNode/nodelist.cpj Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-[TOPOLOGY]
-NetName=None
-Nodes=0x01
-Node2Present=0x01
-Node2Name=SlaveNode
-Node2DCFName=Slave_0_0.eds
-EDSBaseName=eds
--- a/tests/canopen_master/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,113 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xsi:schemaLocation="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="beremiz" productName="beremiz" productVersion="1" creationDateTime="2008-06-24T18:44:00"/>
- <contentHeader name="canopen_master" modificationDateTime="2018-09-26T13:31:52" language="en-US">
- <coordinateInfo>
- <fbd>
- <scaling x="0" y="0"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="test_main" pouType="program">
- <interface>
- <localVars>
- <variable name="PLC_OUT" address="%QW0.0.2.8193.0">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="PLC_IN" address="%IW0.0.2.8192.0">
- <type>
- <INT/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <outVariable localId="1" height="29" width="80" executionOrderId="0" negated="false">
- <position x="362" y="139"/>
- <connectionPointIn>
- <relPosition x="0" y="14"/>
- <connection refLocalId="4" formalParameter="OUT">
- <position x="362" y="153"/>
- <position x="299" y="153"/>
- </connection>
- </connectionPointIn>
- <expression>PLC_OUT</expression>
- </outVariable>
- <inVariable localId="2" height="29" width="20">
- <position x="100" y="115"/>
- <connectionPointOut>
- <relPosition x="20" y="14"/>
- </connectionPointOut>
- <expression>1</expression>
- </inVariable>
- <block localId="4" width="75" height="60" typeName="ADD">
- <position x="224" y="123"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="2">
- <position x="224" y="153"/>
- <position x="183" y="153"/>
- <position x="183" y="129"/>
- <position x="120" y="129"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="5">
- <position x="224" y="173"/>
- <position x="199" y="173"/>
- <position x="199" y="201"/>
- <position x="174" y="201"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="75" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="5" height="29" width="70">
- <position x="104" y="187"/>
- <connectionPointOut>
- <relPosition x="70" y="14"/>
- </connectionPointOut>
- <expression>PLC_IN</expression>
- </inVariable>
- </FBD>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="conf">
- <resource name="res">
- <task name="tache" interval="t#50ms" priority="0">
- <pouInstance name="toto" typeName="test_main"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/canopen_slave/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<BeremizRoot URI_location="LOCAL://">
- <TargetType/>
-</BeremizRoot>
--- a/tests/canopen_slave/canopen@canfestival/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<BaseParams Name="canopen" IEC_Channel="0"/>
--- a/tests/canopen_slave/canopen@canfestival/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<CanFestivalInstance/>
--- a/tests/canopen_slave/canopen@canfestival/slave@CanOpenSlave/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<BaseParams Name="slave" IEC_Channel="0"/>
--- a/tests/canopen_slave/canopen@canfestival/slave@CanOpenSlave/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<CanFestivalSlaveNode/>
--- a/tests/canopen_slave/canopen@canfestival/slave@CanOpenSlave/slave.eds Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,169 +0,0 @@
-[FileInfo]
-FileName=slave.eds
-FileVersion=1
-FileRevision=1
-EDSVersion=4.0
-Description=
-CreationTime=09:10AM
-CreationDate=10-27-2008
-CreatedBy=CANFestival
-ModificationTime=09:10AM
-ModificationDate=10-27-2008
-ModifiedBy=CANFestival
-
-[DeviceInfo]
-VendorName=CANFestival
-VendorNumber=0x00000000
-ProductName=SlaveNode
-ProductNumber=0x00000000
-RevisionNumber=0x00000000
-BaudRate_10=1
-BaudRate_20=1
-BaudRate_50=1
-BaudRate_125=1
-BaudRate_250=1
-BaudRate_500=1
-BaudRate_800=1
-BaudRate_1000=1
-SimpleBootUpMaster=0
-SimpleBootUpSlave=1
-Granularity=8
-DynamicChannelsSupported=0
-CompactPDO=0
-GroupMessaging=0
-NrOfRXPDO=4
-NrOfTXPDO=4
-LSS_Supported=0
-
-[DummyUsage]
-Dummy0001=0
-Dummy0002=1
-Dummy0003=1
-Dummy0004=1
-Dummy0005=1
-Dummy0006=1
-Dummy0007=1
-
-[Comments]
-Lines=0
-
-[MandatoryObjects]
-SupportedObjects=3
-1=0x1000
-2=0x1001
-3=0x1018
-
-[1000]
-ParameterName=Device Type
-ObjectType=0x7
-DataType=0x0007
-AccessType=ro
-DefaultValue=0
-PDOMapping=0
-
-[1001]
-ParameterName=Error Register
-ObjectType=0x7
-DataType=0x0005
-AccessType=ro
-DefaultValue=0
-PDOMapping=1
-
-[1018]
-ParameterName=Identity
-ObjectType=0x8
-SubNumber=5
-
-[1018sub0]
-ParameterName=Number of Entries
-ObjectType=0x7
-DataType=0x0005
-AccessType=ro
-DefaultValue=4
-PDOMapping=0
-
-[1018sub1]
-ParameterName=Vendor ID
-ObjectType=0x7
-DataType=0x0007
-AccessType=ro
-DefaultValue=0
-PDOMapping=0
-
-[1018sub2]
-ParameterName=Product Code
-ObjectType=0x7
-DataType=0x0007
-AccessType=ro
-DefaultValue=0
-PDOMapping=0
-
-[1018sub3]
-ParameterName=Revision Number
-ObjectType=0x7
-DataType=0x0007
-AccessType=ro
-DefaultValue=0
-PDOMapping=0
-
-[1018sub4]
-ParameterName=Serial Number
-ObjectType=0x7
-DataType=0x0007
-AccessType=ro
-DefaultValue=0
-PDOMapping=0
-
-[OptionalObjects]
-SupportedObjects=1
-1=0x1200
-
-[1200]
-ParameterName=Server SDO Parameter
-ObjectType=0x8
-SubNumber=3
-
-[1200sub0]
-ParameterName=Number of Entries
-ObjectType=0x7
-DataType=0x0005
-AccessType=ro
-DefaultValue=2
-PDOMapping=0
-
-[1200sub1]
-ParameterName=COB ID Client to Server (Receive SDO)
-ObjectType=0x7
-DataType=0x0007
-AccessType=ro
-DefaultValue=$NODEID+0x600
-PDOMapping=0
-
-[1200sub2]
-ParameterName=COB ID Server to Client (Transmit SDO)
-ObjectType=0x7
-DataType=0x0007
-AccessType=ro
-DefaultValue=$NODEID+0x580
-PDOMapping=0
-
-[ManufacturerObjects]
-SupportedObjects=2
-1=0x2000
-2=0x2001
-
-[2000]
-ParameterName=OutVar
-ObjectType=0x7
-DataType=0x0003
-AccessType=rw
-DefaultValue=0
-PDOMapping=1
-
-[2001]
-ParameterName=InVar
-ObjectType=0x7
-DataType=0x0003
-AccessType=rw
-DefaultValue=0
-PDOMapping=1
--- a/tests/canopen_slave/canopen@canfestival/slave@CanOpenSlave/slave.od Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,317 +0,0 @@
-<?xml version="1.0"?>
-<!DOCTYPE PyObject SYSTEM "PyObjects.dtd">
-<PyObject module="node" class="Node" id="157806348">
-<attr name="Profile" type="dict" id="157588716" >
-</attr>
-<attr name="Description" type="string" value="" />
-<attr name="Dictionary" type="dict" id="157588580" >
- <entry>
- <key type="numeric" value="4096" />
- <val type="numeric" value="0" />
- </entry>
- <entry>
- <key type="numeric" value="4097" />
- <val type="numeric" value="0" />
- </entry>
- <entry>
- <key type="numeric" value="5122" />
- <val type="list" id="160478380" >
- <item type="string" value="{True:"$NODEID+0x%X00"%(base+2),False:0x80000000}[base<4]" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="5123" />
- <val type="list" id="158303244" >
- <item type="string" value="{True:"$NODEID+0x%X00"%(base+2),False:0x80000000}[base<4]" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="8192" />
- <val type="numeric" value="0" />
- </entry>
- <entry>
- <key type="numeric" value="8193" />
- <val type="numeric" value="0" />
- </entry>
- <entry>
- <key type="numeric" value="5634" />
- <val type="list" id="158305356" >
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="5635" />
- <val type="list" id="158305388" >
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="6146" />
- <val type="list" id="158305420" >
- <item type="string" value="{True:"$NODEID+0x%X80"%(base+1),False:0x80000000}[base<4]" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="6658" />
- <val type="list" id="158305932" >
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="6147" />
- <val type="list" id="158305516" >
- <item type="string" value="{True:"$NODEID+0x%X80"%(base+1),False:0x80000000}[base<4]" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="4608" />
- <val type="list" id="158305068" >
- <item type="string" value=""$NODEID+0x600"" />
- <item type="string" value=""$NODEID+0x580"" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="4120" />
- <val type="list" id="158304940" >
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="5120" />
- <val type="list" id="158051500" >
- <item type="string" value="{True:"$NODEID+0x%X00"%(base+2),False:0x80000000}[base<4]" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="6659" />
- <val type="list" id="158052300" >
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="5632" />
- <val type="list" id="158049740" >
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="5121" />
- <val type="list" id="158048716" >
- <item type="string" value="{True:"$NODEID+0x%X00"%(base+2),False:0x80000000}[base<4]" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="6144" />
- <val type="list" id="158048428" >
- <item type="string" value="{True:"$NODEID+0x%X80"%(base+1),False:0x80000000}[base<4]" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="5633" />
- <val type="list" id="158052172" >
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="6656" />
- <val type="list" id="158052204" >
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="6145" />
- <val type="list" id="158052108" >
- <item type="string" value="{True:"$NODEID+0x%X80"%(base+1),False:0x80000000}[base<4]" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
- <entry>
- <key type="numeric" value="6657" />
- <val type="list" id="158048588" >
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- <item type="numeric" value="0" />
- </val>
- </entry>
-</attr>
-<attr name="SpecificMenu" type="list" id="158048396" >
-</attr>
-<attr name="ParamsDictionary" type="dict" id="157588308" >
-</attr>
-<attr name="UserMapping" type="dict" id="157588852" >
- <entry>
- <key type="numeric" value="8192" />
- <val type="dict" id="157602516" >
- <entry>
- <key type="string" value="need" />
- <val type="False" value="" />
- </entry>
- <entry>
- <key type="string" value="values" />
- <val type="list" id="158052332" >
- <item type="dict" id="157586676" >
- <entry>
- <key type="string" value="access" />
- <val type="string" value="rw" />
- </entry>
- <entry>
- <key type="string" value="pdo" />
- <val type="True" value="" />
- </entry>
- <entry>
- <key type="string" value="type" />
- <val type="numeric" value="3" />
- </entry>
- <entry>
- <key type="string" value="name" />
- <val type="string">OutVar</val>
- </entry>
- </item>
- </val>
- </entry>
- <entry>
- <key type="string" value="name" />
- <val type="string">OutVar</val>
- </entry>
- <entry>
- <key type="string" value="struct" />
- <val type="numeric" value="1" />
- </entry>
- </val>
- </entry>
- <entry>
- <key type="numeric" value="8193" />
- <val type="dict" id="157535468" >
- <entry>
- <key type="string" value="need" />
- <val type="False" value="" />
- </entry>
- <entry>
- <key type="string" value="values" />
- <val type="list" id="158305004" >
- <item type="dict" id="158343620" >
- <entry>
- <key type="string" value="access" />
- <val type="string" value="rw" />
- </entry>
- <entry>
- <key type="string" value="pdo" />
- <val type="True" value="" />
- </entry>
- <entry>
- <key type="string" value="type" />
- <val type="numeric" value="3" />
- </entry>
- <entry>
- <key type="string" value="name" />
- <val type="string">InVar</val>
- </entry>
- </item>
- </val>
- </entry>
- <entry>
- <key type="string" value="name" />
- <val type="string">InVar</val>
- </entry>
- <entry>
- <key type="string" value="struct" />
- <val type="numeric" value="1" />
- </entry>
- </val>
- </entry>
-</attr>
-<attr name="DS302" type="dict" id="158328188" >
-</attr>
-<attr name="ProfileName" type="string" value="None" />
-<attr name="Type" type="string" value="slave" />
-<attr name="ID" type="numeric" value="0" />
-<attr name="Name" type="string" value="SlaveNode" />
-</PyObject>
--- a/tests/canopen_slave/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,113 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xsi:schemaLocation="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="beremiz" productName="beremiz" productVersion="1" creationDateTime="2008-06-24T18:44:00"/>
- <contentHeader name="canopen_slave" modificationDateTime="2018-09-26T13:32:23" language="en-US">
- <coordinateInfo>
- <fbd>
- <scaling x="0" y="0"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="test_main" pouType="program">
- <interface>
- <localVars>
- <variable name="outvar" address="%QW0.0.8192.0">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="invar" address="%IW0.0.8193.0">
- <type>
- <INT/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <outVariable localId="1" height="29" width="80" executionOrderId="0" negated="false">
- <position x="362" y="139"/>
- <connectionPointIn>
- <relPosition x="0" y="14"/>
- <connection refLocalId="4" formalParameter="OUT">
- <position x="362" y="153"/>
- <position x="299" y="153"/>
- </connection>
- </connectionPointIn>
- <expression>outvar</expression>
- </outVariable>
- <inVariable localId="2" height="29" width="20">
- <position x="100" y="115"/>
- <connectionPointOut>
- <relPosition x="20" y="14"/>
- </connectionPointOut>
- <expression>1</expression>
- </inVariable>
- <block localId="4" width="75" height="60" typeName="ADD">
- <position x="224" y="123"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="2">
- <position x="224" y="153"/>
- <position x="183" y="153"/>
- <position x="183" y="129"/>
- <position x="120" y="129"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="5">
- <position x="224" y="173"/>
- <position x="187" y="173"/>
- <position x="187" y="187"/>
- <position x="150" y="187"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="75" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="5" height="29" width="60">
- <position x="90" y="173"/>
- <connectionPointOut>
- <relPosition x="60" y="14"/>
- </connectionPointOut>
- <expression>invar</expression>
- </inVariable>
- </FBD>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="conf">
- <resource name="res">
- <task name="tache" interval="T#10ms" priority="0">
- <pouInstance name="toto" typeName="test_main"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/genericmake/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <TargetType>
- <Generic Command="make -C %(buildpath)s -f ../project_files/Makefile all BEREMIZSRC=%(src)s BEREMIZCFLAGS=%(cflags)s MD5=%(md5)s USE_BEREMIZ=1 FROM_BEREMIZ=1"/>
- </TargetType>
- <Libraries Enable_Native_Library="false" Enable_Python_Library="false"/>
-</BeremizRoot>
--- a/tests/genericmake/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,92 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2014-01-19T11:14:47" contentDescription="This example shows how you can customize build process by using 'make'. "/>
- <contentHeader name="Makefile Example" modificationDateTime="2018-08-24T13:12:10">
- <coordinateInfo>
- <fbd>
- <scaling x="0" y="0"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="program0" pouType="program">
- <interface>
- <localVars>
- <variable name="LocalVara">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="LocalVarb">
- <type>
- <INT/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <inVariable localId="1" executionOrderId="0" height="30" width="77" negated="false">
- <position x="52" y="424"/>
- <connectionPointOut>
- <relPosition x="77" y="15"/>
- </connectionPointOut>
- <expression>LocalVara</expression>
- </inVariable>
- <outVariable localId="2" executionOrderId="0" height="30" width="77" negated="false">
- <position x="167" y="424"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="1">
- <position x="167" y="439"/>
- <position x="129" y="439"/>
- </connection>
- </connectionPointIn>
- <expression>LocalVarb</expression>
- </outVariable>
- <comment localId="3" height="385" width="760">
- <position x="32" y="23"/>
- <content>
- <xhtml:p><![CDATA[This example shows how you can customize build process by using 'make'.
-
-Sometimes special steps need to be done to build entire project.
-But it's not necessary to create another target in Beremiz every time you need to customize something in build process. Just use for that 'Generic' target and describe all necessary steps in Makefile.
-
-For example, you can
- - preprocess generated by Beremiz C source files,
- - do some fancy source code transformation using any tools you want,
- - use any compiler you want,
- - call static analyzers,
- - run integration tests on the project,
- - upload source code to external build server,
- - upload to the target and compile it there,
- - flash/transfer your compiled binary to the target,
- and much much more.
-]]></xhtml:p>
- </content>
- </comment>
- </FBD>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="resource1">
- <task name="Tsk" priority="0" interval="T#100ms">
- <pouInstance name="Inst" typeName="program0"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/genericmake/project_files/Makefile Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-BEREMIZ_OBJS = $(BEREMIZSRC:.c=.o)
-
-all: warn some_binary
- @echo "*** all done ***"
-
-warn:
- @echo "*** Sample Makefile, does nothing ***"
-
-some_binary: $(BEREMIZ_OBJS)
- @echo "* Would link $^ -> $@"
-
-%.o: %.c
- @echo "* Would compile $< -> $@"
--- a/tests/logging/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BeremizRoot URI_location="LOCAL://">
- <TargetType/>
- <Libraries Enable_Native_Library="true"/>
-</BeremizRoot>
--- a/tests/logging/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,350 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns="http://www.plcopen.org/xml/tc6_0201" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xhtml="http://www.w3.org/1999/xhtml" xsi:schemaLocation="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="Unknown" productName="Generic PLC" productVersion="1" creationDateTime="2013-01-29T14:01:00" contentDescription="This example shows logging functionality in Beremiz. Here are shown two ways of logging: - from IEC PLC program; - from python extension. "/>
- <contentHeader name="Logging example" modificationDateTime="2018-09-26T13:10:14">
- <coordinateInfo>
- <fbd>
- <scaling x="0" y="0"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="program0" pouType="program">
- <interface>
- <localVars>
- <variable name="beat">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="count">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="LOGGER0">
- <type>
- <derived name="LOGGER"/>
- </type>
- </variable>
- <variable name="lvl">
- <type>
- <derived name="LOGLEVEL"/>
- </type>
- <initialValue>
- <simpleValue value="INFO"/>
- </initialValue>
- </variable>
- <variable name="Timer">
- <type>
- <derived name="TOF"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <inVariable localId="2" height="30" width="218" executionOrderId="0" negated="false">
- <position x="459" y="365"/>
- <connectionPointOut>
- <relPosition x="218" y="15"/>
- </connectionPointOut>
- <expression>'IEC side logging: beat #'</expression>
- </inVariable>
- <block localId="3" width="59" height="40" typeName="NOT" executionOrderId="0">
- <position x="241" y="287"/>
- <inputVariables>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="14" formalParameter="Q">
- <position x="241" y="317"/>
- <position x="197" y="317"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="59" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inOutVariable localId="4" height="30" width="60" executionOrderId="0" negatedOut="false" negatedIn="false">
- <position x="57" y="302"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="3" formalParameter="OUT">
- <position x="57" y="317"/>
- <position x="37" y="317"/>
- <position x="37" y="390"/>
- <position x="314" y="390"/>
- <position x="314" y="317"/>
- <position x="300" y="317"/>
- </connection>
- </connectionPointIn>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>beat</expression>
- </inOutVariable>
- <block localId="5" width="68" height="98" typeName="ADD" executionOrderId="0">
- <position x="463" y="403"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="39"/>
- <connection refLocalId="10" formalParameter="OUT">
- <position x="463" y="442"/>
- <position x="452" y="442"/>
- <position x="452" y="442"/>
- <position x="455" y="442"/>
- <position x="455" y="442"/>
- <position x="439" y="442"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="78"/>
- <connection refLocalId="6">
- <position x="463" y="481"/>
- <position x="438" y="481"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="68" y="39"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inOutVariable localId="6" height="30" width="103" executionOrderId="0" negatedOut="false" negatedIn="false">
- <position x="335" y="466"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="5" formalParameter="OUT">
- <position x="335" y="481"/>
- <position x="320" y="481"/>
- <position x="320" y="518"/>
- <position x="544" y="518"/>
- <position x="544" y="442"/>
- <position x="531" y="442"/>
- </connection>
- </connectionPointIn>
- <connectionPointOut>
- <relPosition x="103" y="15"/>
- </connectionPointOut>
- <expression>count</expression>
- </inOutVariable>
- <block localId="8" width="67" height="144" typeName="CONCAT" executionOrderId="0">
- <position x="727" y="329"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="51"/>
- <connection refLocalId="2">
- <position x="727" y="380"/>
- <position x="717" y="380"/>
- <position x="717" y="380"/>
- <position x="677" y="380"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="113"/>
- <connection refLocalId="9" formalParameter="OUT">
- <position x="727" y="442"/>
- <position x="680" y="442"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="67" y="51"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <block localId="9" width="119" height="40" typeName="INT_TO_STRING" executionOrderId="0">
- <position x="561" y="412"/>
- <inputVariables>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="5" formalParameter="OUT">
- <position x="561" y="442"/>
- <position x="531" y="442"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="119" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <block localId="10" width="106" height="40" typeName="BOOL_TO_INT" executionOrderId="0">
- <position x="333" y="412"/>
- <inputVariables>
- <variable formalParameter="IN" edge="rising">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="3" formalParameter="OUT">
- <position x="333" y="442"/>
- <position x="314" y="442"/>
- <position x="314" y="317"/>
- <position x="300" y="317"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="106" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <block localId="11" width="65" height="209" typeName="LOGGER" instanceName="LOGGER0" executionOrderId="0">
- <position x="907" y="266"/>
- <inputVariables>
- <variable formalParameter="TRIG">
- <connectionPointIn>
- <relPosition x="0" y="51"/>
- <connection refLocalId="3" formalParameter="OUT">
- <position x="907" y="317"/>
- <position x="300" y="317"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="MSG">
- <connectionPointIn>
- <relPosition x="0" y="114"/>
- <connection refLocalId="8" formalParameter="OUT">
- <position x="907" y="380"/>
- <position x="794" y="380"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="LEVEL">
- <connectionPointIn>
- <relPosition x="0" y="177"/>
- <connection refLocalId="12">
- <position x="907" y="443"/>
- <position x="880" y="443"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <inVariable localId="12" height="30" width="79" executionOrderId="0" negated="false">
- <position x="801" y="428"/>
- <connectionPointOut>
- <relPosition x="79" y="15"/>
- </connectionPointOut>
- <expression>lvl</expression>
- </inVariable>
- <block localId="14" typeName="TOF" instanceName="Timer" executionOrderId="0" height="98" width="47">
- <position x="150" y="278"/>
- <inputVariables>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="39"/>
- <connection refLocalId="4">
- <position x="150" y="317"/>
- <position x="117" y="317"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="PT">
- <connectionPointIn>
- <relPosition x="0" y="78"/>
- <connection refLocalId="1">
- <position x="150" y="356"/>
- <position x="117" y="356"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Q">
- <connectionPointOut>
- <relPosition x="47" y="39"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="ET">
- <connectionPointOut>
- <relPosition x="47" y="78"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="1" executionOrderId="0" height="30" width="61" negated="false">
- <position x="56" y="341"/>
- <connectionPointOut>
- <relPosition x="61" y="15"/>
- </connectionPointOut>
- <expression>T#3s</expression>
- </inVariable>
- <comment localId="15" height="249" width="682">
- <position x="19" y="8"/>
- <content>
- <xhtml:p><![CDATA[This example shows logging functionality in Beremiz.
-Here are shown two ways of logging:
-- from IEC PLC program;
-- from python extension.
-
-In IEC PLC program every third second (beat) new message is generated and put in PLC log.
-See function blocks below.
-
-Every 15 seconds status of PLC program is put in PLC log from python extension.
-For more information about logging from python look at 0.x: py_ext_0 implementation in project tree.
-]]></xhtml:p>
- </content>
- </comment>
- </FBD>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="resource1">
- <task name="task0" priority="0" interval="T#100ms">
- <pouInstance name="prg" typeName="program0"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/logging/py_ext_0@py_ext/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<BaseParams Name="py_ext_0" IEC_Channel="0"/>
--- a/tests/logging/py_ext_0@py_ext/pyfile.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,41 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <variables/>
- <globals>
- <xhtml:p><![CDATA[import threading, time
-
-MyT = None
-Stop = False
-
-def StartLog():
- global MyT
- MyT=threading.Thread(target = DoLog)
- MyT.start()
-
-def DoLog():
- global Stop
- while not Stop:
- PLCObject.LogMessage("Python side Logging (PLC is %s)"%PLCObject.PLCStatus)
- time.sleep(0.3)
-
-def StopLog():
- global MyT,Stop
- Stop=True
-
-_runtime_init.append(StartLog)
-_runtime_cleanup.append(StopLog)
-]]></xhtml:p>
- </globals>
- <init>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </init>
- <cleanup>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </cleanup>
- <start>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </start>
- <stop>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </stop>
-</PyFile>
--- a/tests/modbus/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="LOCAL://">
- <TargetType>
- <Linux/>
- </TargetType>
-</BeremizRoot>
--- a/tests/modbus/modbus_0@modbus/ModbusTCPclient_0@ModbusTCPclient/ModbusRequest_0@ModbusRequest/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="ModbusRequest_0"/>
--- a/tests/modbus/modbus_0@modbus/ModbusTCPclient_0@ModbusTCPclient/ModbusRequest_0@ModbusRequest/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<ModbusRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" Function="16 - Write Multiple Registers" SlaveID="0"/>
--- a/tests/modbus/modbus_0@modbus/ModbusTCPclient_0@ModbusTCPclient/ModbusRequest_1@ModbusRequest/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="1" Name="ModbusRequest_1"/>
--- a/tests/modbus/modbus_0@modbus/ModbusTCPclient_0@ModbusTCPclient/ModbusRequest_1@ModbusRequest/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<ModbusRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" Function="04 - Read Input Registers" SlaveID="0" Start_Address="0"/>
--- a/tests/modbus/modbus_0@modbus/ModbusTCPclient_0@ModbusTCPclient/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="ModbusTCPclient_0"/>
--- a/tests/modbus/modbus_0@modbus/ModbusTCPclient_0@ModbusTCPclient/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<ModbusTCPclient xmlns:xsd="http://www.w3.org/2001/XMLSchema" Remote_Port_Number="1502"/>
--- a/tests/modbus/modbus_0@modbus/ModbusTCPserver_0@ModbusTCPserver/HoldingRegs@MemoryArea/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="HoldingRegs"/>
--- a/tests/modbus/modbus_0@modbus/ModbusTCPserver_0@ModbusTCPserver/HoldingRegs@MemoryArea/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<MemoryArea xmlns:xsd="http://www.w3.org/2001/XMLSchema" MemoryAreaType="03 - Holding Registers" Nr_of_Channels="1"/>
--- a/tests/modbus/modbus_0@modbus/ModbusTCPserver_0@ModbusTCPserver/InputRegs@MemoryArea/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="1" Name="InputRegs"/>
--- a/tests/modbus/modbus_0@modbus/ModbusTCPserver_0@ModbusTCPserver/InputRegs@MemoryArea/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<MemoryArea xmlns:xsd="http://www.w3.org/2001/XMLSchema" MemoryAreaType="04 - Input Registers"/>
--- a/tests/modbus/modbus_0@modbus/ModbusTCPserver_0@ModbusTCPserver/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="1" Name="ModbusTCPserver_0"/>
--- a/tests/modbus/modbus_0@modbus/ModbusTCPserver_0@ModbusTCPserver/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<ModbusServerNode xmlns:xsd="http://www.w3.org/2001/XMLSchema" Local_Port_Number="1502" Local_IP_Address="127.0.0.1"/>
--- a/tests/modbus/modbus_0@modbus/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="modbus_0"/>
--- a/tests/modbus/modbus_0@modbus/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<ModbusRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema"/>
--- a/tests/modbus/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,314 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="Beremiz" productName="Beremiz" productVersion="1" creationDateTime="2018-07-27T13:19:12"/>
- <contentHeader name="Modbus" modificationDateTime="2018-07-27T15:43:56">
- <coordinateInfo>
- <fbd>
- <scaling x="0" y="0"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="program0" pouType="program">
- <interface>
- <localVars>
- <variable name="Counter">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="CounterReadBack">
- <type>
- <INT/>
- </type>
- </variable>
- </localVars>
- <localVars>
- <variable name="MasterWriteToReg0" address="%QW0.0.0.0">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="MasterReadFromReg1" address="%IW0.0.1.0">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="SlaveHoldReg0" address="%IW0.1.0.0">
- <type>
- <WORD/>
- </type>
- </variable>
- <variable name="SlaveInputReg0" address="%QW0.1.1.0">
- <type>
- <WORD/>
- </type>
- </variable>
- </localVars>
- <localVars>
- <variable name="CTU0">
- <type>
- <derived name="CTU"/>
- </type>
- </variable>
- <variable name="Generator0">
- <type>
- <derived name="Generator"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <comment localId="4" height="109" width="350">
- <position x="102" y="438"/>
- <content>
- <xhtml:p><![CDATA[Modbus TCP Master writes counter value to one holding register on Modbus TCP Slave and reads it back from other input register.]]></xhtml:p>
- </content>
- </comment>
- <comment localId="3" height="407" width="680">
- <position x="21" y="15"/>
- <content>
- <xhtml:p><![CDATA[This examples shows how to work with Modbus extension. It uses Modbus TCP, but the same functions are available for Modbus RTU as well. Buth protocols are supported.
-
-Modbus extensions requires native Modbus RTU/TCP library to be installed nearby Beremiz.
-Following directory structure is expected:
-<Parent directory>
- "beremiz"
- "Modbus"
-
-If Modbus library is installed elsewhere, then place corresponding paths
-in CFLAGS/LDFLAGS in project settings.
-
-For GNU/Linux to install Modbus library in parent directory run following commands:
-$ hg clone https://bitbucket.org/mjsousa/modbus Modbus
-$ cd Modbus
-$ make
-
-After that Modbus extension is ready to be used in Beremiz projects.]]></xhtml:p>
- </content>
- </comment>
- <block localId="5" typeName="CTU" instanceName="CTU0" executionOrderId="0" height="80" width="52">
- <position x="346" y="605"/>
- <inputVariables>
- <variable formalParameter="CU" edge="rising">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="6" formalParameter="OUT">
- <position x="346" y="635"/>
- <position x="303" y="635"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="R">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- </connectionPointIn>
- </variable>
- <variable formalParameter="PV">
- <connectionPointIn>
- <relPosition x="0" y="70"/>
- <connection refLocalId="7">
- <position x="346" y="675"/>
- <position x="324" y="675"/>
- <position x="324" y="703"/>
- <position x="302" y="703"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Q">
- <connectionPointOut>
- <relPosition x="52" y="30"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="CV">
- <connectionPointOut>
- <relPosition x="52" y="50"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <block localId="6" typeName="Generator" instanceName="Generator0" executionOrderId="0" height="60" width="79">
- <position x="224" y="605"/>
- <inputVariables>
- <variable formalParameter="PON">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="1">
- <position x="224" y="635"/>
- <position x="154" y="635"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="POFF">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="1">
- <position x="224" y="655"/>
- <position x="189" y="655"/>
- <position x="189" y="635"/>
- <position x="154" y="635"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="79" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="1" executionOrderId="0" height="30" width="138" negated="false">
- <position x="16" y="620"/>
- <connectionPointOut>
- <relPosition x="138" y="15"/>
- </connectionPointOut>
- <expression>T#1s</expression>
- </inVariable>
- <inVariable localId="7" executionOrderId="0" height="30" width="138" negated="false">
- <position x="164" y="688"/>
- <connectionPointOut>
- <relPosition x="138" y="15"/>
- </connectionPointOut>
- <expression>32767</expression>
- </inVariable>
- <inOutVariable localId="2" executionOrderId="0" height="30" width="138" negatedOut="false" negatedIn="false">
- <position x="544" y="640"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="5" formalParameter="CV">
- <position x="544" y="655"/>
- <position x="398" y="655"/>
- </connection>
- </connectionPointIn>
- <connectionPointOut>
- <relPosition x="138" y="15"/>
- </connectionPointOut>
- <expression>Counter</expression>
- </inOutVariable>
- <outVariable localId="8" executionOrderId="0" height="30" width="138" negated="false">
- <position x="762" y="640"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="2">
- <position x="762" y="655"/>
- <position x="682" y="655"/>
- </connection>
- </connectionPointIn>
- <expression>MasterWriteToReg0</expression>
- </outVariable>
- <inVariable localId="9" executionOrderId="0" height="30" width="152" negated="false">
- <position x="81" y="747"/>
- <connectionPointOut>
- <relPosition x="152" y="15"/>
- </connectionPointOut>
- <expression>MasterReadFromReg1</expression>
- </inVariable>
- <outVariable localId="10" executionOrderId="0" height="30" width="137" negated="false">
- <position x="547" y="747"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="9">
- <position x="547" y="762"/>
- <position x="233" y="762"/>
- </connection>
- </connectionPointIn>
- <expression>CounterReadBack</expression>
- </outVariable>
- <comment localId="11" height="109" width="350">
- <position x="85" y="825"/>
- <content>
- <xhtml:p><![CDATA[Modbus TCP Slave just copies received register value from holding register to input register.]]></xhtml:p>
- </content>
- </comment>
- <inVariable localId="12" executionOrderId="0" height="30" width="152" negated="false">
- <position x="82" y="970"/>
- <connectionPointOut>
- <relPosition x="152" y="15"/>
- </connectionPointOut>
- <expression>SlaveHoldReg0</expression>
- </inVariable>
- <outVariable localId="13" executionOrderId="0" height="30" width="123" negated="false">
- <position x="548" y="970"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="12">
- <position x="548" y="985"/>
- <position x="234" y="985"/>
- </connection>
- </connectionPointIn>
- <expression>SlaveInputReg0</expression>
- </outVariable>
- </FBD>
- </body>
- </pou>
- <pou name="Generator" pouType="functionBlock">
- <interface>
- <outputVars>
- <variable name="OUT">
- <type>
- <BOOL/>
- </type>
- </variable>
- </outputVars>
- <inputVars>
- <variable name="PON">
- <type>
- <TIME/>
- </type>
- </variable>
- <variable name="POFF">
- <type>
- <TIME/>
- </type>
- </variable>
- </inputVars>
- <localVars>
- <variable name="T1">
- <type>
- <derived name="TON"/>
- </type>
- </variable>
- <variable name="T2">
- <type>
- <derived name="TOF"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <ST>
- <xhtml:p><![CDATA[T1( IN := NOT T2.Q, PT := POFF);
-T2( IN := T1.Q, PT := PON);
-OUT := T2.Q;]]></xhtml:p>
- </ST>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="resource1">
- <task name="task0" priority="0" interval="T#20ms">
- <pouInstance name="instance0" typeName="program0"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/BACnet/bacnet_0@bacnet/bacnet_slave Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,202 @@
+(dp0
+S'BV_Obj'
+p1
+(lp2
+sS'AV_Obj'
+p3
+(lp4
+(dp5
+S'loc'
+p6
+S'MD0_2'
+p7
+sS'Description'
+p8
+S''
+p9
+sS'Unit ID'
+p10
+I19
+sS'Object Identifier'
+p11
+I0
+sS'Ctype'
+p12
+S'float'
+p13
+sS'BACnetObjTypeID'
+p14
+I2
+sS'Settable'
+p15
+S'Y'
+p16
+sS'Engineering Units'
+p17
+V(Energy) kilowatt-hours (19)
+p18
+sS'Object Name'
+p19
+VEnergyCounter
+p20
+sasS'AO_Obj'
+p21
+(lp22
+(dp23
+g6
+S'QD0_1'
+p24
+sg8
+V
+p25
+sS'Unit ID'
+p26
+I62
+sS'Object Identifier'
+p27
+V0
+p28
+sg12
+g13
+sg14
+I1
+sg15
+g16
+sS'Object Name'
+p29
+VTemperatureSetPoint
+p30
+sS'Engineering Units'
+p31
+V(Temperature) degrees-celsius (62)
+p32
+sasS'MSI_Obj'
+p33
+(lp34
+sS'BO_Obj'
+p35
+(lp36
+(dp37
+g6
+S'QX0_4'
+p38
+sg8
+g9
+sS'Object Identifier'
+p39
+I2
+sg12
+S'uint8_t'
+p40
+sg14
+I4
+sg15
+g16
+sS'Object Name'
+p41
+VBlockClimateControl
+p42
+sasS'MSO_Obj'
+p43
+(lp44
+sS'EDEfile_parm'
+p45
+(dp46
+S'next_EDE_file_version'
+p47
+I1
+ssS'BI_Obj'
+p48
+(lp49
+(dp50
+g6
+S'IX0_3'
+p51
+sg8
+g9
+sS'Object Identifier'
+p52
+I0
+sg12
+g40
+sg14
+I3
+sg15
+S'N'
+p53
+sS'Object Name'
+p54
+VHeater
+p55
+sa(dp56
+g6
+g51
+sg8
+g9
+sg52
+I1
+sg12
+g40
+sg14
+I3
+sg15
+g53
+sg54
+VCooler
+p57
+sasS'AI_Obj'
+p58
+(lp59
+(dp60
+g6
+S'ID0_0'
+p61
+sg8
+VCurrent termperature in Beremiz lab
+p62
+sS'Unit ID'
+p63
+I62
+sS'Object Identifier'
+p64
+I0
+sg12
+g13
+sg14
+I0
+sg15
+g53
+sS'Engineering Units'
+p65
+V(Temperature) degrees-celsius (62)
+p66
+sS'Object Name'
+p67
+VTemperature
+p68
+sa(dp69
+g6
+g61
+sg8
+VCurrent humidity in Beremiz lab
+p70
+sg63
+I29
+sg64
+I1
+sg12
+g13
+sg14
+I0
+sg15
+g53
+sg67
+VHumidity
+p71
+sg65
+V(Humidity) percent-relative-humidity (29)
+p72
+sasS'MSV_Obj'
+p73
+(lp74
+s.
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/BACnet/bacnet_0@bacnet/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="bacnet_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/BACnet/bacnet_0@bacnet/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BACnetServerNode xmlns:xsd="http://www.w3.org/2001/XMLSchema" UDP_Port_Number="47808" BACnet_Device_ID="3" BACnet_Communication_Control_Password=" " BACnet_Device_Location="Beremiz lab" Network_Interface="virbr0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/BACnet/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,4 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="LOCAL://">
+ <TargetType/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/BACnet/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,601 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2018-07-28T02:24:08"/>
+ <contentHeader name="BACnet" modificationDateTime="2018-09-26T14:00:21">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="0" y="0"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="program0" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="EnergyCounter" address="%MD0.2.0">
+ <type>
+ <REAL/>
+ </type>
+ </variable>
+ <variable name="Temperature" address="%ID0.0.0">
+ <type>
+ <REAL/>
+ </type>
+ </variable>
+ <variable name="Humidity" address="%ID0.0.1">
+ <type>
+ <REAL/>
+ </type>
+ </variable>
+ </localVars>
+ <localVars>
+ <variable name="TempSimulation">
+ <type>
+ <derived name="Simulator"/>
+ </type>
+ </variable>
+ <variable name="HumiditySimulation">
+ <type>
+ <derived name="Simulator"/>
+ </type>
+ </variable>
+ </localVars>
+ <localVars>
+ <variable name="TemperatureSetPoint" address="%QD0.1.0">
+ <type>
+ <REAL/>
+ </type>
+ </variable>
+ <variable name="ControlDisable" address="%QX0.4.2">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="Heater" address="%IX0.3.0">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="Cooler" address="%IX0.3.1">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <inVariable localId="1" executionOrderId="0" height="30" width="114" negated="false">
+ <position x="299" y="521"/>
+ <connectionPointOut>
+ <relPosition x="114" y="15"/>
+ </connectionPointOut>
+ <expression>EnergyCounter</expression>
+ </inVariable>
+ <outVariable localId="2" executionOrderId="0" height="30" width="114" negated="false">
+ <position x="654" y="521"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="3" formalParameter="OUT">
+ <position x="654" y="536"/>
+ <position x="533" y="536"/>
+ </connection>
+ </connectionPointIn>
+ <expression>EnergyCounter</expression>
+ </outVariable>
+ <block localId="3" typeName="ADD" executionOrderId="0" height="60" width="67">
+ <position x="466" y="506"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="1">
+ <position x="466" y="536"/>
+ <position x="404" y="536"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="4">
+ <position x="466" y="556"/>
+ <position x="436" y="556"/>
+ <position x="436" y="585"/>
+ <position x="401" y="585"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="67" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="4" executionOrderId="0" height="30" width="105" negated="false">
+ <position x="296" y="570"/>
+ <connectionPointOut>
+ <relPosition x="105" y="15"/>
+ </connectionPointOut>
+ <expression>0.00131</expression>
+ </inVariable>
+ <comment localId="5" height="67" width="229">
+ <position x="27" y="525"/>
+ <content>
+ <xhtml:p><![CDATA[Always consume some energy]]></xhtml:p>
+ </content>
+ </comment>
+ <block localId="6" typeName="Simulator" instanceName="TempSimulation" executionOrderId="0" height="128" width="143">
+ <position x="188" y="648"/>
+ <inputVariables>
+ <variable formalParameter="MinVal">
+ <connectionPointIn>
+ <relPosition x="0" y="38"/>
+ <connection refLocalId="8">
+ <position x="188" y="686"/>
+ <position x="138" y="686"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="MaxVal">
+ <connectionPointIn>
+ <relPosition x="0" y="74"/>
+ <connection refLocalId="9">
+ <position x="188" y="722"/>
+ <position x="138" y="722"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="PeriodSeconds">
+ <connectionPointIn>
+ <relPosition x="0" y="110"/>
+ <connection refLocalId="10">
+ <position x="188" y="758"/>
+ <position x="138" y="758"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Out">
+ <connectionPointOut>
+ <relPosition x="143" y="38"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <outVariable localId="7" executionOrderId="0" height="30" width="98" negated="false">
+ <position x="421" y="671"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="6" formalParameter="Out">
+ <position x="421" y="686"/>
+ <position x="331" y="686"/>
+ </connection>
+ </connectionPointIn>
+ <expression>Temperature</expression>
+ </outVariable>
+ <inVariable localId="8" executionOrderId="0" height="30" width="105" negated="false">
+ <position x="33" y="671"/>
+ <connectionPointOut>
+ <relPosition x="105" y="15"/>
+ </connectionPointOut>
+ <expression>18.0</expression>
+ </inVariable>
+ <inVariable localId="9" executionOrderId="0" height="30" width="105" negated="false">
+ <position x="33" y="707"/>
+ <connectionPointOut>
+ <relPosition x="105" y="15"/>
+ </connectionPointOut>
+ <expression>30.0</expression>
+ </inVariable>
+ <inVariable localId="10" executionOrderId="0" height="30" width="105" negated="false">
+ <position x="33" y="743"/>
+ <connectionPointOut>
+ <relPosition x="105" y="15"/>
+ </connectionPointOut>
+ <expression>120</expression>
+ </inVariable>
+ <block localId="11" typeName="Simulator" instanceName="HumiditySimulation" executionOrderId="0" height="137" width="143">
+ <position x="185" y="803"/>
+ <inputVariables>
+ <variable formalParameter="MinVal">
+ <connectionPointIn>
+ <relPosition x="0" y="39"/>
+ <connection refLocalId="13">
+ <position x="185" y="842"/>
+ <position x="135" y="842"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="MaxVal">
+ <connectionPointIn>
+ <relPosition x="0" y="78"/>
+ <connection refLocalId="14">
+ <position x="185" y="881"/>
+ <position x="135" y="881"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="PeriodSeconds">
+ <connectionPointIn>
+ <relPosition x="0" y="117"/>
+ <connection refLocalId="15">
+ <position x="185" y="920"/>
+ <position x="135" y="920"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Out">
+ <connectionPointOut>
+ <relPosition x="143" y="39"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <outVariable localId="12" executionOrderId="0" height="30" width="111" negated="false">
+ <position x="418" y="827"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="11" formalParameter="Out">
+ <position x="418" y="842"/>
+ <position x="328" y="842"/>
+ </connection>
+ </connectionPointIn>
+ <expression>Humidity</expression>
+ </outVariable>
+ <inVariable localId="13" executionOrderId="0" height="30" width="105" negated="false">
+ <position x="30" y="827"/>
+ <connectionPointOut>
+ <relPosition x="105" y="15"/>
+ </connectionPointOut>
+ <expression>55.0</expression>
+ </inVariable>
+ <inVariable localId="14" executionOrderId="0" height="30" width="105" negated="false">
+ <position x="30" y="866"/>
+ <connectionPointOut>
+ <relPosition x="105" y="15"/>
+ </connectionPointOut>
+ <expression>78.0</expression>
+ </inVariable>
+ <inVariable localId="15" executionOrderId="0" height="30" width="105" negated="false">
+ <position x="30" y="905"/>
+ <connectionPointOut>
+ <relPosition x="105" y="15"/>
+ </connectionPointOut>
+ <expression>58</expression>
+ </inVariable>
+ <block localId="16" typeName="GT" executionOrderId="0" height="60" width="67">
+ <position x="231" y="1103"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="18">
+ <position x="231" y="1133"/>
+ <position x="132" y="1133"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="22">
+ <position x="231" y="1153"/>
+ <position x="208" y="1153"/>
+ <position x="208" y="1169"/>
+ <position x="185" y="1169"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="67" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="18" executionOrderId="0" height="30" width="98" negated="false">
+ <position x="40" y="1118"/>
+ <connectionPointOut>
+ <relPosition x="98" y="15"/>
+ </connectionPointOut>
+ <expression>Temperature</expression>
+ </inVariable>
+ <block localId="19" typeName="AND" executionOrderId="0" height="60" width="67">
+ <position x="347" y="1059"/>
+ <inputVariables>
+ <variable formalParameter="IN1" negated="true">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="20">
+ <position x="347" y="1089"/>
+ <position x="263" y="1089"/>
+ <position x="263" y="1074"/>
+ <position x="145" y="1074"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="16" formalParameter="OUT">
+ <position x="347" y="1109"/>
+ <position x="337" y="1109"/>
+ <position x="337" y="1133"/>
+ <position x="298" y="1133"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="67" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="20" executionOrderId="0" height="30" width="122" negated="false">
+ <position x="41" y="1059"/>
+ <connectionPointOut>
+ <relPosition x="122" y="15"/>
+ </connectionPointOut>
+ <expression>ControlDisable</expression>
+ </inVariable>
+ <outVariable localId="21" executionOrderId="0" height="30" width="92" negated="false">
+ <position x="468" y="1074"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="19" formalParameter="OUT">
+ <position x="468" y="1089"/>
+ <position x="414" y="1089"/>
+ </connection>
+ </connectionPointIn>
+ <expression>Cooler</expression>
+ </outVariable>
+ <inVariable localId="22" executionOrderId="0" height="30" width="162" negated="false">
+ <position x="39" y="1154"/>
+ <connectionPointOut>
+ <relPosition x="162" y="15"/>
+ </connectionPointOut>
+ <expression>TemperatureSetPoint</expression>
+ </inVariable>
+ <block localId="17" typeName="LT" executionOrderId="0" height="60" width="67">
+ <position x="228" y="1278"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="23">
+ <position x="228" y="1308"/>
+ <position x="129" y="1308"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="27">
+ <position x="228" y="1328"/>
+ <position x="205" y="1328"/>
+ <position x="205" y="1344"/>
+ <position x="182" y="1344"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="67" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="23" executionOrderId="0" height="30" width="98" negated="false">
+ <position x="37" y="1293"/>
+ <connectionPointOut>
+ <relPosition x="98" y="15"/>
+ </connectionPointOut>
+ <expression>Temperature</expression>
+ </inVariable>
+ <block localId="24" typeName="AND" executionOrderId="0" height="60" width="67">
+ <position x="344" y="1234"/>
+ <inputVariables>
+ <variable formalParameter="IN1" negated="true">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="25">
+ <position x="344" y="1264"/>
+ <position x="260" y="1264"/>
+ <position x="260" y="1249"/>
+ <position x="142" y="1249"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="17" formalParameter="OUT">
+ <position x="344" y="1284"/>
+ <position x="334" y="1284"/>
+ <position x="334" y="1308"/>
+ <position x="295" y="1308"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="67" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="25" executionOrderId="0" height="30" width="122" negated="false">
+ <position x="38" y="1234"/>
+ <connectionPointOut>
+ <relPosition x="122" y="15"/>
+ </connectionPointOut>
+ <expression>ControlDisable</expression>
+ </inVariable>
+ <outVariable localId="26" executionOrderId="0" height="30" width="92" negated="false">
+ <position x="465" y="1249"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="24" formalParameter="OUT">
+ <position x="465" y="1264"/>
+ <position x="411" y="1264"/>
+ </connection>
+ </connectionPointIn>
+ <expression>Heater</expression>
+ </outVariable>
+ <inVariable localId="27" executionOrderId="0" height="30" width="162" negated="false">
+ <position x="36" y="1329"/>
+ <connectionPointOut>
+ <relPosition x="162" y="15"/>
+ </connectionPointOut>
+ <expression>TemperatureSetPoint</expression>
+ </inVariable>
+ <comment localId="28" height="67" width="229">
+ <position x="343" y="734"/>
+ <content>
+ <xhtml:p><![CDATA[Simple sensor simulation]]></xhtml:p>
+ </content>
+ </comment>
+ <comment localId="29" height="67" width="229">
+ <position x="37" y="978"/>
+ <content>
+ <xhtml:p><![CDATA[Climate control]]></xhtml:p>
+ </content>
+ </comment>
+ <comment localId="30" height="464" width="773">
+ <position x="14" y="16"/>
+ <content>
+ <xhtml:p><![CDATA[This examples shows how to work with BACnet extension.
+
+Extensions requires native BACnet stack to be installed nearby Beremiz.
+Following directory structure is expected:
+<Parent directory>
+ "beremiz"
+ "BACnet"
+
+If library is installed elsewhere, then place corresponding paths
+in CFLAGS/LDFLAGS in project settings.
+
+For GNU/Linux to install BACnet library in parent directory run following commands:
+$ svn checkout https://svn.code.sf.net/p/bacnet/code/trunk/bacnet-stack/ BACnet
+$ cd BACnet
+$ make
+
+After that BACnet extension is ready to be used in Beremiz projects.
+BACnet stack implementation contains a lot of test tools. They could be useful during
+debugging and BACnet investigation. See "BACnet/bin/readme.txt" for more information about them.]]></xhtml:p>
+ </content>
+ </comment>
+ </FBD>
+ </body>
+ </pou>
+ <pou name="Simulator" pouType="functionBlock">
+ <interface>
+ <outputVars>
+ <variable name="Out">
+ <type>
+ <REAL/>
+ </type>
+ </variable>
+ </outputVars>
+ <inputVars>
+ <variable name="MinVal">
+ <type>
+ <REAL/>
+ </type>
+ </variable>
+ <variable name="MaxVal">
+ <type>
+ <REAL/>
+ </type>
+ </variable>
+ <variable name="PeriodSeconds">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ </inputVars>
+ <localVars>
+ <variable name="TON0">
+ <type>
+ <derived name="TON"/>
+ </type>
+ </variable>
+ <variable name="seconds">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="BaseVal">
+ <type>
+ <REAL/>
+ </type>
+ </variable>
+ <variable name="VarVal">
+ <type>
+ <REAL/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <ST>
+ <xhtml:p><![CDATA[(* pseudo-random variations *)
+TON0(IN := TRUE, PT := T#3120s);
+IF TON0.Q THEN
+ TON0(IN := FALSE);
+END_IF;
+seconds := TIME_TO_INT(TON0.ET);
+
+BaseVal := (MaxVal + MinVal)/2.0;
+VarVal := (MaxVal-MinVal)*INT_TO_REAL((seconds MOD PeriodSeconds) - (PeriodSeconds/2))/INT_TO_REAL(PeriodSeconds);
+
+Out := BaseVal + VarVal;]]></xhtml:p>
+ </ST>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="resource1">
+ <task name="task0" priority="0" interval="T#20ms">
+ <pouInstance name="instance0" typeName="program0"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/README.md Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,7 @@
+Beremiz projects for non-automated testing
+===
+
+This directory contains unsorted projects used as manually executed test while working on particular topics.
+
+
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_master/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<BeremizRoot URI_location="LOCAL://">
+ <TargetType/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_master/canopen@canfestival/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<BaseParams Name="canopen" IEC_Channel="0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_master/canopen@canfestival/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<CanFestivalInstance/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_master/canopen@canfestival/master@CanOpenNode/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<BaseParams Name="master" IEC_Channel="0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_master/canopen@canfestival/master@CanOpenNode/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<CanFestivalNode/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_master/canopen@canfestival/master@CanOpenNode/eds/Slave_0_0.eds Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,1161 @@
+[FileInfo]
+FileName=Slave_0_0.eds
+FileVersion=1
+FileRevision=1
+EDSVersion=4.0
+Description=
+CreationTime=06:35PM
+CreationDate=10-07-2009
+CreatedBy=CANFestival
+ModificationTime=06:35PM
+ModificationDate=10-07-2009
+ModifiedBy=CANFestival
+
+[DeviceInfo]
+VendorName=CANFestival
+VendorNumber=0x00000000
+ProductName=OD_0_0
+ProductNumber=0x00000000
+RevisionNumber=0x00000000
+BaudRate_10=1
+BaudRate_20=1
+BaudRate_50=1
+BaudRate_125=1
+BaudRate_250=1
+BaudRate_500=1
+BaudRate_800=1
+BaudRate_1000=1
+SimpleBootUpMaster=0
+SimpleBootUpSlave=1
+Granularity=8
+DynamicChannelsSupported=0
+CompactPDO=0
+GroupMessaging=0
+NrOfRXPDO=4
+NrOfTXPDO=4
+LSS_Supported=0
+
+[DummyUsage]
+Dummy0001=0
+Dummy0002=1
+Dummy0003=1
+Dummy0004=1
+Dummy0005=1
+Dummy0006=1
+Dummy0007=1
+
+[Comments]
+Lines=0
+
+[MandatoryObjects]
+SupportedObjects=3
+1=0x1000
+2=0x1001
+3=0x1018
+
+[1000]
+ParameterName=Device Type
+ObjectType=0x7
+DataType=0x0007
+AccessType=ro
+DefaultValue=0
+PDOMapping=0
+
+[1001]
+ParameterName=Error Register
+ObjectType=0x7
+DataType=0x0005
+AccessType=ro
+DefaultValue=0
+PDOMapping=1
+
+[1018]
+ParameterName=Identity
+ObjectType=0x8
+SubNumber=5
+
+[1018sub0]
+ParameterName=Number of Entries
+ObjectType=0x7
+DataType=0x0005
+AccessType=ro
+DefaultValue=4
+PDOMapping=0
+
+[1018sub1]
+ParameterName=Vendor ID
+ObjectType=0x7
+DataType=0x0007
+AccessType=ro
+DefaultValue=0
+PDOMapping=0
+
+[1018sub2]
+ParameterName=Product Code
+ObjectType=0x7
+DataType=0x0007
+AccessType=ro
+DefaultValue=0
+PDOMapping=0
+
+[1018sub3]
+ParameterName=Revision Number
+ObjectType=0x7
+DataType=0x0007
+AccessType=ro
+DefaultValue=0
+PDOMapping=0
+
+[1018sub4]
+ParameterName=Serial Number
+ObjectType=0x7
+DataType=0x0007
+AccessType=ro
+DefaultValue=0
+PDOMapping=0
+
+[OptionalObjects]
+SupportedObjects=17
+1=0x1200
+2=0x1400
+3=0x1401
+4=0x1402
+5=0x1403
+6=0x1600
+7=0x1601
+8=0x1602
+9=0x1603
+10=0x1800
+11=0x1801
+12=0x1802
+13=0x1803
+14=0x1A00
+15=0x1A01
+16=0x1A02
+17=0x1A03
+
+[1200]
+ParameterName=Server SDO Parameter
+ObjectType=0x8
+SubNumber=3
+
+[1200sub0]
+ParameterName=Number of Entries
+ObjectType=0x7
+DataType=0x0005
+AccessType=ro
+DefaultValue=2
+PDOMapping=0
+
+[1200sub1]
+ParameterName=COB ID Client to Server (Receive SDO)
+ObjectType=0x7
+DataType=0x0007
+AccessType=ro
+DefaultValue=$NODEID+0x600
+PDOMapping=0
+
+[1200sub2]
+ParameterName=COB ID Server to Client (Transmit SDO)
+ObjectType=0x7
+DataType=0x0007
+AccessType=ro
+DefaultValue=$NODEID+0x580
+PDOMapping=0
+
+[1400]
+ParameterName=Receive PDO 1 Parameter
+ObjectType=0x8
+SubNumber=5
+
+[1400sub0]
+ParameterName=Highest SubIndex Supported
+ObjectType=0x7
+DataType=0x0005
+AccessType=ro
+DefaultValue=5
+PDOMapping=0
+
+[1400sub1]
+ParameterName=COB ID used by PDO
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=$NODEID+0x200
+PDOMapping=0
+
+[1400sub2]
+ParameterName=Transmission Type
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1400sub3]
+ParameterName=Inhibit Time
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1400sub5]
+ParameterName=Event Timer
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1401]
+ParameterName=Receive PDO 2 Parameter
+ObjectType=0x8
+SubNumber=5
+
+[1401sub0]
+ParameterName=Highest SubIndex Supported
+ObjectType=0x7
+DataType=0x0005
+AccessType=ro
+DefaultValue=5
+PDOMapping=0
+
+[1401sub1]
+ParameterName=COB ID used by PDO
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=$NODEID+0x300
+PDOMapping=0
+
+[1401sub2]
+ParameterName=Transmission Type
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1401sub3]
+ParameterName=Inhibit Time
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1401sub5]
+ParameterName=Event Timer
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1402]
+ParameterName=Receive PDO 3 Parameter
+ObjectType=0x8
+SubNumber=5
+
+[1402sub0]
+ParameterName=Highest SubIndex Supported
+ObjectType=0x7
+DataType=0x0005
+AccessType=ro
+DefaultValue=5
+PDOMapping=0
+
+[1402sub1]
+ParameterName=COB ID used by PDO
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=$NODEID+0x400
+PDOMapping=0
+
+[1402sub2]
+ParameterName=Transmission Type
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1402sub3]
+ParameterName=Inhibit Time
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1402sub5]
+ParameterName=Event Timer
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1403]
+ParameterName=Receive PDO 4 Parameter
+ObjectType=0x8
+SubNumber=5
+
+[1403sub0]
+ParameterName=Highest SubIndex Supported
+ObjectType=0x7
+DataType=0x0005
+AccessType=ro
+DefaultValue=5
+PDOMapping=0
+
+[1403sub1]
+ParameterName=COB ID used by PDO
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=$NODEID+0x500
+PDOMapping=0
+
+[1403sub2]
+ParameterName=Transmission Type
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1403sub3]
+ParameterName=Inhibit Time
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1403sub5]
+ParameterName=Event Timer
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1600]
+ParameterName=Receive PDO 1 Mapping
+ObjectType=0x9
+SubNumber=9
+
+[1600sub0]
+ParameterName=Number of Entries
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=8
+PDOMapping=0
+
+[1600sub1]
+ParameterName=PDO 1 Mapping for an application object 1
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1600sub2]
+ParameterName=PDO 1 Mapping for an application object 2
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1600sub3]
+ParameterName=PDO 1 Mapping for an application object 3
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1600sub4]
+ParameterName=PDO 1 Mapping for an application object 4
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1600sub5]
+ParameterName=PDO 1 Mapping for an application object 5
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1600sub6]
+ParameterName=PDO 1 Mapping for an application object 6
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1600sub7]
+ParameterName=PDO 1 Mapping for an application object 7
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1600sub8]
+ParameterName=PDO 1 Mapping for an application object 8
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1601]
+ParameterName=Receive PDO 2 Mapping
+ObjectType=0x9
+SubNumber=9
+
+[1601sub0]
+ParameterName=Number of Entries
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=8
+PDOMapping=0
+
+[1601sub1]
+ParameterName=PDO 2 Mapping for an application object 1
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1601sub2]
+ParameterName=PDO 2 Mapping for an application object 2
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1601sub3]
+ParameterName=PDO 2 Mapping for an application object 3
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1601sub4]
+ParameterName=PDO 2 Mapping for an application object 4
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1601sub5]
+ParameterName=PDO 2 Mapping for an application object 5
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1601sub6]
+ParameterName=PDO 2 Mapping for an application object 6
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1601sub7]
+ParameterName=PDO 2 Mapping for an application object 7
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1601sub8]
+ParameterName=PDO 2 Mapping for an application object 8
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1602]
+ParameterName=Receive PDO 3 Mapping
+ObjectType=0x9
+SubNumber=9
+
+[1602sub0]
+ParameterName=Number of Entries
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=8
+PDOMapping=0
+
+[1602sub1]
+ParameterName=PDO 3 Mapping for an application object 1
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1602sub2]
+ParameterName=PDO 3 Mapping for an application object 2
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1602sub3]
+ParameterName=PDO 3 Mapping for an application object 3
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1602sub4]
+ParameterName=PDO 3 Mapping for an application object 4
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1602sub5]
+ParameterName=PDO 3 Mapping for an application object 5
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1602sub6]
+ParameterName=PDO 3 Mapping for an application object 6
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1602sub7]
+ParameterName=PDO 3 Mapping for an application object 7
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1602sub8]
+ParameterName=PDO 3 Mapping for an application object 8
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1603]
+ParameterName=Receive PDO 4 Mapping
+ObjectType=0x9
+SubNumber=9
+
+[1603sub0]
+ParameterName=Number of Entries
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=8
+PDOMapping=0
+
+[1603sub1]
+ParameterName=PDO 4 Mapping for an application object 1
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1603sub2]
+ParameterName=PDO 4 Mapping for an application object 2
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1603sub3]
+ParameterName=PDO 4 Mapping for an application object 3
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1603sub4]
+ParameterName=PDO 4 Mapping for an application object 4
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1603sub5]
+ParameterName=PDO 4 Mapping for an application object 5
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1603sub6]
+ParameterName=PDO 4 Mapping for an application object 6
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1603sub7]
+ParameterName=PDO 4 Mapping for an application object 7
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1603sub8]
+ParameterName=PDO 4 Mapping for an application object 8
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1800]
+ParameterName=Transmit PDO 1 Parameter
+ObjectType=0x8
+SubNumber=5
+
+[1800sub0]
+ParameterName=Highest SubIndex Supported
+ObjectType=0x7
+DataType=0x0005
+AccessType=ro
+DefaultValue=5
+PDOMapping=0
+
+[1800sub1]
+ParameterName=COB ID used by PDO
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=$NODEID+0x180
+PDOMapping=0
+
+[1800sub2]
+ParameterName=Transmission Type
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1800sub3]
+ParameterName=Inhibit Time
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1800sub5]
+ParameterName=Event Timer
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1801]
+ParameterName=Transmit PDO 2 Parameter
+ObjectType=0x8
+SubNumber=5
+
+[1801sub0]
+ParameterName=Highest SubIndex Supported
+ObjectType=0x7
+DataType=0x0005
+AccessType=ro
+DefaultValue=5
+PDOMapping=0
+
+[1801sub1]
+ParameterName=COB ID used by PDO
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=$NODEID+0x280
+PDOMapping=0
+
+[1801sub2]
+ParameterName=Transmission Type
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1801sub3]
+ParameterName=Inhibit Time
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1801sub5]
+ParameterName=Event Timer
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1802]
+ParameterName=Transmit PDO 3 Parameter
+ObjectType=0x8
+SubNumber=5
+
+[1802sub0]
+ParameterName=Highest SubIndex Supported
+ObjectType=0x7
+DataType=0x0005
+AccessType=ro
+DefaultValue=5
+PDOMapping=0
+
+[1802sub1]
+ParameterName=COB ID used by PDO
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=$NODEID+0x380
+PDOMapping=0
+
+[1802sub2]
+ParameterName=Transmission Type
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1802sub3]
+ParameterName=Inhibit Time
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1802sub5]
+ParameterName=Event Timer
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1803]
+ParameterName=Transmit PDO 4 Parameter
+ObjectType=0x8
+SubNumber=5
+
+[1803sub0]
+ParameterName=Highest SubIndex Supported
+ObjectType=0x7
+DataType=0x0005
+AccessType=ro
+DefaultValue=5
+PDOMapping=0
+
+[1803sub1]
+ParameterName=COB ID used by PDO
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=$NODEID+0x480
+PDOMapping=0
+
+[1803sub2]
+ParameterName=Transmission Type
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1803sub3]
+ParameterName=Inhibit Time
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1803sub5]
+ParameterName=Event Timer
+ObjectType=0x7
+DataType=0x0006
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A00]
+ParameterName=Transmit PDO 1 Mapping
+ObjectType=0x9
+SubNumber=9
+
+[1A00sub0]
+ParameterName=Number of Entries
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=8
+PDOMapping=0
+
+[1A00sub1]
+ParameterName=PDO 1 Mapping for a process data variable 1
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A00sub2]
+ParameterName=PDO 1 Mapping for a process data variable 2
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A00sub3]
+ParameterName=PDO 1 Mapping for a process data variable 3
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A00sub4]
+ParameterName=PDO 1 Mapping for a process data variable 4
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A00sub5]
+ParameterName=PDO 1 Mapping for a process data variable 5
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A00sub6]
+ParameterName=PDO 1 Mapping for a process data variable 6
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A00sub7]
+ParameterName=PDO 1 Mapping for a process data variable 7
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A00sub8]
+ParameterName=PDO 1 Mapping for a process data variable 8
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A01]
+ParameterName=Transmit PDO 2 Mapping
+ObjectType=0x9
+SubNumber=9
+
+[1A01sub0]
+ParameterName=Number of Entries
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=8
+PDOMapping=0
+
+[1A01sub1]
+ParameterName=PDO 2 Mapping for a process data variable 1
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A01sub2]
+ParameterName=PDO 2 Mapping for a process data variable 2
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A01sub3]
+ParameterName=PDO 2 Mapping for a process data variable 3
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A01sub4]
+ParameterName=PDO 2 Mapping for a process data variable 4
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A01sub5]
+ParameterName=PDO 2 Mapping for a process data variable 5
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A01sub6]
+ParameterName=PDO 2 Mapping for a process data variable 6
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A01sub7]
+ParameterName=PDO 2 Mapping for a process data variable 7
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A01sub8]
+ParameterName=PDO 2 Mapping for a process data variable 8
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A02]
+ParameterName=Transmit PDO 3 Mapping
+ObjectType=0x9
+SubNumber=9
+
+[1A02sub0]
+ParameterName=Number of Entries
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=8
+PDOMapping=0
+
+[1A02sub1]
+ParameterName=PDO 3 Mapping for a process data variable 1
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A02sub2]
+ParameterName=PDO 3 Mapping for a process data variable 2
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A02sub3]
+ParameterName=PDO 3 Mapping for a process data variable 3
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A02sub4]
+ParameterName=PDO 3 Mapping for a process data variable 4
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A02sub5]
+ParameterName=PDO 3 Mapping for a process data variable 5
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A02sub6]
+ParameterName=PDO 3 Mapping for a process data variable 6
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A02sub7]
+ParameterName=PDO 3 Mapping for a process data variable 7
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A02sub8]
+ParameterName=PDO 3 Mapping for a process data variable 8
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A03]
+ParameterName=Transmit PDO 4 Mapping
+ObjectType=0x9
+SubNumber=9
+
+[1A03sub0]
+ParameterName=Number of Entries
+ObjectType=0x7
+DataType=0x0005
+AccessType=rw
+DefaultValue=8
+PDOMapping=0
+
+[1A03sub1]
+ParameterName=PDO 4 Mapping for a process data variable 1
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A03sub2]
+ParameterName=PDO 4 Mapping for a process data variable 2
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A03sub3]
+ParameterName=PDO 4 Mapping for a process data variable 3
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A03sub4]
+ParameterName=PDO 4 Mapping for a process data variable 4
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A03sub5]
+ParameterName=PDO 4 Mapping for a process data variable 5
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A03sub6]
+ParameterName=PDO 4 Mapping for a process data variable 6
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A03sub7]
+ParameterName=PDO 4 Mapping for a process data variable 7
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[1A03sub8]
+ParameterName=PDO 4 Mapping for a process data variable 8
+ObjectType=0x7
+DataType=0x0007
+AccessType=rw
+DefaultValue=0
+PDOMapping=0
+
+[ManufacturerObjects]
+SupportedObjects=2
+1=0x2000
+2=0x2001
+
+[2000]
+ParameterName=OutVar
+ObjectType=0x7
+DataType=0x0003
+AccessType=rw
+DefaultValue=0
+PDOMapping=1
+
+[2001]
+ParameterName=InVar
+ObjectType=0x7
+DataType=0x0003
+AccessType=rw
+DefaultValue=0
+PDOMapping=1
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_master/canopen@canfestival/master@CanOpenNode/master.od Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,224 @@
+<?xml version="1.0"?>
+<!DOCTYPE PyObject SYSTEM "PyObjects.dtd">
+<PyObject module="node" class="Node" id="173548044">
+<attr name="Profile" type="dict" id="173547276" >
+</attr>
+<attr name="Description" type="string" value="" />
+<attr name="Dictionary" type="dict" id="173547004" >
+ <entry>
+ <key type="numeric" value="4096" />
+ <val type="numeric" value="0" />
+ </entry>
+ <entry>
+ <key type="numeric" value="4097" />
+ <val type="numeric" value="0" />
+ </entry>
+ <entry>
+ <key type="numeric" value="4120" />
+ <val type="list" id="172243596" >
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+</attr>
+<attr name="SpecificMenu" type="list" id="172243852" >
+</attr>
+<attr name="ParamsDictionary" type="dict" id="173551796" >
+</attr>
+<attr name="UserMapping" type="dict" id="173551932" >
+</attr>
+<attr name="DS302" type="dict" id="172206524" >
+ <entry>
+ <key type="numeric" value="7968" />
+ <val type="dict" id="172959508" >
+ <entry>
+ <key type="string" value="need" />
+ <val type="False" value="" />
+ </entry>
+ <entry>
+ <key type="string" value="values" />
+ <val type="list" id="172244812" >
+ <item type="dict" id="173546596" >
+ <entry>
+ <key type="string" value="access" />
+ <val type="string" value="ro" />
+ </entry>
+ <entry>
+ <key type="string" value="pdo" />
+ <val type="False" value="" />
+ </entry>
+ <entry>
+ <key type="string" value="type" />
+ <val type="numeric" value="5" />
+ </entry>
+ <entry>
+ <key type="string" value="name" />
+ <val type="string" value="Number of Entries" />
+ </entry>
+ </item>
+ <item type="dict" id="173552204" >
+ <entry>
+ <key type="string" value="access" />
+ <val type="string" value="rw" />
+ </entry>
+ <entry>
+ <key type="string" value="pdo" />
+ <val type="False" value="" />
+ </entry>
+ <entry>
+ <key type="string" value="type" />
+ <val type="numeric" value="15" />
+ </entry>
+ <entry>
+ <key type="string" value="name" />
+ <val type="string" value="Store DCF for node %d[(sub)]" />
+ </entry>
+ <entry>
+ <key type="string" value="nbmax" />
+ <val type="numeric" value="127" />
+ </entry>
+ </item>
+ </val>
+ </entry>
+ <entry>
+ <key type="string" value="name" />
+ <val type="string" value="Store DCF" />
+ </entry>
+ <entry>
+ <key type="string" value="struct" />
+ <val type="numeric" value="7" />
+ </entry>
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="7969" />
+ <val type="dict" id="173546732" >
+ <entry>
+ <key type="string" value="need" />
+ <val type="False" value="" />
+ </entry>
+ <entry>
+ <key type="string" value="values" />
+ <val type="list" id="172253420" >
+ <item type="dict" id="173552612" >
+ <entry>
+ <key type="string" value="access" />
+ <val type="string" value="ro" />
+ </entry>
+ <entry>
+ <key type="string" value="pdo" />
+ <val type="False" value="" />
+ </entry>
+ <entry>
+ <key type="string" value="type" />
+ <val type="numeric" value="5" />
+ </entry>
+ <entry>
+ <key type="string" value="name" />
+ <val type="string" value="Number of Entries" />
+ </entry>
+ </item>
+ <item type="dict" id="173546324" >
+ <entry>
+ <key type="string" value="access" />
+ <val type="string" value="rw" />
+ </entry>
+ <entry>
+ <key type="string" value="pdo" />
+ <val type="False" value="" />
+ </entry>
+ <entry>
+ <key type="string" value="type" />
+ <val type="numeric" value="2" />
+ </entry>
+ <entry>
+ <key type="string" value="name" />
+ <val type="string" value="Storage Format for Node %d[(sub)]" />
+ </entry>
+ <entry>
+ <key type="string" value="nbmax" />
+ <val type="numeric" value="127" />
+ </entry>
+ </item>
+ </val>
+ </entry>
+ <entry>
+ <key type="string" value="name" />
+ <val type="string" value="Storage Format" />
+ </entry>
+ <entry>
+ <key type="string" value="struct" />
+ <val type="numeric" value="7" />
+ </entry>
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="7970" />
+ <val type="dict" id="173552476" >
+ <entry>
+ <key type="string" value="need" />
+ <val type="False" value="" />
+ </entry>
+ <entry>
+ <key type="string" value="values" />
+ <val type="list" id="172253484" >
+ <item type="dict" id="173552884" >
+ <entry>
+ <key type="string" value="access" />
+ <val type="string" value="ro" />
+ </entry>
+ <entry>
+ <key type="string" value="pdo" />
+ <val type="False" value="" />
+ </entry>
+ <entry>
+ <key type="string" value="type" />
+ <val type="numeric" value="5" />
+ </entry>
+ <entry>
+ <key type="string" value="name" />
+ <val type="string" value="Number of Entries" />
+ </entry>
+ </item>
+ <item type="dict" id="173552748" >
+ <entry>
+ <key type="string" value="access" />
+ <val type="string" value="rw" />
+ </entry>
+ <entry>
+ <key type="string" value="pdo" />
+ <val type="False" value="" />
+ </entry>
+ <entry>
+ <key type="string" value="type" />
+ <val type="numeric" value="15" />
+ </entry>
+ <entry>
+ <key type="string" value="name" />
+ <val type="string" value="Concise DCF for Node %d[(sub)]" />
+ </entry>
+ <entry>
+ <key type="string" value="nbmax" />
+ <val type="numeric" value="127" />
+ </entry>
+ </item>
+ </val>
+ </entry>
+ <entry>
+ <key type="string" value="name" />
+ <val type="string" value="Concise DCF" />
+ </entry>
+ <entry>
+ <key type="string" value="struct" />
+ <val type="numeric" value="7" />
+ </entry>
+ </val>
+ </entry>
+</attr>
+<attr name="ProfileName" type="string" value="None" />
+<attr name="Type" type="string" value="master" />
+<attr name="ID" type="numeric" value="0" />
+<attr name="Name" type="string" value="MasterNode" />
+</PyObject>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_master/canopen@canfestival/master@CanOpenNode/nodelist.cpj Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,7 @@
+[TOPOLOGY]
+NetName=None
+Nodes=0x01
+Node2Present=0x01
+Node2Name=SlaveNode
+Node2DCFName=Slave_0_0.eds
+EDSBaseName=eds
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_master/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,113 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xsi:schemaLocation="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="beremiz" productName="beremiz" productVersion="1" creationDateTime="2008-06-24T18:44:00"/>
+ <contentHeader name="canopen_master" modificationDateTime="2018-09-26T13:31:52" language="en-US">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="0" y="0"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="test_main" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="PLC_OUT" address="%QW0.0.2.8193.0">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="PLC_IN" address="%IW0.0.2.8192.0">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <outVariable localId="1" height="29" width="80" executionOrderId="0" negated="false">
+ <position x="362" y="139"/>
+ <connectionPointIn>
+ <relPosition x="0" y="14"/>
+ <connection refLocalId="4" formalParameter="OUT">
+ <position x="362" y="153"/>
+ <position x="299" y="153"/>
+ </connection>
+ </connectionPointIn>
+ <expression>PLC_OUT</expression>
+ </outVariable>
+ <inVariable localId="2" height="29" width="20">
+ <position x="100" y="115"/>
+ <connectionPointOut>
+ <relPosition x="20" y="14"/>
+ </connectionPointOut>
+ <expression>1</expression>
+ </inVariable>
+ <block localId="4" width="75" height="60" typeName="ADD">
+ <position x="224" y="123"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="2">
+ <position x="224" y="153"/>
+ <position x="183" y="153"/>
+ <position x="183" y="129"/>
+ <position x="120" y="129"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="5">
+ <position x="224" y="173"/>
+ <position x="199" y="173"/>
+ <position x="199" y="201"/>
+ <position x="174" y="201"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="75" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="5" height="29" width="70">
+ <position x="104" y="187"/>
+ <connectionPointOut>
+ <relPosition x="70" y="14"/>
+ </connectionPointOut>
+ <expression>PLC_IN</expression>
+ </inVariable>
+ </FBD>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="conf">
+ <resource name="res">
+ <task name="tache" interval="t#50ms" priority="0">
+ <pouInstance name="toto" typeName="test_main"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_slave/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<BeremizRoot URI_location="LOCAL://">
+ <TargetType/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_slave/canopen@canfestival/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<BaseParams Name="canopen" IEC_Channel="0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_slave/canopen@canfestival/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<CanFestivalInstance/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_slave/canopen@canfestival/slave@CanOpenSlave/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<BaseParams Name="slave" IEC_Channel="0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_slave/canopen@canfestival/slave@CanOpenSlave/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<CanFestivalSlaveNode/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_slave/canopen@canfestival/slave@CanOpenSlave/slave.eds Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,169 @@
+[FileInfo]
+FileName=slave.eds
+FileVersion=1
+FileRevision=1
+EDSVersion=4.0
+Description=
+CreationTime=09:10AM
+CreationDate=10-27-2008
+CreatedBy=CANFestival
+ModificationTime=09:10AM
+ModificationDate=10-27-2008
+ModifiedBy=CANFestival
+
+[DeviceInfo]
+VendorName=CANFestival
+VendorNumber=0x00000000
+ProductName=SlaveNode
+ProductNumber=0x00000000
+RevisionNumber=0x00000000
+BaudRate_10=1
+BaudRate_20=1
+BaudRate_50=1
+BaudRate_125=1
+BaudRate_250=1
+BaudRate_500=1
+BaudRate_800=1
+BaudRate_1000=1
+SimpleBootUpMaster=0
+SimpleBootUpSlave=1
+Granularity=8
+DynamicChannelsSupported=0
+CompactPDO=0
+GroupMessaging=0
+NrOfRXPDO=4
+NrOfTXPDO=4
+LSS_Supported=0
+
+[DummyUsage]
+Dummy0001=0
+Dummy0002=1
+Dummy0003=1
+Dummy0004=1
+Dummy0005=1
+Dummy0006=1
+Dummy0007=1
+
+[Comments]
+Lines=0
+
+[MandatoryObjects]
+SupportedObjects=3
+1=0x1000
+2=0x1001
+3=0x1018
+
+[1000]
+ParameterName=Device Type
+ObjectType=0x7
+DataType=0x0007
+AccessType=ro
+DefaultValue=0
+PDOMapping=0
+
+[1001]
+ParameterName=Error Register
+ObjectType=0x7
+DataType=0x0005
+AccessType=ro
+DefaultValue=0
+PDOMapping=1
+
+[1018]
+ParameterName=Identity
+ObjectType=0x8
+SubNumber=5
+
+[1018sub0]
+ParameterName=Number of Entries
+ObjectType=0x7
+DataType=0x0005
+AccessType=ro
+DefaultValue=4
+PDOMapping=0
+
+[1018sub1]
+ParameterName=Vendor ID
+ObjectType=0x7
+DataType=0x0007
+AccessType=ro
+DefaultValue=0
+PDOMapping=0
+
+[1018sub2]
+ParameterName=Product Code
+ObjectType=0x7
+DataType=0x0007
+AccessType=ro
+DefaultValue=0
+PDOMapping=0
+
+[1018sub3]
+ParameterName=Revision Number
+ObjectType=0x7
+DataType=0x0007
+AccessType=ro
+DefaultValue=0
+PDOMapping=0
+
+[1018sub4]
+ParameterName=Serial Number
+ObjectType=0x7
+DataType=0x0007
+AccessType=ro
+DefaultValue=0
+PDOMapping=0
+
+[OptionalObjects]
+SupportedObjects=1
+1=0x1200
+
+[1200]
+ParameterName=Server SDO Parameter
+ObjectType=0x8
+SubNumber=3
+
+[1200sub0]
+ParameterName=Number of Entries
+ObjectType=0x7
+DataType=0x0005
+AccessType=ro
+DefaultValue=2
+PDOMapping=0
+
+[1200sub1]
+ParameterName=COB ID Client to Server (Receive SDO)
+ObjectType=0x7
+DataType=0x0007
+AccessType=ro
+DefaultValue=$NODEID+0x600
+PDOMapping=0
+
+[1200sub2]
+ParameterName=COB ID Server to Client (Transmit SDO)
+ObjectType=0x7
+DataType=0x0007
+AccessType=ro
+DefaultValue=$NODEID+0x580
+PDOMapping=0
+
+[ManufacturerObjects]
+SupportedObjects=2
+1=0x2000
+2=0x2001
+
+[2000]
+ParameterName=OutVar
+ObjectType=0x7
+DataType=0x0003
+AccessType=rw
+DefaultValue=0
+PDOMapping=1
+
+[2001]
+ParameterName=InVar
+ObjectType=0x7
+DataType=0x0003
+AccessType=rw
+DefaultValue=0
+PDOMapping=1
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_slave/canopen@canfestival/slave@CanOpenSlave/slave.od Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,317 @@
+<?xml version="1.0"?>
+<!DOCTYPE PyObject SYSTEM "PyObjects.dtd">
+<PyObject module="node" class="Node" id="157806348">
+<attr name="Profile" type="dict" id="157588716" >
+</attr>
+<attr name="Description" type="string" value="" />
+<attr name="Dictionary" type="dict" id="157588580" >
+ <entry>
+ <key type="numeric" value="4096" />
+ <val type="numeric" value="0" />
+ </entry>
+ <entry>
+ <key type="numeric" value="4097" />
+ <val type="numeric" value="0" />
+ </entry>
+ <entry>
+ <key type="numeric" value="5122" />
+ <val type="list" id="160478380" >
+ <item type="string" value="{True:"$NODEID+0x%X00"%(base+2),False:0x80000000}[base<4]" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="5123" />
+ <val type="list" id="158303244" >
+ <item type="string" value="{True:"$NODEID+0x%X00"%(base+2),False:0x80000000}[base<4]" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="8192" />
+ <val type="numeric" value="0" />
+ </entry>
+ <entry>
+ <key type="numeric" value="8193" />
+ <val type="numeric" value="0" />
+ </entry>
+ <entry>
+ <key type="numeric" value="5634" />
+ <val type="list" id="158305356" >
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="5635" />
+ <val type="list" id="158305388" >
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="6146" />
+ <val type="list" id="158305420" >
+ <item type="string" value="{True:"$NODEID+0x%X80"%(base+1),False:0x80000000}[base<4]" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="6658" />
+ <val type="list" id="158305932" >
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="6147" />
+ <val type="list" id="158305516" >
+ <item type="string" value="{True:"$NODEID+0x%X80"%(base+1),False:0x80000000}[base<4]" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="4608" />
+ <val type="list" id="158305068" >
+ <item type="string" value=""$NODEID+0x600"" />
+ <item type="string" value=""$NODEID+0x580"" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="4120" />
+ <val type="list" id="158304940" >
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="5120" />
+ <val type="list" id="158051500" >
+ <item type="string" value="{True:"$NODEID+0x%X00"%(base+2),False:0x80000000}[base<4]" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="6659" />
+ <val type="list" id="158052300" >
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="5632" />
+ <val type="list" id="158049740" >
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="5121" />
+ <val type="list" id="158048716" >
+ <item type="string" value="{True:"$NODEID+0x%X00"%(base+2),False:0x80000000}[base<4]" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="6144" />
+ <val type="list" id="158048428" >
+ <item type="string" value="{True:"$NODEID+0x%X80"%(base+1),False:0x80000000}[base<4]" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="5633" />
+ <val type="list" id="158052172" >
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="6656" />
+ <val type="list" id="158052204" >
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="6145" />
+ <val type="list" id="158052108" >
+ <item type="string" value="{True:"$NODEID+0x%X80"%(base+1),False:0x80000000}[base<4]" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="6657" />
+ <val type="list" id="158048588" >
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ <item type="numeric" value="0" />
+ </val>
+ </entry>
+</attr>
+<attr name="SpecificMenu" type="list" id="158048396" >
+</attr>
+<attr name="ParamsDictionary" type="dict" id="157588308" >
+</attr>
+<attr name="UserMapping" type="dict" id="157588852" >
+ <entry>
+ <key type="numeric" value="8192" />
+ <val type="dict" id="157602516" >
+ <entry>
+ <key type="string" value="need" />
+ <val type="False" value="" />
+ </entry>
+ <entry>
+ <key type="string" value="values" />
+ <val type="list" id="158052332" >
+ <item type="dict" id="157586676" >
+ <entry>
+ <key type="string" value="access" />
+ <val type="string" value="rw" />
+ </entry>
+ <entry>
+ <key type="string" value="pdo" />
+ <val type="True" value="" />
+ </entry>
+ <entry>
+ <key type="string" value="type" />
+ <val type="numeric" value="3" />
+ </entry>
+ <entry>
+ <key type="string" value="name" />
+ <val type="string">OutVar</val>
+ </entry>
+ </item>
+ </val>
+ </entry>
+ <entry>
+ <key type="string" value="name" />
+ <val type="string">OutVar</val>
+ </entry>
+ <entry>
+ <key type="string" value="struct" />
+ <val type="numeric" value="1" />
+ </entry>
+ </val>
+ </entry>
+ <entry>
+ <key type="numeric" value="8193" />
+ <val type="dict" id="157535468" >
+ <entry>
+ <key type="string" value="need" />
+ <val type="False" value="" />
+ </entry>
+ <entry>
+ <key type="string" value="values" />
+ <val type="list" id="158305004" >
+ <item type="dict" id="158343620" >
+ <entry>
+ <key type="string" value="access" />
+ <val type="string" value="rw" />
+ </entry>
+ <entry>
+ <key type="string" value="pdo" />
+ <val type="True" value="" />
+ </entry>
+ <entry>
+ <key type="string" value="type" />
+ <val type="numeric" value="3" />
+ </entry>
+ <entry>
+ <key type="string" value="name" />
+ <val type="string">InVar</val>
+ </entry>
+ </item>
+ </val>
+ </entry>
+ <entry>
+ <key type="string" value="name" />
+ <val type="string">InVar</val>
+ </entry>
+ <entry>
+ <key type="string" value="struct" />
+ <val type="numeric" value="1" />
+ </entry>
+ </val>
+ </entry>
+</attr>
+<attr name="DS302" type="dict" id="158328188" >
+</attr>
+<attr name="ProfileName" type="string" value="None" />
+<attr name="Type" type="string" value="slave" />
+<attr name="ID" type="numeric" value="0" />
+<attr name="Name" type="string" value="SlaveNode" />
+</PyObject>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/canopen_slave/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,113 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xsi:schemaLocation="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="beremiz" productName="beremiz" productVersion="1" creationDateTime="2008-06-24T18:44:00"/>
+ <contentHeader name="canopen_slave" modificationDateTime="2018-09-26T13:32:23" language="en-US">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="0" y="0"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="test_main" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="outvar" address="%QW0.0.8192.0">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="invar" address="%IW0.0.8193.0">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <outVariable localId="1" height="29" width="80" executionOrderId="0" negated="false">
+ <position x="362" y="139"/>
+ <connectionPointIn>
+ <relPosition x="0" y="14"/>
+ <connection refLocalId="4" formalParameter="OUT">
+ <position x="362" y="153"/>
+ <position x="299" y="153"/>
+ </connection>
+ </connectionPointIn>
+ <expression>outvar</expression>
+ </outVariable>
+ <inVariable localId="2" height="29" width="20">
+ <position x="100" y="115"/>
+ <connectionPointOut>
+ <relPosition x="20" y="14"/>
+ </connectionPointOut>
+ <expression>1</expression>
+ </inVariable>
+ <block localId="4" width="75" height="60" typeName="ADD">
+ <position x="224" y="123"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="2">
+ <position x="224" y="153"/>
+ <position x="183" y="153"/>
+ <position x="183" y="129"/>
+ <position x="120" y="129"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="5">
+ <position x="224" y="173"/>
+ <position x="187" y="173"/>
+ <position x="187" y="187"/>
+ <position x="150" y="187"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="75" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="5" height="29" width="60">
+ <position x="90" y="173"/>
+ <connectionPointOut>
+ <relPosition x="60" y="14"/>
+ </connectionPointOut>
+ <expression>invar</expression>
+ </inVariable>
+ </FBD>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="conf">
+ <resource name="res">
+ <task name="tache" interval="T#10ms" priority="0">
+ <pouInstance name="toto" typeName="test_main"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/genericmake/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,7 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+ <TargetType>
+ <Generic Command="make -C %(buildpath)s -f ../project_files/Makefile all BEREMIZSRC=%(src)s BEREMIZCFLAGS=%(cflags)s MD5=%(md5)s USE_BEREMIZ=1 FROM_BEREMIZ=1"/>
+ </TargetType>
+ <Libraries Enable_Native_Library="false" Enable_Python_Library="false"/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/genericmake/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,92 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2014-01-19T11:14:47" contentDescription="This example shows how you can customize build process by using 'make'. "/>
+ <contentHeader name="Makefile Example" modificationDateTime="2018-08-24T13:12:10">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="0" y="0"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="program0" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="LocalVara">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="LocalVarb">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <inVariable localId="1" executionOrderId="0" height="30" width="77" negated="false">
+ <position x="52" y="424"/>
+ <connectionPointOut>
+ <relPosition x="77" y="15"/>
+ </connectionPointOut>
+ <expression>LocalVara</expression>
+ </inVariable>
+ <outVariable localId="2" executionOrderId="0" height="30" width="77" negated="false">
+ <position x="167" y="424"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="1">
+ <position x="167" y="439"/>
+ <position x="129" y="439"/>
+ </connection>
+ </connectionPointIn>
+ <expression>LocalVarb</expression>
+ </outVariable>
+ <comment localId="3" height="385" width="760">
+ <position x="32" y="23"/>
+ <content>
+ <xhtml:p><![CDATA[This example shows how you can customize build process by using 'make'.
+
+Sometimes special steps need to be done to build entire project.
+But it's not necessary to create another target in Beremiz every time you need to customize something in build process. Just use for that 'Generic' target and describe all necessary steps in Makefile.
+
+For example, you can
+ - preprocess generated by Beremiz C source files,
+ - do some fancy source code transformation using any tools you want,
+ - use any compiler you want,
+ - call static analyzers,
+ - run integration tests on the project,
+ - upload source code to external build server,
+ - upload to the target and compile it there,
+ - flash/transfer your compiled binary to the target,
+ and much much more.
+]]></xhtml:p>
+ </content>
+ </comment>
+ </FBD>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="resource1">
+ <task name="Tsk" priority="0" interval="T#100ms">
+ <pouInstance name="Inst" typeName="program0"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/genericmake/project_files/Makefile Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,13 @@
+BEREMIZ_OBJS = $(BEREMIZSRC:.c=.o)
+
+all: warn some_binary
+ @echo "*** all done ***"
+
+warn:
+ @echo "*** Sample Makefile, does nothing ***"
+
+some_binary: $(BEREMIZ_OBJS)
+ @echo "* Would link $^ -> $@"
+
+%.o: %.c
+ @echo "* Would compile $< -> $@"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/logging/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,5 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BeremizRoot URI_location="LOCAL://">
+ <TargetType/>
+ <Libraries Enable_Native_Library="true"/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/logging/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,350 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns="http://www.plcopen.org/xml/tc6_0201" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xhtml="http://www.w3.org/1999/xhtml" xsi:schemaLocation="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="Unknown" productName="Generic PLC" productVersion="1" creationDateTime="2013-01-29T14:01:00" contentDescription="This example shows logging functionality in Beremiz. Here are shown two ways of logging: - from IEC PLC program; - from python extension. "/>
+ <contentHeader name="Logging example" modificationDateTime="2018-09-26T13:10:14">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="0" y="0"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="program0" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="beat">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="count">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="LOGGER0">
+ <type>
+ <derived name="LOGGER"/>
+ </type>
+ </variable>
+ <variable name="lvl">
+ <type>
+ <derived name="LOGLEVEL"/>
+ </type>
+ <initialValue>
+ <simpleValue value="INFO"/>
+ </initialValue>
+ </variable>
+ <variable name="Timer">
+ <type>
+ <derived name="TOF"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <inVariable localId="2" height="30" width="218" executionOrderId="0" negated="false">
+ <position x="459" y="365"/>
+ <connectionPointOut>
+ <relPosition x="218" y="15"/>
+ </connectionPointOut>
+ <expression>'IEC side logging: beat #'</expression>
+ </inVariable>
+ <block localId="3" width="59" height="40" typeName="NOT" executionOrderId="0">
+ <position x="241" y="287"/>
+ <inputVariables>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="14" formalParameter="Q">
+ <position x="241" y="317"/>
+ <position x="197" y="317"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="59" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inOutVariable localId="4" height="30" width="60" executionOrderId="0" negatedOut="false" negatedIn="false">
+ <position x="57" y="302"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="3" formalParameter="OUT">
+ <position x="57" y="317"/>
+ <position x="37" y="317"/>
+ <position x="37" y="390"/>
+ <position x="314" y="390"/>
+ <position x="314" y="317"/>
+ <position x="300" y="317"/>
+ </connection>
+ </connectionPointIn>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>beat</expression>
+ </inOutVariable>
+ <block localId="5" width="68" height="98" typeName="ADD" executionOrderId="0">
+ <position x="463" y="403"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="39"/>
+ <connection refLocalId="10" formalParameter="OUT">
+ <position x="463" y="442"/>
+ <position x="452" y="442"/>
+ <position x="452" y="442"/>
+ <position x="455" y="442"/>
+ <position x="455" y="442"/>
+ <position x="439" y="442"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="78"/>
+ <connection refLocalId="6">
+ <position x="463" y="481"/>
+ <position x="438" y="481"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="68" y="39"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inOutVariable localId="6" height="30" width="103" executionOrderId="0" negatedOut="false" negatedIn="false">
+ <position x="335" y="466"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="5" formalParameter="OUT">
+ <position x="335" y="481"/>
+ <position x="320" y="481"/>
+ <position x="320" y="518"/>
+ <position x="544" y="518"/>
+ <position x="544" y="442"/>
+ <position x="531" y="442"/>
+ </connection>
+ </connectionPointIn>
+ <connectionPointOut>
+ <relPosition x="103" y="15"/>
+ </connectionPointOut>
+ <expression>count</expression>
+ </inOutVariable>
+ <block localId="8" width="67" height="144" typeName="CONCAT" executionOrderId="0">
+ <position x="727" y="329"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="51"/>
+ <connection refLocalId="2">
+ <position x="727" y="380"/>
+ <position x="717" y="380"/>
+ <position x="717" y="380"/>
+ <position x="677" y="380"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="113"/>
+ <connection refLocalId="9" formalParameter="OUT">
+ <position x="727" y="442"/>
+ <position x="680" y="442"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="67" y="51"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <block localId="9" width="119" height="40" typeName="INT_TO_STRING" executionOrderId="0">
+ <position x="561" y="412"/>
+ <inputVariables>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="5" formalParameter="OUT">
+ <position x="561" y="442"/>
+ <position x="531" y="442"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="119" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <block localId="10" width="106" height="40" typeName="BOOL_TO_INT" executionOrderId="0">
+ <position x="333" y="412"/>
+ <inputVariables>
+ <variable formalParameter="IN" edge="rising">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="3" formalParameter="OUT">
+ <position x="333" y="442"/>
+ <position x="314" y="442"/>
+ <position x="314" y="317"/>
+ <position x="300" y="317"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="106" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <block localId="11" width="65" height="209" typeName="LOGGER" instanceName="LOGGER0" executionOrderId="0">
+ <position x="907" y="266"/>
+ <inputVariables>
+ <variable formalParameter="TRIG">
+ <connectionPointIn>
+ <relPosition x="0" y="51"/>
+ <connection refLocalId="3" formalParameter="OUT">
+ <position x="907" y="317"/>
+ <position x="300" y="317"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="MSG">
+ <connectionPointIn>
+ <relPosition x="0" y="114"/>
+ <connection refLocalId="8" formalParameter="OUT">
+ <position x="907" y="380"/>
+ <position x="794" y="380"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="LEVEL">
+ <connectionPointIn>
+ <relPosition x="0" y="177"/>
+ <connection refLocalId="12">
+ <position x="907" y="443"/>
+ <position x="880" y="443"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <inVariable localId="12" height="30" width="79" executionOrderId="0" negated="false">
+ <position x="801" y="428"/>
+ <connectionPointOut>
+ <relPosition x="79" y="15"/>
+ </connectionPointOut>
+ <expression>lvl</expression>
+ </inVariable>
+ <block localId="14" typeName="TOF" instanceName="Timer" executionOrderId="0" height="98" width="47">
+ <position x="150" y="278"/>
+ <inputVariables>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="39"/>
+ <connection refLocalId="4">
+ <position x="150" y="317"/>
+ <position x="117" y="317"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="PT">
+ <connectionPointIn>
+ <relPosition x="0" y="78"/>
+ <connection refLocalId="1">
+ <position x="150" y="356"/>
+ <position x="117" y="356"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Q">
+ <connectionPointOut>
+ <relPosition x="47" y="39"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="ET">
+ <connectionPointOut>
+ <relPosition x="47" y="78"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="1" executionOrderId="0" height="30" width="61" negated="false">
+ <position x="56" y="341"/>
+ <connectionPointOut>
+ <relPosition x="61" y="15"/>
+ </connectionPointOut>
+ <expression>T#3s</expression>
+ </inVariable>
+ <comment localId="15" height="249" width="682">
+ <position x="19" y="8"/>
+ <content>
+ <xhtml:p><![CDATA[This example shows logging functionality in Beremiz.
+Here are shown two ways of logging:
+- from IEC PLC program;
+- from python extension.
+
+In IEC PLC program every third second (beat) new message is generated and put in PLC log.
+See function blocks below.
+
+Every 15 seconds status of PLC program is put in PLC log from python extension.
+For more information about logging from python look at 0.x: py_ext_0 implementation in project tree.
+]]></xhtml:p>
+ </content>
+ </comment>
+ </FBD>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="resource1">
+ <task name="task0" priority="0" interval="T#100ms">
+ <pouInstance name="prg" typeName="program0"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/logging/py_ext_0@py_ext/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<BaseParams Name="py_ext_0" IEC_Channel="0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/logging/py_ext_0@py_ext/pyfile.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,41 @@
+<?xml version='1.0' encoding='utf-8'?>
+<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+ <variables/>
+ <globals>
+ <xhtml:p><![CDATA[import threading, time
+
+MyT = None
+Stop = False
+
+def StartLog():
+ global MyT
+ MyT=threading.Thread(target = DoLog)
+ MyT.start()
+
+def DoLog():
+ global Stop
+ while not Stop:
+ PLCObject.LogMessage("Python side Logging (PLC is %s)"%PLCObject.PLCStatus)
+ time.sleep(0.3)
+
+def StopLog():
+ global MyT,Stop
+ Stop=True
+
+_runtime_init.append(StartLog)
+_runtime_cleanup.append(StopLog)
+]]></xhtml:p>
+ </globals>
+ <init>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </init>
+ <cleanup>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </cleanup>
+ <start>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </start>
+ <stop>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </stop>
+</PyFile>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,6 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="LOCAL://">
+ <TargetType>
+ <Linux/>
+ </TargetType>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/modbus_0@modbus/ModbusTCPclient_0@ModbusTCPclient/ModbusRequest_0@ModbusRequest/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="ModbusRequest_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/modbus_0@modbus/ModbusTCPclient_0@ModbusTCPclient/ModbusRequest_0@ModbusRequest/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<ModbusRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" Function="16 - Write Multiple Registers" SlaveID="0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/modbus_0@modbus/ModbusTCPclient_0@ModbusTCPclient/ModbusRequest_1@ModbusRequest/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="1" Name="ModbusRequest_1"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/modbus_0@modbus/ModbusTCPclient_0@ModbusTCPclient/ModbusRequest_1@ModbusRequest/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<ModbusRequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" Function="04 - Read Input Registers" SlaveID="0" Start_Address="0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/modbus_0@modbus/ModbusTCPclient_0@ModbusTCPclient/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="ModbusTCPclient_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/modbus_0@modbus/ModbusTCPclient_0@ModbusTCPclient/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<ModbusTCPclient xmlns:xsd="http://www.w3.org/2001/XMLSchema" Remote_Port_Number="1502"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/modbus_0@modbus/ModbusTCPserver_0@ModbusTCPserver/HoldingRegs@MemoryArea/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="HoldingRegs"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/modbus_0@modbus/ModbusTCPserver_0@ModbusTCPserver/HoldingRegs@MemoryArea/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<MemoryArea xmlns:xsd="http://www.w3.org/2001/XMLSchema" MemoryAreaType="03 - Holding Registers" Nr_of_Channels="1"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/modbus_0@modbus/ModbusTCPserver_0@ModbusTCPserver/InputRegs@MemoryArea/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="1" Name="InputRegs"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/modbus_0@modbus/ModbusTCPserver_0@ModbusTCPserver/InputRegs@MemoryArea/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<MemoryArea xmlns:xsd="http://www.w3.org/2001/XMLSchema" MemoryAreaType="04 - Input Registers"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/modbus_0@modbus/ModbusTCPserver_0@ModbusTCPserver/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="1" Name="ModbusTCPserver_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/modbus_0@modbus/ModbusTCPserver_0@ModbusTCPserver/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<ModbusServerNode xmlns:xsd="http://www.w3.org/2001/XMLSchema" Local_Port_Number="1502" Local_IP_Address="127.0.0.1"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/modbus_0@modbus/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="modbus_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/modbus_0@modbus/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<ModbusRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/modbus/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,314 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="Beremiz" productName="Beremiz" productVersion="1" creationDateTime="2018-07-27T13:19:12"/>
+ <contentHeader name="Modbus" modificationDateTime="2018-07-27T15:43:56">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="0" y="0"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="program0" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="Counter">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="CounterReadBack">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ </localVars>
+ <localVars>
+ <variable name="MasterWriteToReg0" address="%QW0.0.0.0">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="MasterReadFromReg1" address="%IW0.0.1.0">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="SlaveHoldReg0" address="%IW0.1.0.0">
+ <type>
+ <WORD/>
+ </type>
+ </variable>
+ <variable name="SlaveInputReg0" address="%QW0.1.1.0">
+ <type>
+ <WORD/>
+ </type>
+ </variable>
+ </localVars>
+ <localVars>
+ <variable name="CTU0">
+ <type>
+ <derived name="CTU"/>
+ </type>
+ </variable>
+ <variable name="Generator0">
+ <type>
+ <derived name="Generator"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <comment localId="4" height="109" width="350">
+ <position x="102" y="438"/>
+ <content>
+ <xhtml:p><![CDATA[Modbus TCP Master writes counter value to one holding register on Modbus TCP Slave and reads it back from other input register.]]></xhtml:p>
+ </content>
+ </comment>
+ <comment localId="3" height="407" width="680">
+ <position x="21" y="15"/>
+ <content>
+ <xhtml:p><![CDATA[This examples shows how to work with Modbus extension. It uses Modbus TCP, but the same functions are available for Modbus RTU as well. Buth protocols are supported.
+
+Modbus extensions requires native Modbus RTU/TCP library to be installed nearby Beremiz.
+Following directory structure is expected:
+<Parent directory>
+ "beremiz"
+ "Modbus"
+
+If Modbus library is installed elsewhere, then place corresponding paths
+in CFLAGS/LDFLAGS in project settings.
+
+For GNU/Linux to install Modbus library in parent directory run following commands:
+$ hg clone https://bitbucket.org/mjsousa/modbus Modbus
+$ cd Modbus
+$ make
+
+After that Modbus extension is ready to be used in Beremiz projects.]]></xhtml:p>
+ </content>
+ </comment>
+ <block localId="5" typeName="CTU" instanceName="CTU0" executionOrderId="0" height="80" width="52">
+ <position x="346" y="605"/>
+ <inputVariables>
+ <variable formalParameter="CU" edge="rising">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="6" formalParameter="OUT">
+ <position x="346" y="635"/>
+ <position x="303" y="635"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="R">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="PV">
+ <connectionPointIn>
+ <relPosition x="0" y="70"/>
+ <connection refLocalId="7">
+ <position x="346" y="675"/>
+ <position x="324" y="675"/>
+ <position x="324" y="703"/>
+ <position x="302" y="703"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Q">
+ <connectionPointOut>
+ <relPosition x="52" y="30"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="CV">
+ <connectionPointOut>
+ <relPosition x="52" y="50"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <block localId="6" typeName="Generator" instanceName="Generator0" executionOrderId="0" height="60" width="79">
+ <position x="224" y="605"/>
+ <inputVariables>
+ <variable formalParameter="PON">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="1">
+ <position x="224" y="635"/>
+ <position x="154" y="635"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="POFF">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="1">
+ <position x="224" y="655"/>
+ <position x="189" y="655"/>
+ <position x="189" y="635"/>
+ <position x="154" y="635"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="79" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="1" executionOrderId="0" height="30" width="138" negated="false">
+ <position x="16" y="620"/>
+ <connectionPointOut>
+ <relPosition x="138" y="15"/>
+ </connectionPointOut>
+ <expression>T#1s</expression>
+ </inVariable>
+ <inVariable localId="7" executionOrderId="0" height="30" width="138" negated="false">
+ <position x="164" y="688"/>
+ <connectionPointOut>
+ <relPosition x="138" y="15"/>
+ </connectionPointOut>
+ <expression>32767</expression>
+ </inVariable>
+ <inOutVariable localId="2" executionOrderId="0" height="30" width="138" negatedOut="false" negatedIn="false">
+ <position x="544" y="640"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="5" formalParameter="CV">
+ <position x="544" y="655"/>
+ <position x="398" y="655"/>
+ </connection>
+ </connectionPointIn>
+ <connectionPointOut>
+ <relPosition x="138" y="15"/>
+ </connectionPointOut>
+ <expression>Counter</expression>
+ </inOutVariable>
+ <outVariable localId="8" executionOrderId="0" height="30" width="138" negated="false">
+ <position x="762" y="640"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="2">
+ <position x="762" y="655"/>
+ <position x="682" y="655"/>
+ </connection>
+ </connectionPointIn>
+ <expression>MasterWriteToReg0</expression>
+ </outVariable>
+ <inVariable localId="9" executionOrderId="0" height="30" width="152" negated="false">
+ <position x="81" y="747"/>
+ <connectionPointOut>
+ <relPosition x="152" y="15"/>
+ </connectionPointOut>
+ <expression>MasterReadFromReg1</expression>
+ </inVariable>
+ <outVariable localId="10" executionOrderId="0" height="30" width="137" negated="false">
+ <position x="547" y="747"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="9">
+ <position x="547" y="762"/>
+ <position x="233" y="762"/>
+ </connection>
+ </connectionPointIn>
+ <expression>CounterReadBack</expression>
+ </outVariable>
+ <comment localId="11" height="109" width="350">
+ <position x="85" y="825"/>
+ <content>
+ <xhtml:p><![CDATA[Modbus TCP Slave just copies received register value from holding register to input register.]]></xhtml:p>
+ </content>
+ </comment>
+ <inVariable localId="12" executionOrderId="0" height="30" width="152" negated="false">
+ <position x="82" y="970"/>
+ <connectionPointOut>
+ <relPosition x="152" y="15"/>
+ </connectionPointOut>
+ <expression>SlaveHoldReg0</expression>
+ </inVariable>
+ <outVariable localId="13" executionOrderId="0" height="30" width="123" negated="false">
+ <position x="548" y="970"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="12">
+ <position x="548" y="985"/>
+ <position x="234" y="985"/>
+ </connection>
+ </connectionPointIn>
+ <expression>SlaveInputReg0</expression>
+ </outVariable>
+ </FBD>
+ </body>
+ </pou>
+ <pou name="Generator" pouType="functionBlock">
+ <interface>
+ <outputVars>
+ <variable name="OUT">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ </outputVars>
+ <inputVars>
+ <variable name="PON">
+ <type>
+ <TIME/>
+ </type>
+ </variable>
+ <variable name="POFF">
+ <type>
+ <TIME/>
+ </type>
+ </variable>
+ </inputVars>
+ <localVars>
+ <variable name="T1">
+ <type>
+ <derived name="TON"/>
+ </type>
+ </variable>
+ <variable name="T2">
+ <type>
+ <derived name="TOF"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <ST>
+ <xhtml:p><![CDATA[T1( IN := NOT T2.Q, PT := POFF);
+T2( IN := T1.Q, PT := PON);
+OUT := T2.Q;]]></xhtml:p>
+ </ST>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="resource1">
+ <task name="task0" priority="0" interval="T#20ms">
+ <pouInstance name="instance0" typeName="program0"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,5 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="PYRO://127.0.0.1:61427">
+ <TargetType/>
+ <Libraries Enable_SVGHMI_Library="true"/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,1104 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
+ <contentHeader name="Unnamed" modificationDateTime="2022-01-18T11:38:21">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="5" y="5"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="MainStuff" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="TargetPressure">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ <variable name="selection">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ <variable name="Pump0">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="Pump1">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="Pump2">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="Pump3">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="Pump4">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="Pump5">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="Pump6">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="Pump7">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ </localVars>
+ <externalVars>
+ <variable name="CURRENT_PAGE_0">
+ <type>
+ <derived name="HMI_STRING"/>
+ </type>
+ </variable>
+ </externalVars>
+ <localVars>
+ <variable name="PAGESWITCH">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="R_TRIG0">
+ <type>
+ <derived name="R_TRIG"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <block localId="4" typeName="PumpControl" instanceName="Pump0" executionOrderId="0" height="60" width="127">
+ <position x="595" y="50"/>
+ <inputVariables>
+ <variable formalParameter="Pump">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="5">
+ <position x="595" y="100"/>
+ <position x="582" y="100"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
+ <position x="445" y="65"/>
+ <connectionPointOut>
+ <relPosition x="125" y="15"/>
+ </connectionPointOut>
+ <expression>TargetPressure</expression>
+ </inVariable>
+ <block localId="1" typeName="PumpControl" instanceName="Pump1" executionOrderId="0" height="60" width="127">
+ <position x="595" y="280"/>
+ <inputVariables>
+ <variable formalParameter="Pump">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="5">
+ <position x="595" y="330"/>
+ <position x="582" y="330"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <block localId="2" typeName="PumpControl" instanceName="Pump2" executionOrderId="0" height="60" width="127">
+ <position x="595" y="160"/>
+ <inputVariables>
+ <variable formalParameter="Pump">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="5">
+ <position x="595" y="210"/>
+ <position x="582" y="210"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <block localId="3" typeName="PumpControl" instanceName="Pump3" executionOrderId="0" height="60" width="127">
+ <position x="595" y="395"/>
+ <inputVariables>
+ <variable formalParameter="Pump">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="5">
+ <position x="595" y="445"/>
+ <position x="582" y="445"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <block localId="6" typeName="PumpControl" instanceName="Pump4" executionOrderId="0" height="60" width="127">
+ <position x="595" y="515"/>
+ <inputVariables>
+ <variable formalParameter="Pump">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="5">
+ <position x="595" y="565"/>
+ <position x="582" y="565"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <block localId="7" typeName="PumpControl" instanceName="Pump5" executionOrderId="0" height="60" width="127">
+ <position x="595" y="645"/>
+ <inputVariables>
+ <variable formalParameter="Pump">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="11">
+ <position x="595" y="675"/>
+ <position x="570" y="675"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="5">
+ <position x="595" y="695"/>
+ <position x="582" y="695"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <block localId="8" typeName="PumpControl" instanceName="Pump6" executionOrderId="0" height="60" width="127">
+ <position x="595" y="775"/>
+ <inputVariables>
+ <variable formalParameter="Pump">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="5">
+ <position x="595" y="825"/>
+ <position x="582" y="825"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <block localId="9" typeName="PumpControl" instanceName="Pump7" executionOrderId="0" height="60" width="127">
+ <position x="595" y="895"/>
+ <inputVariables>
+ <variable formalParameter="Pump">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="10">
+ <position x="595" y="925"/>
+ <position x="560" y="925"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="5">
+ <position x="595" y="945"/>
+ <position x="582" y="945"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <inVariable localId="10" executionOrderId="0" height="25" width="20" negated="false">
+ <position x="540" y="915"/>
+ <connectionPointOut>
+ <relPosition x="20" y="10"/>
+ </connectionPointOut>
+ <expression>0</expression>
+ </inVariable>
+ <inVariable localId="11" executionOrderId="0" height="25" width="20" negated="false">
+ <position x="550" y="665"/>
+ <connectionPointOut>
+ <relPosition x="20" y="10"/>
+ </connectionPointOut>
+ <expression>0</expression>
+ </inVariable>
+ <inOutVariable localId="12" executionOrderId="0" height="25" width="125" negatedOut="false" negatedIn="false">
+ <position x="410" y="205"/>
+ <connectionPointIn>
+ <relPosition x="0" y="10"/>
+ <connection refLocalId="13" formalParameter="OUT">
+ <position x="410" y="215"/>
+ <position x="385" y="215"/>
+ </connection>
+ </connectionPointIn>
+ <connectionPointOut>
+ <relPosition x="125" y="10"/>
+ </connectionPointOut>
+ <expression>CURRENT_PAGE_0</expression>
+ </inOutVariable>
+ <block localId="13" typeName="SEL" executionOrderId="0" height="80" width="65">
+ <position x="320" y="185"/>
+ <inputVariables>
+ <variable formalParameter="G">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="17" formalParameter="Q">
+ <position x="320" y="215"/>
+ <position x="280" y="215"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN0">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="12">
+ <position x="320" y="235"/>
+ <position x="60" y="235"/>
+ <position x="60" y="155"/>
+ <position x="550" y="155"/>
+ <position x="550" y="215"/>
+ <position x="535" y="215"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="70"/>
+ <connection refLocalId="16">
+ <position x="320" y="255"/>
+ <position x="290" y="255"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="15" executionOrderId="0" height="25" width="90" negated="false">
+ <position x="100" y="205"/>
+ <connectionPointOut>
+ <relPosition x="90" y="10"/>
+ </connectionPointOut>
+ <expression>PAGESWITCH</expression>
+ </inVariable>
+ <inVariable localId="16" executionOrderId="0" height="25" width="220" negated="false">
+ <position x="70" y="245"/>
+ <connectionPointOut>
+ <relPosition x="220" y="10"/>
+ </connectionPointOut>
+ <expression>'!RelativePageTest@/PUMP2'</expression>
+ </inVariable>
+ <block localId="17" typeName="R_TRIG" instanceName="R_TRIG0" executionOrderId="0" height="40" width="60">
+ <position x="220" y="185"/>
+ <inputVariables>
+ <variable formalParameter="CLK">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="15">
+ <position x="220" y="215"/>
+ <position x="190" y="215"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Q">
+ <connectionPointOut>
+ <relPosition x="60" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ </FBD>
+ </body>
+ </pou>
+ <pou name="PumpControl" pouType="functionBlock">
+ <interface>
+ <inputVars>
+ <variable name="Pump">
+ <type>
+ <derived name="HMI_NODE"/>
+ </type>
+ <initialValue>
+ <simpleValue value="1"/>
+ </initialValue>
+ </variable>
+ </inputVars>
+ <localVars>
+ <variable name="Pressure">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ </localVars>
+ <inputVars>
+ <variable name="TargetPressure">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ </inputVars>
+ <localVars>
+ <variable name="Sloth">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ <variable name="boolout">
+ <type>
+ <derived name="HMI_BOOL"/>
+ </type>
+ </variable>
+ <variable name="boolin">
+ <type>
+ <derived name="HMI_BOOL"/>
+ </type>
+ <initialValue>
+ <simpleValue value="True"/>
+ </initialValue>
+ </variable>
+ <variable name="strout">
+ <type>
+ <derived name="HMI_STRING"/>
+ </type>
+ </variable>
+ <variable name="strin">
+ <type>
+ <derived name="HMI_STRING"/>
+ </type>
+ <initialValue>
+ <simpleValue value="blup"/>
+ </initialValue>
+ </variable>
+ <variable name="floating">
+ <type>
+ <derived name="HMI_REAL"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
+ <position x="150" y="100"/>
+ <connectionPointOut>
+ <relPosition x="125" y="15"/>
+ </connectionPointOut>
+ <expression>TargetPressure</expression>
+ </inVariable>
+ <inOutVariable localId="4" executionOrderId="0" height="30" width="60" negatedOut="false" negatedIn="false">
+ <position x="510" y="80"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="6" formalParameter="OUT">
+ <position x="510" y="95"/>
+ <position x="470" y="95"/>
+ </connection>
+ </connectionPointIn>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>Sloth</expression>
+ </inOutVariable>
+ <block localId="6" typeName="ADD" executionOrderId="0" height="60" width="65">
+ <position x="405" y="65"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="4">
+ <position x="405" y="95"/>
+ <position x="385" y="95"/>
+ <position x="385" y="50"/>
+ <position x="580" y="50"/>
+ <position x="580" y="95"/>
+ <position x="570" y="95"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="7" formalParameter="OUT">
+ <position x="405" y="115"/>
+ <position x="360" y="115"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="1" executionOrderId="0" height="30" width="75" negated="false">
+ <position x="150" y="135"/>
+ <connectionPointOut>
+ <relPosition x="75" y="15"/>
+ </connectionPointOut>
+ <expression>Pressure</expression>
+ </inVariable>
+ <block localId="7" typeName="SUB" executionOrderId="0" height="60" width="65">
+ <position x="295" y="85"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="5">
+ <position x="295" y="115"/>
+ <position x="275" y="115"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="1">
+ <position x="295" y="135"/>
+ <position x="285" y="135"/>
+ <position x="285" y="150"/>
+ <position x="225" y="150"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="2" executionOrderId="0" height="30" width="60" negated="false">
+ <position x="240" y="190"/>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>Sloth</expression>
+ </inVariable>
+ <outVariable localId="3" executionOrderId="0" height="30" width="75" negated="false">
+ <position x="435" y="205"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="8" formalParameter="OUT">
+ <position x="435" y="220"/>
+ <position x="410" y="220"/>
+ </connection>
+ </connectionPointIn>
+ <expression>Pressure</expression>
+ </outVariable>
+ <block localId="8" typeName="DIV" executionOrderId="0" height="60" width="65">
+ <position x="345" y="190"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="2">
+ <position x="345" y="220"/>
+ <position x="335" y="220"/>
+ <position x="335" y="205"/>
+ <position x="300" y="205"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="9">
+ <position x="345" y="240"/>
+ <position x="300" y="240"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="9" executionOrderId="0" height="30" width="60" negated="false">
+ <position x="240" y="225"/>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>100</expression>
+ </inVariable>
+ <block localId="10" typeName="CONCAT" executionOrderId="0" height="60" width="65">
+ <position x="360" y="345"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="13" formalParameter="OUT">
+ <position x="360" y="375"/>
+ <position x="330" y="375"/>
+ <position x="330" y="332"/>
+ <position x="440" y="332"/>
+ <position x="440" y="300"/>
+ <position x="430" y="300"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="14">
+ <position x="360" y="395"/>
+ <position x="322" y="395"/>
+ <position x="322" y="400"/>
+ <position x="285" y="400"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <outVariable localId="11" executionOrderId="0" height="30" width="58" negated="false">
+ <position x="495" y="355"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="10" formalParameter="OUT">
+ <position x="495" y="370"/>
+ <position x="450" y="370"/>
+ <position x="450" y="375"/>
+ <position x="425" y="375"/>
+ </connection>
+ </connectionPointIn>
+ <expression>strout</expression>
+ </outVariable>
+ <inVariable localId="12" executionOrderId="0" height="30" width="125" negated="false">
+ <position x="145" y="285"/>
+ <connectionPointOut>
+ <relPosition x="125" y="15"/>
+ </connectionPointOut>
+ <expression>TargetPressure</expression>
+ </inVariable>
+ <block localId="13" typeName="INT_TO_STRING" executionOrderId="0" height="40" width="115">
+ <position x="315" y="270"/>
+ <inputVariables>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="12">
+ <position x="315" y="300"/>
+ <position x="270" y="300"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="115" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="14" executionOrderId="0" height="30" width="50" negated="false">
+ <position x="235" y="385"/>
+ <connectionPointOut>
+ <relPosition x="50" y="15"/>
+ </connectionPointOut>
+ <expression>strin</expression>
+ </inVariable>
+ <inVariable localId="15" executionOrderId="0" height="30" width="60" negated="false">
+ <position x="690" y="210"/>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>boolin</expression>
+ </inVariable>
+ <outVariable localId="16" executionOrderId="0" height="30" width="70" negated="false">
+ <position x="915" y="240"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="17" formalParameter="OUT">
+ <position x="915" y="255"/>
+ <position x="880" y="255"/>
+ </connection>
+ </connectionPointIn>
+ <expression>boolout</expression>
+ </outVariable>
+ <block localId="17" typeName="AND" executionOrderId="0" height="60" width="65">
+ <position x="815" y="225"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="15">
+ <position x="815" y="255"/>
+ <position x="762" y="255"/>
+ <position x="762" y="225"/>
+ <position x="750" y="225"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="21" formalParameter="OUT">
+ <position x="815" y="275"/>
+ <position x="750" y="275"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="18" executionOrderId="0" height="30" width="75" negated="false">
+ <position x="455" y="260"/>
+ <connectionPointOut>
+ <relPosition x="75" y="15"/>
+ </connectionPointOut>
+ <expression>Pressure</expression>
+ </inVariable>
+ <block localId="19" typeName="MOD" executionOrderId="0" height="60" width="65">
+ <position x="585" y="245"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="18">
+ <position x="585" y="275"/>
+ <position x="530" y="275"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="20">
+ <position x="585" y="295"/>
+ <position x="555" y="295"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="20" executionOrderId="0" height="30" width="20" negated="false">
+ <position x="535" y="280"/>
+ <connectionPointOut>
+ <relPosition x="20" y="15"/>
+ </connectionPointOut>
+ <expression>2</expression>
+ </inVariable>
+ <block localId="21" typeName="EQ" executionOrderId="0" height="60" width="65">
+ <position x="685" y="245"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="19" formalParameter="OUT">
+ <position x="685" y="275"/>
+ <position x="650" y="275"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="22">
+ <position x="685" y="295"/>
+ <position x="670" y="295"/>
+ <position x="670" y="330"/>
+ <position x="650" y="330"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="22" executionOrderId="0" height="30" width="20" negated="false">
+ <position x="630" y="315"/>
+ <connectionPointOut>
+ <relPosition x="20" y="15"/>
+ </connectionPointOut>
+ <expression>0</expression>
+ </inVariable>
+ <outVariable localId="23" executionOrderId="0" height="25" width="75" negated="false">
+ <position x="935" y="120"/>
+ <connectionPointIn>
+ <relPosition x="0" y="10"/>
+ <connection refLocalId="25" formalParameter="OUT">
+ <position x="935" y="130"/>
+ <position x="922" y="130"/>
+ <position x="922" y="110"/>
+ <position x="910" y="110"/>
+ </connection>
+ </connectionPointIn>
+ <expression>floating</expression>
+ </outVariable>
+ <inVariable localId="24" executionOrderId="0" height="30" width="60" negated="false">
+ <position x="615" y="65"/>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>Sloth</expression>
+ </inVariable>
+ <block localId="25" typeName="DIV" executionOrderId="0" height="60" width="65">
+ <position x="845" y="80"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="27" formalParameter="OUT">
+ <position x="845" y="110"/>
+ <position x="822" y="110"/>
+ <position x="822" y="80"/>
+ <position x="800" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="26">
+ <position x="845" y="130"/>
+ <position x="810" y="130"/>
+ <position x="810" y="135"/>
+ <position x="800" y="135"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="26" executionOrderId="0" height="30" width="90" negated="false">
+ <position x="710" y="120"/>
+ <connectionPointOut>
+ <relPosition x="90" y="15"/>
+ </connectionPointOut>
+ <expression>REAL#100.0</expression>
+ </inVariable>
+ <block localId="27" typeName="INT_TO_REAL" executionOrderId="0" height="40" width="100">
+ <position x="700" y="50"/>
+ <inputVariables>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="24">
+ <position x="700" y="80"/>
+ <position x="675" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="100" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <block localId="28" typeName="EQ" executionOrderId="0" height="60" width="65">
+ <position x="410" y="430"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="36">
+ <position x="418" y="460"/>
+ <position x="401" y="460"/>
+ <position x="401" y="435"/>
+ <position x="380" y="435"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="29">
+ <position x="410" y="480"/>
+ <position x="367" y="480"/>
+ <position x="367" y="475"/>
+ <position x="325" y="475"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="29" executionOrderId="0" height="30" width="20" negated="false">
+ <position x="305" y="460"/>
+ <connectionPointOut>
+ <relPosition x="20" y="15"/>
+ </connectionPointOut>
+ <expression>0</expression>
+ </inVariable>
+ <inVariable localId="32" executionOrderId="0" height="30" width="20" negated="false">
+ <position x="765" y="505"/>
+ <connectionPointOut>
+ <relPosition x="20" y="15"/>
+ </connectionPointOut>
+ <expression>0</expression>
+ </inVariable>
+ <outVariable localId="31" executionOrderId="0" height="30" width="75" negated="false">
+ <position x="925" y="460"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="33" formalParameter="OUT">
+ <position x="925" y="475"/>
+ <position x="890" y="475"/>
+ </connection>
+ </connectionPointIn>
+ <expression>Sloth</expression>
+ </outVariable>
+ <block localId="33" typeName="MUX" executionOrderId="0" height="80" width="65">
+ <position x="825" y="445"/>
+ <inputVariables>
+ <variable formalParameter="K">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="34" formalParameter="OUT">
+ <position x="825" y="475"/>
+ <position x="685" y="475"/>
+ <position x="685" y="465"/>
+ <position x="675" y="465"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN0">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="30">
+ <position x="825" y="495"/>
+ <position x="800" y="495"/>
+ <position x="800" y="485"/>
+ <position x="790" y="485"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="70"/>
+ <connection refLocalId="32">
+ <position x="825" y="515"/>
+ <position x="795" y="515"/>
+ <position x="795" y="520"/>
+ <position x="785" y="520"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="30" executionOrderId="0" height="30" width="75" negated="false">
+ <position x="715" y="470"/>
+ <connectionPointOut>
+ <relPosition x="75" y="15"/>
+ </connectionPointOut>
+ <expression>Sloth</expression>
+ </inVariable>
+ <block localId="34" typeName="BOOL_TO_SINT" executionOrderId="0" height="40" width="110">
+ <position x="565" y="435"/>
+ <inputVariables>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="28" formalParameter="OUT">
+ <position x="565" y="465"/>
+ <position x="520" y="465"/>
+ <position x="520" y="460"/>
+ <position x="475" y="460"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="110" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <connector name="Connection0" localId="35" height="25" width="125">
+ <position x="400" y="140"/>
+ <connectionPointIn>
+ <relPosition x="0" y="10"/>
+ <connection refLocalId="7" formalParameter="OUT">
+ <position x="400" y="150"/>
+ <position x="375" y="150"/>
+ <position x="375" y="115"/>
+ <position x="360" y="115"/>
+ </connection>
+ </connectionPointIn>
+ </connector>
+ <continuation name="Connection0" localId="36" height="25" width="125">
+ <position x="255" y="425"/>
+ <connectionPointOut>
+ <relPosition x="125" y="10"/>
+ </connectionPointOut>
+ </continuation>
+ </FBD>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="resource1">
+ <task name="task0" priority="0" interval="T#20ms">
+ <pouInstance name="instance0" typeName="MainStuff"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi/py_ext_0@py_ext/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="1" Name="py_ext_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi/py_ext_0@py_ext/pyfile.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,99 @@
+<?xml version='1.0' encoding='utf-8'?>
+<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+ <variables>
+ <variable name="AlarmNotify" type="HMI_INT"/>
+ <variable name="SendAlarm" type="HMI_INT" onchange="TriggerAlarm"/>
+ <variable name="AlarmText" type="HMI_STRING" initial="'POS'"/>
+ <variable name="AlarmStatus" type="HMI_STRING" initial="'alarm'"/>
+ </variables>
+ <globals>
+ <xhtml:p><![CDATA[
+from twisted.web.resource import Resource
+import json, time, random, collections
+
+Alarms = []
+AlarmIndex = {}
+lastid = 0
+
+def TriggerAlarm(changed_var_name):
+ global Alarms, lastid
+ new_entry = [time.time(), PLCGlobals.AlarmText, PLCGlobals.AlarmStatus, lastid]
+ Alarms.append(new_entry)
+ AlarmIndex[lastid] = new_entry
+ lastid = lastid + 1
+ PLCGlobals.AlarmNotify = random.randint(0, 4294967296)
+
+class AlarmJsonResource(Resource):
+ def render_GET(self, request):
+ return ''
+
+ def render_POST(self, request):
+ newstr = request.content.getvalue()
+ newdata = json.loads(newstr)
+ args = newdata[u'args']
+ range_feedback = newdata[u'range']
+ slider_position = newdata[u'position']
+ visible = newdata[u'visible']
+ extra = newdata[u'extra']
+ options = newdata[u'options']
+
+ if len(options) == 1 :
+ action, = options
+ if action == "action_reset":
+ del Alarms[:]
+ AlarmIndex.clear()
+ elif len(options) == 2 :
+ action, alarmid = options
+ if action == "onClick[acknowledge]":
+ AlarmIndex[int(alarmid)][2] = "ack"
+
+ answer = self.renderTable(range_feedback, slider_position, visible, extra)
+ janswer = json.dumps(answer)
+ return janswer
+
+ def renderTable(self, old_range, old_position, visible, extra):
+ if len(extra) > 0 and extra[0] != "":
+ fAlarms = [alrm for alrm in Alarms if alrm[1].find(extra[0])!=-1]
+ else:
+ fAlarms = Alarms[:]
+ fAlarms.reverse()
+ new_range = len(fAlarms)
+ delta = new_range - visible
+ new_position = 0 if delta <= 0 else delta if old_position > delta else old_position
+ new_visible = new_range if delta <= 0 else visible
+
+ visible_alarms = []
+ for ts, text, status, alarmid in fAlarms[new_position:new_position + new_visible]:
+ visible_alarms.append({
+ "time": time.ctime(ts),
+ "text": text, # TODO translate text
+ "status": status,
+ "alarmid": alarmid
+ })
+
+ return new_range, new_position, visible_alarms
+
+
+]]></xhtml:p>
+ </globals>
+ <init>
+ <xhtml:p><![CDATA[
+]]></xhtml:p>
+ </init>
+ <cleanup>
+ <xhtml:p><![CDATA[
+]]></xhtml:p>
+ </cleanup>
+ <start>
+ <xhtml:p><![CDATA[
+
+AddPathToSVGHMIServers("alarms", AlarmJsonResource)
+
+
+]]></xhtml:p>
+ </start>
+ <stop>
+ <xhtml:p><![CDATA[
+]]></xhtml:p>
+ </stop>
+</PyFile>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi/svghmi_0@svghmi/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="svghmi_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi/svghmi_0@svghmi/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<SVGHMI xmlns:xsd="http://www.w3.org/2001/XMLSchema" OnWatchdog="echo Watchdog for {name} !" WatchdogInitial="10" WatchdogInterval="5" EnableWatchdog="true" Path="{name}" OnStart="chromium --disable-gpu --new-window --user-data-dir=. {url}"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi/svghmi_0@svghmi/svghmi.svg Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,8357 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
+ sodipodi:docname="svghmi.svg"
+ id="hmi0"
+ version="1.1"
+ viewBox="0 0 1280 720"
+ height="720"
+ width="1280">
+ <metadata
+ id="metadata4542">
+ <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>
+ <defs
+ id="defs2">
+ <linearGradient
+ id="linearGradient34303"
+ osb:paint="solid">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop34301" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient20537"
+ osb:paint="solid">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop20535" />
+ </linearGradient>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker1971"
+ 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path1969"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker1656"
+ 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path1654"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient962">
+ <stop
+ style="stop-color:#ff3000;stop-opacity:1;"
+ offset="0"
+ id="stop958" />
+ <stop
+ style="stop-color:#0022ff;stop-opacity:1"
+ offset="1"
+ id="stop960" />
+ </linearGradient>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend"
+ style="overflow:visible"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ inkscape:connector-curvature="0"
+ id="path895"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient962"
+ id="linearGradient964"
+ x1="113.38908"
+ y1="-62.210247"
+ x2="113.38908"
+ y2="4.0725975"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.5,0,0,0.5,73.144796,-1.4471993)" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:document-units="px"
+ inkscape:current-layer="hmi0"
+ showgrid="false"
+ units="px"
+ inkscape:zoom="0.40092402"
+ inkscape:cx="-239.69441"
+ inkscape:cy="-2504.0401"
+ inkscape:window-width="3840"
+ inkscape:window-height="2096"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:snap-global="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g7994"
+ id="use7996"
+ transform="translate(1480,800)"
+ width="100%"
+ height="100%"
+ inkscape:label="HMI:Page:RelativePageTest@/PUMP0" />
+ <rect
+ sodipodi:insensitive="true"
+ inkscape:label="HMI:Page:Conf"
+ y="780"
+ x="0"
+ height="720"
+ width="1280"
+ id="rect1016"
+ style="color:#000000;fill:#000000" />
+ <g
+ id="g1082"
+ inkscape:label="HMI:Jump:Home"
+ transform="translate(-940,-558)">
+ <g
+ id="g1152"
+ inkscape:label="button">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
+ id="rect1022"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cssssccc" />
+ </g>
+ <g
+ id="g1149"
+ inkscape:label="text">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="1436.9814"
+ id="home_jmp"
+ inkscape:label="home_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan1028"
+ x="1090.7626"
+ y="1436.9814"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
+ </g>
+ </g>
+ <rect
+ style="color:#000000;fill:#4d4d4d"
+ id="page0"
+ width="1280"
+ height="720"
+ x="0"
+ y="0"
+ inkscape:label="HMI:Page:Home" />
+ <g
+ id="g1077"
+ inkscape:label="HMI:Jump:Conf"
+ transform="matrix(0.57180538,0,0,0.57180538,-373.64055,248.51305)">
+ <g
+ id="g1159"
+ inkscape:label="button">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1020"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ id="g1156"
+ inkscape:label="text">
+ <text
+ inkscape:label="setting_jmp"
+ id="setting_jmp"
+ y="656.98151"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="656.98151"
+ x="1090.7626"
+ id="tspan1024"
+ sodipodi:role="line">Settings</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g84"
+ inkscape:label="HMI:Input@/TARGETPRESSURE,0,100"
+ transform="matrix(0.35865594,0,0,0.35865594,22.072155,63.074421)">
+ <text
+ inkscape:label="value"
+ id="text5151"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan5149"
+ sodipodi:role="line">8888</tspan></text>
+ <path
+ transform="scale(1,-1)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path89"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="14.956363"
+ inkscape:label="-100" />
+ <path
+ inkscape:label="-10"
+ inkscape:transform-center-y="7.4781812"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path88"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="scale(1,-1)" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect85"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <path
+ inkscape:label="+100"
+ inkscape:transform-center-y="-14.956361"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path87"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path86"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-7.4781804"
+ inkscape:label="+10" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path91"
+ sodipodi:sides="4"
+ sodipodi:cx="80.740723"
+ sodipodi:cy="165.17262"
+ sodipodi:r1="57.015106"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.77793027"
+ sodipodi:arg2="1.5633284"
+ inkscape:flatsided="true"
+ inkscape:rounded="-0.65084865"
+ inkscape:randomized="0"
+ d="M 121.35644,205.1862 C 158.18649,167.80191 3.342862,168.95829 40.72715,205.78834 78.111437,242.61839 76.95506,87.774762 40.125008,125.15905 3.2949549,162.54334 158.13858,161.38696 120.7543,124.55691 83.370008,87.726855 84.526385,242.57048 121.35644,205.1862 Z"
+ inkscape:transform-center-y="-14.956361"
+ inkscape:label="=0" />
+ </g>
+ <text
+ inkscape:label="HMI:Display@/PUMP0/PRESSURE"
+ id="text823"
+ y="141.34827"
+ x="293.33374"
+ style="font-style:normal;font-weight:normal;font-size:57.38494873px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.35865593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.35865593px"
+ y="141.34827"
+ x="293.33374"
+ id="tspan821"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ id="g4523"
+ transform="matrix(2.1611542,0,0,2.1611542,142.76714,468.92423)"
+ inkscape:label="HMI:Meter@/PUMP0/SLOTH">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3ee800;stroke-width:26.45833397;stroke-miterlimit:4;stroke-dasharray:2.64583333, 2.64583333;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path4499"
+ sodipodi:type="arc"
+ sodipodi:cx="128.02208"
+ sodipodi:cy="2.2017097"
+ sodipodi:rx="64.411957"
+ sodipodi:ry="64.411957"
+ sodipodi:start="3.1415927"
+ sodipodi:end="4.712389"
+ d="M 63.610123,2.2017068 A 64.411957,64.411957 0 0 1 128.02208,-62.210247"
+ sodipodi:open="true"
+ inkscape:label="range" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#ff3000;stroke-width:2.96333337;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0, 32.59666667;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-end:url(#Arrow2Lend)"
+ d="M 130.96206,4.0725977 79.111776,-41.363223"
+ id="path4501"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ inkscape:label="needle" />
+ <text
+ inkscape:label="min"
+ id="text4505"
+ y="4.9187088"
+ x="49.132977"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px"
+ y="4.9187088"
+ x="49.132977"
+ id="tspan4503"
+ sodipodi:role="line">0</tspan></text>
+ <text
+ inkscape:label="max"
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="127.48073"
+ y="-78.144218"
+ id="text4509"><tspan
+ sodipodi:role="line"
+ id="tspan4507"
+ x="127.48073"
+ y="-78.144218"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px">10000</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="124.77896"
+ y="1.1408259"
+ id="text4521"
+ inkscape:label="unit"><tspan
+ sodipodi:role="line"
+ x="124.77896"
+ y="1.1408259"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ id="tspan4519">bar</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:14.34623718px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.35865593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="114.11434"
+ y="90.742165"
+ id="text827"
+ inkscape:label="setpoint_label"><tspan
+ sodipodi:role="line"
+ id="tspan825"
+ x="114.11434"
+ y="90.742165"
+ style="stroke-width:0.35865593px">SetPoint</tspan></text>
+ <text
+ id="text831"
+ y="90.742165"
+ x="344.50876"
+ style="font-style:normal;font-weight:normal;font-size:14.34623718px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.35865593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="actual_label"><tspan
+ y="90.742165"
+ x="344.50876"
+ id="tspan829"
+ sodipodi:role="line"
+ style="stroke-width:0.35865593px">Actual</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.57180536px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="206.73413"
+ y="336.90073"
+ id="text4497"
+ inkscape:label="pressure_label"><tspan
+ sodipodi:role="line"
+ id="tspan4495"
+ x="206.73413"
+ y="336.90073"
+ style="fill:#ff6600;stroke-width:0.57180536px">Pressure</tspan></text>
+ <g
+ inkscape:label="HMI:Meter@/PUMP0/SLOTH"
+ transform="matrix(7.5590552,0,0,7.5590552,-244.3956,1321.2434)"
+ id="g110">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="M 113.38908,2.2017068 V -62.210247"
+ id="path90"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ inkscape:label="range" />
+ <path
+ inkscape:label="needle"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path92"
+ d="M 113.38908,4.0725977 V -62.210247"
+ style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient964);stroke-width:13.22916698;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="115.07632"
+ y="9.3424692"
+ id="text96"
+ inkscape:label="min"><tspan
+ sodipodi:role="line"
+ id="tspan94"
+ x="115.07632"
+ y="9.3424692"
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
+ <text
+ id="text100"
+ y="-64.195457"
+ x="113.27539"
+ style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="max"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="-64.195457"
+ x="113.27539"
+ id="tspan98"
+ sodipodi:role="line">10000</tspan></text>
+ <text
+ inkscape:label="unit"
+ id="text108"
+ y="-9.4425077"
+ x="140.65398"
+ style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan106"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="-9.4425077"
+ x="140.65398"
+ sodipodi:role="line">€£$¥</tspan></text>
+ </g>
+ <g
+ inkscape:label="HMI:Input@/TARGETPRESSURE"
+ id="g991"
+ transform="matrix(0.5,0,0,0.5,230.11026,885.7162)"
+ style="stroke-width:2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text977"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan975"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:2px">8888</tspan></text>
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect983"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ id="g1086"
+ inkscape:label="=0"
+ transform="translate(-416.52022,170.47452)"
+ style="stroke-width:2">
+ <path
+ inkscape:connector-curvature="0"
+ id="path989"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1048"
+ y="111.05016"
+ x="733.58197"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="733.58197"
+ id="tspan1046"
+ sodipodi:role="line">→0←</tspan></text>
+ </g>
+ <g
+ id="g1091"
+ inkscape:label="-10"
+ transform="translate(-416.52022,170.47452)"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-x="14.956371"
+ inkscape:transform-center-y="-3.6154501e-05"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path981"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="633.09552"
+ y="111.05016"
+ id="text1059"><tspan
+ sodipodi:role="line"
+ id="tspan1057"
+ x="633.09552"
+ y="111.05016"
+ style="stroke-width:1px">-10</tspan></text>
+ </g>
+ <g
+ id="g1096"
+ inkscape:label="-100"
+ transform="translate(-416.52022,170.47452)"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-x="14.956364"
+ transform="rotate(-90,746.45698,-44.543641)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path979"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="-5.9989963e-06" />
+ <text
+ id="text1063"
+ y="111.05016"
+ x="537.25018"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="537.25018"
+ id="tspan1061"
+ sodipodi:role="line">-100</tspan></text>
+ </g>
+ <g
+ id="g1076"
+ inkscape:label="+100"
+ transform="translate(-416.52022,170.47452)"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-x="-14.956365"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-y="-5.5023185e-06"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path985"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <text
+ id="text1067"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan1065"
+ sodipodi:role="line">+100</tspan></text>
+ </g>
+ <g
+ id="g1081"
+ inkscape:label="+10"
+ transform="translate(-416.52022,170.47452)"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-x="-14.956349"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path987"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.3040441e-05" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="842.71497"
+ y="111.05016"
+ id="text1071"><tspan
+ sodipodi:role="line"
+ id="tspan1069"
+ x="842.71497"
+ y="111.05016"
+ style="stroke-width:1px">+10</tspan></text>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#82ff77;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
+ x="736.32812"
+ y="1478.2422"
+ id="text995"
+ inkscape:label="HMI:Display@/PUMP0/PRESSURE"><tspan
+ sodipodi:role="line"
+ id="tspan993"
+ x="736.32812"
+ y="1478.2422"
+ style="fill:#82ff77;fill-opacity:1;stroke-width:1px;">8888</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="28.181862"
+ y="365.32291"
+ id="text134"
+ inkscape:label="HMI:Display@/PUMP0/STROUT"><tspan
+ sodipodi:role="line"
+ id="tspan132"
+ x="28.181862"
+ y="365.32291"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ <text
+ inkscape:label="HMI:Display@/PUMP0/BOOLOUT"
+ id="text138"
+ y="422.50345"
+ x="28.181862"
+ style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
+ y="422.50345"
+ x="28.181862"
+ id="tspan136"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ transform="matrix(0.28590269,0,0,0.28590269,0.70444171,226.1427)"
+ id="g208-1"
+ inkscape:label="HMI:Input@/PUMP0/STRIN"
+ style="stroke-width:2">
+ <text
+ inkscape:label="value"
+ id="text164"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan162"
+ sodipodi:role="line">8888</tspan></text>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect166"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="+"dhu""
+ id="g174"
+ style="stroke-width:2">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:transform-center-y="-14.956361"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ id="path168"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="733.58197"
+ y="111.05016"
+ id="text172"><tspan
+ sodipodi:role="line"
+ id="tspan170"
+ x="733.58197"
+ y="111.05016"
+ style="stroke-width:1px">dhu</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="plop""
+ id="g182"
+ style="stroke-width:2">
+ <path
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path176"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-184.98808"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.6154501e-05"
+ inkscape:transform-center-x="14.956371" />
+ <text
+ id="text180"
+ y="111.05016"
+ x="633.09552"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="633.09552"
+ id="tspan178"
+ sodipodi:role="line">plop</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhoo""
+ id="g190"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-y="-5.9989963e-06"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-216.2599"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path184"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="rotate(-90,746.45698,-44.543641)"
+ inkscape:transform-center-x="14.956364" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="537.25018"
+ y="111.05016"
+ id="text188"><tspan
+ sodipodi:role="line"
+ id="tspan186"
+ x="537.25018"
+ y="111.05016"
+ style="stroke-width:1px">mhoo</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="yodl""
+ id="g198"
+ style="stroke-width:2">
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path192"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="105.17262"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:transform-center-y="-5.5023185e-06"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-x="-14.956365" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="925.82605"
+ y="111.05016"
+ id="text196"><tspan
+ sodipodi:role="line"
+ id="tspan194"
+ x="925.82605"
+ y="111.05016"
+ style="stroke-width:1px">yodl</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhe""
+ id="g206-1"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-y="-3.3040441e-05"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="136.44444"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path200"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ inkscape:transform-center-x="-14.956349" />
+ <text
+ id="text204"
+ y="111.05016"
+ x="842.71497"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="842.71497"
+ id="tspan202"
+ sodipodi:role="line">mhe</tspan></text>
+ </g>
+ </g>
+ <g
+ inkscape:label="HMI:Keypad:HMI_INT:HMI_REAL"
+ id="g2432"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ transform="matrix(3.3549332,0,0,3.14525,-181.87457,2336.0198)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:label="Background"
+ inkscape:connector-curvature="0"
+ id="path2136"
+ d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <rect
+ ry="3.8152773"
+ rx="3.8152773"
+ y="15.77106"
+ x="64.024963"
+ height="30.150299"
+ width="361.89996"
+ id="rect2426"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:label="Field" />
+ <text
+ id="text2430"
+ y="37.408375"
+ x="72.50132"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="Value"><tspan
+ style="text-align:start;text-anchor:start;stroke-width:0.47690967px"
+ y="37.408375"
+ x="72.50132"
+ id="tspan2428"
+ sodipodi:role="line">number</tspan></text>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ inkscape:label="Enter"
+ id="g4947"
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.10074362;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path193"
+ d="m 750,175 c 0,-2 -1,-3 -3,-3 h -20 c -1,0 -3,1 -3,3 v 43 c 0,1 2,2 3,2 h 20 c 2,0 3,-1 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -1244.2949,1166.5938 v 15.791 h -38.6875 v -2.9981 l -6.9199,4 6.9199,4 v -2.998 h 40.6836 v -17.7949 z"
+ transform="matrix(0.28557246,0,0,0.28557246,1098.7155,-140.51013)"
+ id="path6545-4"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ inkscape:label="Keys"
+ id="g4993"
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="7"
+ id="g4892">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path163"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text331"
+ y="129.38269"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">7</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="4"
+ id="g4907">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path169"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text335"
+ y="154.10822"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">4</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="1"
+ id="g4922">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path175"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text339"
+ y="179.82285"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">1</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="8"
+ id="g4897">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,120 h 19 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path165"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text347"
+ y="129.38269"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">8</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="5"
+ id="g4912">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,146 h 19 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path171"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text351"
+ y="154.10822"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">5</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="2"
+ id="g4927">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,172 h 19 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path177"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text355"
+ y="179.82285"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">2</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="9"
+ id="g4902">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path167"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text363"
+ y="129.38269"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">9</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="6"
+ id="g4917">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path173"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text367"
+ y="154.10822"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">6</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="3"
+ id="g4932">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path179"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text371"
+ y="179.82285"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">3</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="0"
+ id="g4937">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,220 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 h 49 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 z"
+ id="path373"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text377"
+ y="205.53712"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">0</text>
+ </g>
+ </g>
+ <g
+ id="g3113"
+ inkscape:label="Esc"
+ transform="translate(-318.22576)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path167-3"
+ d="m 387.26079,54.792986 h 33.40019 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -33.40019 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="394.42801"
+ y="78.632088"
+ id="text469-4"
+ style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928511)">Esc</text>
+ </g>
+ <g
+ id="g3109"
+ inkscape:label="BackSpace"
+ transform="translate(0,-43.420332)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path173-1"
+ d="m 387.26079,98.213318 h 33.40019 c 3.34,0 5.01006,1.670013 5.01006,5.010032 v 30.06024 c 0,3.34002 -1.67006,5.01003 -5.01006,5.01003 h -33.40019 c -1.67006,0 -5.01007,-1.67001 -5.01007,-5.01003 v -30.06024 c 0,-3.340019 3.34001,-5.010032 5.01007,-5.010032 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -1278.9668,1041.3047 -6.9199,4 6.9199,4 v -3 h 33.416 v -1.9981 h -33.416 z"
+ transform="matrix(0.47690966,0,0,0.47690966,1008.0304,-380.26227)"
+ id="path11623-1-0-2"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g787"
+ inkscape:label="Sign"
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ transform="matrix(1.6700128,0,0,1.6700128,-678.20742,-102.18822)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path781"
+ d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="642.1239"
+ y="135.09822"
+ id="text783"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ transform="scale(1.0007154,0.99928514)">+/-</text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="252.9579"
+ y="12.333653"
+ id="text509"
+ transform="scale(0.96824589,1.0327955)"
+ inkscape:label="Info"><tspan
+ sodipodi:role="line"
+ id="tspan507"
+ x="252.9579"
+ y="12.333653"
+ style="stroke-width:0.30784383px">information</tspan></text>
+ <g
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60856)"
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ id="g4942"
+ inkscape:label="NumDot">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,197 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path181"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:6.96602964px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text771"
+ y="204.54802"
+ x="696.7464"
+ transform="scale(1.0007154,0.99928514)">.</text>
+ </g>
+ </g>
+ <g
+ transform="matrix(3.3549332,0,0,3.14525,-181.87457,1556.0198)"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4278"
+ inkscape:label="HMI:Keypad:HMI_STRING:HMI_LOCAL:PAGE_LOCAL">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="M 54.211084,1.2654702 H 435.7388 V 230.18209 H 54.211084 Z"
+ id="rect1006-3"
+ inkscape:connector-curvature="0"
+ inkscape:label="Background"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path185"
+ d="m 162,197 h -11 c -2,0 -3,1 -3,3 v 18 c 0,2 1,3 3,3 h 11 168 18 c 0,0 1,-1 1,-3 v -18 c 0,-2 -1,-3 -1,-3 h -18 z"
+ inkscape:connector-curvature="0"
+ inkscape:label="Space" />
+ <g
+ id="g4380"
+ inkscape:label="Keys"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-19.076386)">
+ <g
+ id="g4283"
+ inkscape:label="q Q"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path41"
+ d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="99.378708"
+ y="138.28395"
+ id="text203"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">Q</text>
+ </g>
+ <g
+ id="g4337"
+ inkscape:label="w W"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path43"
+ d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="127.0709"
+ y="138.28395"
+ id="text207"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">W</text>
+ </g>
+ <g
+ id="g4332"
+ inkscape:label="e E"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path45"
+ d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="159.70854"
+ y="138.28395"
+ id="text211"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">E</text>
+ </g>
+ <g
+ id="g4326"
+ inkscape:label="r R"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path47"
+ d="m 184,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="188.39003"
+ y="138.28395"
+ id="text215"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">R</text>
+ </g>
+ <g
+ id="g4321"
+ inkscape:label="t T"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path49"
+ d="m 213,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="219.04961"
+ y="138.28395"
+ id="text219"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">T</text>
+ </g>
+ <g
+ id="g4316"
+ inkscape:label="y Y"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path51"
+ d="m 243,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="248.72017"
+ y="138.28395"
+ id="text223"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">Y</text>
+ </g>
+ <g
+ id="g4311"
+ inkscape:label="u U"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path53"
+ d="m 273,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="278.39075"
+ y="138.28395"
+ id="text227"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">U</text>
+ </g>
+ <g
+ id="g4306"
+ inkscape:label="i I"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path55"
+ d="m 302,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="311.02859"
+ y="138.28395"
+ id="text231"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">I</text>
+ </g>
+ <g
+ id="g4301"
+ inkscape:label="o O"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path57"
+ d="m 332,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="336.74319"
+ y="138.28395"
+ id="text235"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">O</text>
+ </g>
+ <g
+ id="g4296"
+ inkscape:label="p P"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path59"
+ d="m 362,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="367.40256"
+ y="138.28395"
+ id="text239"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">P</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4511"
+ inkscape:label="a A">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 103,147 h 19 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path65"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text243"
+ y="163.99854"
+ x="107.29005"
+ transform="scale(1.0007154,0.99928514)">A</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4516"
+ inkscape:label="s S">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 132,147 h 20 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path67"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text247"
+ y="163.99854"
+ x="137.95012"
+ transform="scale(1.0007154,0.99928514)">S</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4521"
+ inkscape:label="d D">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 162,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path69"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text251"
+ y="163.99854"
+ x="166.63159"
+ transform="scale(1.0007154,0.99928514)">D</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4526"
+ inkscape:label="f F">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 192,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path71"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text255"
+ y="163.99854"
+ x="197.29166"
+ transform="scale(1.0007154,0.99928514)">F</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4531"
+ inkscape:label="g G">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 221,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path73"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text259"
+ y="163.99854"
+ x="225.97284"
+ transform="scale(1.0007154,0.99928514)">G</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4536"
+ inkscape:label="h H">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 251,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path75"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text263"
+ y="163.99854"
+ x="255.64342"
+ transform="scale(1.0007154,0.99928514)">H</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4541"
+ inkscape:label="j J">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 281,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path77"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text267"
+ y="163.99854"
+ x="287.29208"
+ transform="scale(1.0007154,0.99928514)">J</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4546"
+ inkscape:label="k K">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 310,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path79"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text271"
+ y="163.99854"
+ x="314.98465"
+ transform="scale(1.0007154,0.99928514)">K</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4551"
+ inkscape:label="l L">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 340,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path81"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text275"
+ y="163.99854"
+ x="345.64444"
+ transform="scale(1.0007154,0.99928514)">L</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4586"
+ inkscape:label="z Z"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 113,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
+ id="path87-3"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text279"
+ y="188.72411"
+ x="119.15855"
+ transform="scale(1.0007154,0.99928514)">Z</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4581"
+ inkscape:label="x X"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 143,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
+ id="path89-6"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text283"
+ y="188.72411"
+ x="148.82933"
+ transform="scale(1.0007154,0.99928514)">X</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4576"
+ inkscape:label="c C"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 173,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
+ id="path91-7"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text287"
+ y="188.72411"
+ x="178.50011"
+ transform="scale(1.0007154,0.99928514)">C</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4571"
+ inkscape:label="v V"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 202,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c 0,0 -1,-1 -1,-3 v -17 c 0,-1 1,-3 1,-3 z"
+ id="path195"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text291"
+ y="188.72411"
+ x="208.16988"
+ transform="scale(1.0007154,0.99928514)">V</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4566"
+ inkscape:label="b B"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 233,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path93"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text295"
+ y="188.72411"
+ x="237.84096"
+ transform="scale(1.0007154,0.99928514)">B</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4561"
+ inkscape:label="n N"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 263,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path95"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text299"
+ y="188.72411"
+ x="267.51193"
+ transform="scale(1.0007154,0.99928514)">N</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4556"
+ inkscape:label="m M"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 293,172 h 19 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -19 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path97"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text303"
+ y="188.72411"
+ x="296.1933"
+ transform="scale(1.0007154,0.99928514)">M</text>
+ </g>
+ <g
+ id="g4818"
+ inkscape:label=". :"
+ style="stroke-width:0.47631353"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 352,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path101"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928513)"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text719"
+ y="189.66107"
+ x="359.58276">.</text>
+ <text
+ x="359.58276"
+ y="181.64532"
+ id="text4834"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928512)">:</text>
+ </g>
+ <g
+ id="g4813"
+ inkscape:label=", ;"
+ style="stroke-width:0.47631353"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 322,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path99"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text727"
+ y="181.64532"
+ x="330.00806"
+ transform="scale(1.0007154,0.99928512)">;</text>
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ y="189.66107"
+ x="330.00806"
+ transform="scale(1.0007154,0.99928512)"
+ id="text4826">,</text>
+ </g>
+ <g
+ style="stroke-width:0.47631353"
+ inkscape:label="1"
+ id="g2845"
+ transform="translate(-13.353469,-45.783327)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path2839"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2841"
+ y="138.28395"
+ x="101.07153"
+ transform="scale(1.0007154,0.99928513)">1</text>
+ </g>
+ <g
+ style="stroke-width:0.47631353"
+ inkscape:label="2"
+ id="g2853"
+ transform="translate(-13.353469,-45.783327)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path2847"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2849"
+ y="138.28395"
+ x="130.18704"
+ transform="scale(1.0007154,0.99928513)">2</text>
+ </g>
+ <g
+ inkscape:label="3"
+ id="g2861"
+ style="stroke-width:0.47631353"
+ transform="translate(-13.353469,-45.783327)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path2855"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2857"
+ y="138.28395"
+ x="159.70854"
+ transform="scale(1.0007154,0.99928514)">3</text>
+ </g>
+ <g
+ id="g2957"
+ inkscape:label="4"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 170.64653,94.293059 h 19 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 V 97.293059 c 0,-2 2,-3 3,-3 z"
+ id="path2865"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2867"
+ y="111.55791"
+ x="176.39188"
+ transform="scale(1.0007154,0.99928514)">4</text>
+ </g>
+ <g
+ id="g2962"
+ inkscape:label="5"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 199.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2873"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2875"
+ y="111.55791"
+ x="205.70567"
+ transform="scale(1.0007154,0.99928514)">5</text>
+ </g>
+ <g
+ id="g2967"
+ inkscape:label="6"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 229.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2881"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2883"
+ y="111.55791"
+ x="236.15851"
+ transform="scale(1.0007154,0.99928514)">6</text>
+ </g>
+ <g
+ id="g2972"
+ inkscape:label="7"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 259.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2889"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2891"
+ y="111.55791"
+ x="266.06564"
+ transform="scale(1.0007154,0.99928514)">7</text>
+ </g>
+ <g
+ id="g2977"
+ inkscape:label="8"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 288.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2897"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2899"
+ y="111.55791"
+ x="295.08231"
+ transform="scale(1.0007154,0.99928514)">8</text>
+ </g>
+ <g
+ id="g2982"
+ inkscape:label="9 -"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 318.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2905"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2907"
+ y="111.55791"
+ x="325.05408"
+ transform="scale(1.0007154,0.99928514)">9</text>
+ <text
+ transform="scale(1.0007154,0.99928511)"
+ x="335.72681"
+ y="102.42173"
+ id="text806"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826">-</text>
+ </g>
+ <g
+ id="g2987"
+ inkscape:label="0 +"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 348.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2913"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2915"
+ y="111.55791"
+ x="355.05984"
+ transform="scale(1.0007154,0.99928514)">0</text>
+ <text
+ transform="scale(1.0007154,0.99928511)"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text804"
+ y="102.42173"
+ x="365.30151">+</text>
+ </g>
+ </g>
+ <g
+ transform="translate(335.89988,-58.934803)"
+ id="g3544"
+ inkscape:label="Esc"
+ style="stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path105"
+ d="m 47.948645,115.07509 h 39.076386 c 1,0 3,1 3,3 v 18 c 0,1 -2,3 -3,3 H 47.948645 c -2,0 -3,-2 -3,-3 v -18 c 0,-2 1,-3 3,-3 z"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ transform="scale(1.0007154,0.99928512)"
+ style="font-weight:normal;font-size:9.37966251px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text469"
+ y="130.02028"
+ x="59.288635">Esc</text>
+ </g>
+ <g
+ inkscape:label="Enter"
+ id="g4291"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-19.076386)">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path3616"
+ d="m 368.68274,170 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 54.24217 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -260.23633,1080.8125 v 15.7949 h -38.68555 v -3 l -6.91992,4 6.91992,4 v -3.0019 h 40.6836 v -17.793 z"
+ transform="matrix(0.47690966,0,0,0.47690966,531.12074,-361.18588)"
+ id="path6545"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:label="BackSpace"
+ id="g4287"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ transform="translate(2.3648311e-6,-28.614579)">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path3624"
+ d="m 391.97749,144 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 30.94742 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -268.72656,1011.1777 -6.91992,4 6.91992,4 v -3.0019 h 29.18945 v -1.9981 h -29.18945 z"
+ transform="matrix(0.47690966,0,0,0.47690966,531.12074,-351.64769)"
+ id="path11623-1-0"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g934"
+ inkscape:label="CapsLock">
+ <g
+ inkscape:label="inactive"
+ id="g942"
+ style="display:inline;fill-rule:evenodd;stroke-width:0.47631353"
+ transform="translate(0,-19.076386)">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path936"
+ d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="69.789322"
+ y="156.71973"
+ id="text938-5"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
+ transform="scale(1.0007154,0.99928515)">Caps</text>
+ <text
+ x="69.789322"
+ y="166.5585"
+ id="text940"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
+ transform="scale(1.0007154,0.99928515)">Lock</text>
+ </g>
+ <g
+ transform="translate(0,-19.076386)"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4429"
+ inkscape:label="active">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
+ id="path199"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ transform="scale(1.0007154,0.99928515)"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
+ id="text647"
+ y="156.71973"
+ x="69.789322">Caps</text>
+ <text
+ transform="scale(1.0007154,0.99928515)"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
+ id="text651"
+ y="166.5585"
+ x="69.789322">Lock</text>
+ </g>
+ </g>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect2130"
+ width="361.89996"
+ height="30.150299"
+ x="64.024956"
+ y="15.771065"
+ rx="3.8152773"
+ ry="3.8152773"
+ inkscape:label="Field" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="72.50132"
+ y="38.296417"
+ id="text1309"
+ inkscape:label="Value"><tspan
+ sodipodi:role="line"
+ id="tspan1307"
+ x="72.50132"
+ y="38.296417"
+ style="text-align:start;text-anchor:start;stroke-width:0.47690967px">text</tspan></text>
+ <g
+ id="g437"
+ inkscape:label="Shift">
+ <g
+ id="g421"
+ inkscape:label="inactive">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ id="path910"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text912"
+ y="177.90059"
+ x="392.55679"
+ transform="scale(1.0007154,0.99928513)">Shift</text>
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path856"
+ d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="75.85218"
+ y="177.90059"
+ id="text858"
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928513)">Shift</text>
+ </g>
+ <g
+ id="g413"
+ inkscape:label="active">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path551"
+ d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928513)"
+ x="392.55679"
+ y="177.90059"
+ id="text629"
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;stroke-width:0.36866826">Shift</text>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
+ id="path879"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ transform="scale(1.0007154,0.99928513)"
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text881"
+ y="177.90059"
+ x="75.85218">Shift</text>
+ </g>
+ </g>
+ <text
+ transform="scale(0.96824588,1.0327955)"
+ id="text471"
+ y="12.333657"
+ x="252.9579"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="Info"><tspan
+ style="stroke-width:0.30784383px"
+ y="12.333657"
+ x="252.9579"
+ id="tspan469"
+ sodipodi:role="line">information</tspan></text>
+ </g>
+ <g
+ id="g14237"
+ inkscape:label="HMI:DropDown:1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:16:17:18:19:20:21:22:23:24:25:26:27@/SELECTION"
+ transform="matrix(0.81491208,0,0,0.81491208,243.6641,-510.30491)"
+ style="stroke-width:0.35083869">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#53676c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect14212"
+ width="391.99988"
+ height="130.9433"
+ x="864.00842"
+ y="923.98993"
+ rx="2.4558709"
+ ry="2.4558709"
+ inkscape:label="box" />
+ <rect
+ inkscape:label="highlight"
+ ry="2.4558709"
+ rx="2.4558709"
+ y="943.10553"
+ x="864.00842"
+ height="92.71212"
+ width="391.99988"
+ id="rect5497"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419331;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text14183"
+ y="1011.9975"
+ x="881.44226"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d42aff;fill-opacity:1;stroke:none;stroke-width:0.35083869px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="text"><tspan
+ style="text-align:start;text-anchor:start;fill:#d42aff;stroke-width:0.35083869px"
+ y="1011.9975"
+ x="881.44226"
+ sodipodi:role="line"
+ id="tspan421">sel_0</tspan></text>
+ <path
+ sodipodi:type="star"
+ style="opacity:1;vector-effect:none;fill:#a7a5a6;fill-opacity:1;stroke:none;stroke-width:0.12376806;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path424"
+ sodipodi:sides="3"
+ sodipodi:cx="1200.5"
+ sodipodi:cy="975"
+ sodipodi:r1="43.683521"
+ sodipodi:r2="21.841761"
+ sodipodi:arg1="1.5707963"
+ sodipodi:arg2="2.6179939"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 1200.5,1018.6835 -18.9155,-32.76262 -18.9155,-32.76264 37.831,0 37.831,0 -18.9155,32.76264 z"
+ inkscape:transform-center-y="10.92088"
+ inkscape:label="button" />
+ </g>
+ <g
+ id="g14274"
+ inkscape:label="HMI:List:HoodNames:ForEach:HOOD:NAME@/" />
+ <g
+ inkscape:label="HMI:Input@/SELECTION"
+ id="g446"
+ transform="matrix(0.28590269,0,0,0.28590269,85.246911,560.98603)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="216.32812"
+ y="218.24219"
+ id="text432"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan430"
+ x="216.32812"
+ y="218.24219"
+ style="text-align:end;text-anchor:end;stroke-width:1px">8</tspan></text>
+ <path
+ transform="scale(1,-1)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path436"
+ sodipodi:sides="3"
+ sodipodi:cx="276.74072"
+ sodipodi:cy="-224.98808"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 302.6459,-210.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="7.4781812"
+ inkscape:label="-1" />
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="-174.94055"
+ height="128"
+ width="407.7037"
+ id="rect438"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:label="+1"
+ inkscape:transform-center-y="-7.4781804"
+ d="m 302.6459,111.4008 -51.81035,0 25.90517,-44.869079 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="96.444443"
+ sodipodi:cx="276.74072"
+ sodipodi:sides="3"
+ id="path442"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <path
+ inkscape:label="=0"
+ inkscape:transform-center-y="-10.828983"
+ d="m 306.14807,189.68763 -58.37872,0.43598 -0.43597,-58.37872 58.37871,-0.43597 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5633284"
+ sodipodi:arg1="0.77793027"
+ sodipodi:r2="21.657967"
+ sodipodi:r1="41.281136"
+ sodipodi:cy="160.71626"
+ sodipodi:cx="276.74072"
+ sodipodi:sides="4"
+ id="path444"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ inkscape:transform-center-x="1.0089177e-06" />
+ </g>
+ <g
+ id="g5053"
+ inkscape:label="HMI:Switch@/PUMP0/BOOLOUT"
+ transform="translate(43.983597,40.477445)">
+ <g
+ id="g473"
+ style="fill:#ff0000;stroke:#ff00ff"
+ inkscape:label="true">
+ <path
+ d="M 825.90067,963.24473 V 1105.042 L 960.08282,916.47893 V 809.26931 Z"
+ style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3451"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 825.90067,1105.042 90.50966,81.6485 121.15167,-225.30346 -77.47918,-44.90811 z"
+ style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3453"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 960.08282,809.26931 77.47918,36.25625 v 115.86148 l -77.47918,-44.90811 z"
+ style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3455"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 825.90067,963.24473 916.41033,1029.3537 1037.562,845.52556 960.08282,809.26931 Z"
+ style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3457"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 916.41033,1029.3537 v 157.3368 L 1037.562,961.38704 V 845.52556 Z"
+ style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3459"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 825.90067,963.24473 90.50966,66.10897 v 157.3368 l -90.50966,-81.6485 z"
+ style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3461"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g501"
+ style="fill:#ff0000;stroke:#ff00ff"
+ inkscape:label="false">
+ <path
+ d="M 855.90069,905.24473 V 1047.042 L 978.3745,966.29311 V 859.0835 Z"
+ style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3437"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 855.90069,1047.042 90.50966,81.6485 108.49845,-108.7886 -76.5343,-53.60879 z"
+ style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3439"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 978.3745,859.0835 76.5343,44.95689 v 115.86151 l -76.5343,-53.60879 z"
+ style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3441"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 855.90069,905.24473 90.50966,66.10901 108.49845,-67.31335 -76.5343,-44.95689 z"
+ style="fill:#4d389f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3443"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 946.41035,971.35374 V 1128.6905 L 1054.9088,1019.9019 V 904.04039 Z"
+ style="fill:#d78bff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3445"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 855.90069,905.24473 90.50966,66.10901 v 157.33676 l -90.50966,-81.6485 z"
+ style="fill:#8667bf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3447"
+ inkscape:connector-curvature="0" />
+ <g
+ inkscape:label="HMI:Switch@/TARGETPRESSURE"
+ id="g991-3"
+ transform="matrix(0.5,0,0,0.5,699.09791,793.95217)"
+ style="stroke-width:2">
+ <g
+ id="g1091-3"
+ inkscape:label="4"
+ transform="translate(-136.52022,250.47452)"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-x="14.956371"
+ inkscape:transform-center-y="-3.6154501e-05"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path981-1"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="661.09552"
+ y="111.05016"
+ id="text1059-7"><tspan
+ sodipodi:role="line"
+ id="tspan1057-5"
+ x="661.09552"
+ y="111.05016"
+ style="stroke-width:1px">4</tspan></text>
+ </g>
+ <g
+ id="g1096-9"
+ inkscape:label="3"
+ transform="translate(-136.52022,250.47452)"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-x="14.956364"
+ transform="rotate(-90,746.45698,-44.543641)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path979-6"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="-5.9989963e-06" />
+ <text
+ id="text1063-2"
+ y="111.05016"
+ x="565.25018"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="565.25018"
+ id="tspan1061-1"
+ sodipodi:role="line">3</tspan></text>
+ </g>
+ <g
+ id="g1076-7"
+ inkscape:label="2"
+ transform="translate(-416.52022,170.47452)"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-x="-14.956365"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-y="-5.5023185e-06"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path985-8"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <text
+ id="text1067-5"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan1065-7"
+ sodipodi:role="line">2</tspan></text>
+ </g>
+ <g
+ id="g1081-4"
+ inkscape:label="1"
+ transform="translate(-416.52022,170.47452)"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-x="-14.956349"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path987-1"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.3040441e-05" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="842.71497"
+ y="111.05016"
+ id="text1071-8"><tspan
+ sodipodi:role="line"
+ id="tspan1069-5"
+ x="842.71497"
+ y="111.05016"
+ style="stroke-width:1px">1</tspan></text>
+ </g>
+ </g>
+ </g>
+ </g>
+ <g
+ transform="matrix(3.3549332,0,0,3.14525,-181.87457,3116.0198)"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g1490"
+ inkscape:label="HMI:ModalOKDialog">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
+ id="path1386"
+ inkscape:connector-curvature="0"
+ inkscape:label="Background"
+ sodipodi:nodetypes="ccccc" />
+ <rect
+ inkscape:label="Field"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1388"
+ width="314.68832"
+ height="68.369255"
+ x="87.630791"
+ y="56.041908"
+ rx="3.8152773"
+ ry="3.8152773" />
+ <text
+ inkscape:label="Message"
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="243.24242"
+ y="94.637527"
+ id="text1392"><tspan
+ sodipodi:role="line"
+ id="tspan1390"
+ x="243.24242"
+ y="94.637527"
+ style="text-align:center;text-anchor:middle;stroke-width:0.47690967px">message</tspan></text>
+ <g
+ transform="translate(-158.98593,95.381925)"
+ inkscape:label="OK"
+ id="g1466">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 363.41531,54.792986 h 81.09115 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -81.09115 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
+ id="path1462"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ transform="scale(1.0007154,0.99928511)"
+ style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text1464"
+ y="78.632088"
+ x="402.71881">
+ <tspan
+ style="text-align:center;text-anchor:middle"
+ id="tspan5195">OK</tspan>
+ </text>
+ </g>
+ <text
+ inkscape:label="Info"
+ transform="scale(0.96824589,1.0327955)"
+ id="text1482"
+ y="12.333653"
+ x="252.9579"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.30784383px"
+ y="12.333653"
+ x="252.9579"
+ id="tspan1480"
+ sodipodi:role="line">information</tspan></text>
+ </g>
+ <g
+ inkscape:label="HMI:Meter@/PUMP0/SLOTH"
+ transform="matrix(3.7795276,0,0,3.7795276,1628.51,630.30393)"
+ id="g1338">
+ <path
+ inkscape:label="range"
+ sodipodi:open="true"
+ d="M 63.610123,2.2017068 A 64.411957,64.411957 0 0 1 128.02208,-62.210247"
+ sodipodi:end="4.712389"
+ sodipodi:start="3.1415927"
+ sodipodi:ry="64.411957"
+ sodipodi:rx="64.411957"
+ sodipodi:cy="2.2017097"
+ sodipodi:cx="128.02208"
+ sodipodi:type="arc"
+ id="path1318"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3ee800;stroke-width:26.45833397;stroke-miterlimit:4;stroke-dasharray:2.64583333, 2.64583333;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:label="needle"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path1320"
+ d="M 130.96206,4.0725977 79.111776,-41.363223"
+ style="fill:none;fill-rule:evenodd;stroke:#ff3000;stroke-width:2.96333337;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-end:url(#marker1656)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="49.132977"
+ y="4.9187088"
+ id="text1324"
+ inkscape:label="min"><tspan
+ sodipodi:role="line"
+ id="tspan1322"
+ x="49.132977"
+ y="4.9187088"
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
+ <text
+ id="text1328"
+ y="-78.144218"
+ x="127.48073"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="max"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="-78.144218"
+ x="127.48073"
+ id="tspan1326"
+ sodipodi:role="line">10000</tspan></text>
+ <text
+ inkscape:label="unit"
+ id="text1336"
+ y="1.1408259"
+ x="124.77896"
+ style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan1334"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="1.1408259"
+ x="124.77896"
+ sodipodi:role="line">bar</tspan></text>
+ </g>
+ <g
+ inkscape:label="HMI:Switch@/PUMP0/BOOLOUT"
+ id="g1368"
+ transform="translate(1424.3019,-503.18786)">
+ <g
+ id="g1352"
+ style="fill:#ff0000;stroke:#ff00ff"
+ inkscape:label="true">
+ <path
+ d="M 825.90072,963.24473 V 1105.042 L 960.08286,916.47892 V 809.26931 Z"
+ style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3479"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 825.90072,1105.042 90.50967,81.6485 121.15161,-225.30347 -77.47914,-44.90811 z"
+ style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3481"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 960.08286,809.26931 77.47914,36.25624 v 115.86148 l -77.47914,-44.90811 z"
+ style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3483"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 825.90072,963.24473 916.41039,1029.3537 1037.562,845.52555 960.08286,809.26931 Z"
+ style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3485"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 916.41039,1029.3537 v 157.3368 L 1037.562,961.38703 V 845.52555 Z"
+ style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3487"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 825.90072,963.24473 90.50967,66.10897 v 157.3368 l -90.50967,-81.6485 z"
+ style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3489"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g1366"
+ style="fill:#ff0000;stroke:#ff00ff"
+ inkscape:label="false">
+ <path
+ d="M 855.90072,905.24473 V 1047.042 L 978.37453,966.29311 V 859.08349 Z"
+ style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3465"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 855.90072,1047.042 90.50967,81.6485 108.49841,-108.7886 -76.53427,-53.60879 z"
+ style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3467"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 978.37453,859.08349 76.53427,44.9569 v 115.86151 l -76.53427,-53.60879 z"
+ style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3469"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 855.90072,905.24473 90.50967,66.109 108.49841,-67.31334 -76.53427,-44.9569 z"
+ style="fill:#4d389f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3471"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 946.41039,971.35373 V 1128.6905 L 1054.9088,1019.9019 V 904.04039 Z"
+ style="fill:#d78bff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3473"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 855.90072,905.24473 90.50967,66.109 v 157.33677 l -90.50967,-81.6485 z"
+ style="fill:#8667bf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3475"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ transform="matrix(0.63690435,0,0,0.63690435,1576.4961,80.355376)"
+ inkscape:label="HMI:Input@/PUMP0/PRESSURE"
+ id="g1394">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text1380"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1378"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:1px">8888</tspan></text>
+ <path
+ inkscape:label="-100"
+ inkscape:transform-center-y="14.956363"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-216.2599"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1382"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="scale(1,-1)" />
+ <path
+ transform="scale(1,-1)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1384"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-184.98808"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="7.4781812"
+ inkscape:label="-10" />
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect1386"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1388"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="105.17262"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:transform-center-y="-14.956361"
+ inkscape:label="+100" />
+ <path
+ inkscape:label="+10"
+ inkscape:transform-center-y="-7.4781804"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="136.44444"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1390"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <path
+ inkscape:label="=0"
+ inkscape:transform-center-y="-14.956361"
+ d="M 121.35644,205.1862 C 158.18649,167.80191 3.342862,168.95829 40.72715,205.78834 78.111437,242.61839 76.95506,87.774762 40.125008,125.15905 3.2949549,162.54334 158.13858,161.38696 120.7543,124.55691 83.370008,87.726855 84.526385,242.57048 121.35644,205.1862 Z"
+ inkscape:randomized="0"
+ inkscape:rounded="-0.65084865"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5633284"
+ sodipodi:arg1="0.77793027"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="57.015106"
+ sodipodi:cy="165.17262"
+ sodipodi:cx="80.740723"
+ sodipodi:sides="4"
+ id="path1392"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ </g>
+ <g
+ style="stroke-width:2"
+ inkscape:label="HMI:Input@/PUMP0/STRIN"
+ id="g1442"
+ transform="matrix(0.5,0,0,0.5,1470.1103,205.71623)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text1398"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1396"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:2px">8888</tspan></text>
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect1400"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:2"
+ id="g1408"
+ inkscape:label="+"dhu""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1402"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1406"
+ y="111.05016"
+ x="733.58197"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="733.58197"
+ id="tspan1404"
+ sodipodi:role="line">dhu</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1416"
+ inkscape:label="="plop""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956371"
+ inkscape:transform-center-y="-3.6154501e-05"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1410"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="633.09552"
+ y="111.05016"
+ id="text1414"><tspan
+ sodipodi:role="line"
+ id="tspan1412"
+ x="633.09552"
+ y="111.05016"
+ style="stroke-width:1px">plop</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1424"
+ inkscape:label="="mhoo""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956364"
+ transform="rotate(-90,746.45698,-44.543641)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1418"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="-5.9989963e-06" />
+ <text
+ id="text1422"
+ y="111.05016"
+ x="537.25018"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="537.25018"
+ id="tspan1420"
+ sodipodi:role="line">mhoo</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1432"
+ inkscape:label="="yodl""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956365"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-y="-5.5023185e-06"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1426"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <text
+ id="text1430"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan1428"
+ sodipodi:role="line">yodl</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1440"
+ inkscape:label="="mhe""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956349"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1434"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.3040441e-05" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="842.71497"
+ y="111.05016"
+ id="text1438"><tspan
+ sodipodi:role="line"
+ id="tspan1436"
+ x="842.71497"
+ y="111.05016"
+ style="stroke-width:1px">mhe</tspan></text>
+ </g>
+ </g>
+ <text
+ inkscape:label="HMI:Display@/PUMP0/STROUT"
+ id="text1446"
+ y="469.12109"
+ x="1578.1641"
+ style="font-style:normal;font-weight:normal;font-size:80px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.5px"
+ y="469.12109"
+ x="1578.1641"
+ id="tspan1444"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,-153.64055,248.51305)"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP0"
+ id="g1458">
+ <g
+ inkscape:label="button"
+ id="g1450">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1448"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1456">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text1454"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ id="tspan1460">Pump 0</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g1475"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP1"
+ transform="matrix(0.57180538,0,0,0.57180538,6.35945,248.51305)">
+ <g
+ id="g1467"
+ inkscape:label="button">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1464"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ id="g1473"
+ inkscape:label="text">
+ <text
+ inkscape:label="setting_jmp"
+ id="text1471"
+ y="656.98151"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan1469"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="656.98151"
+ x="1090.7626"
+ sodipodi:role="line">Pump 1</tspan><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="706.98151"
+ x="1090.7626"
+ sodipodi:role="line"
+ id="tspan1477" /></text>
+ </g>
+ </g>
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,166.35945,248.51305)"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP2"
+ id="g1491">
+ <g
+ inkscape:label="button"
+ id="g1481">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1479"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1489">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text1487"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ id="tspan1493">Pump 2</tspan><tspan
+ id="tspan1485"
+ sodipodi:role="line"
+ x="1090.7626"
+ y="706.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px" /></text>
+ </g>
+ </g>
+ <g
+ id="g1509"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP3"
+ transform="matrix(0.57180538,0,0,0.57180538,326.35945,248.51305)">
+ <g
+ id="g1499"
+ inkscape:label="button">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1497"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ id="g1507"
+ inkscape:label="text">
+ <text
+ inkscape:label="setting_jmp"
+ id="text1505"
+ y="656.98151"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="656.98151"
+ x="1090.7626"
+ sodipodi:role="line"
+ id="tspan1511">Pump 3</tspan><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="706.98151"
+ x="1090.7626"
+ sodipodi:role="line"
+ id="tspan1503" /></text>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="403.8551"
+ y="700.05371"
+ id="text1517"
+ inkscape:label="HMI:Display@/PUMP0/STROUT"><tspan
+ sodipodi:role="line"
+ id="tspan1515"
+ x="403.8551"
+ y="700.05371"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px">8888</tspan></text>
+ <text
+ inkscape:label="HMI:Display@/PUMP1/STROUT"
+ id="text1521"
+ y="700.05371"
+ x="563.8551"
+ style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px"
+ y="700.05371"
+ x="563.8551"
+ id="tspan1519"
+ sodipodi:role="line">8888</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="723.8551"
+ y="700.05371"
+ id="text1525"
+ inkscape:label="HMI:Display@/PUMP2/STROUT"><tspan
+ sodipodi:role="line"
+ id="tspan1523"
+ x="723.8551"
+ y="700.05371"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px">8888</tspan></text>
+ <text
+ inkscape:label="HMI:Display@/PUMP3/STROUT"
+ id="text1529"
+ y="700.05371"
+ x="883.8551"
+ style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px"
+ y="700.05371"
+ x="883.8551"
+ id="tspan1527"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ id="g6077"
+ inkscape:label="HMI:ForEach:PUMP@/">
+ <g
+ id="g6130"
+ inkscape:label="PUMP:1">
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,1024.0513,-317.49049)"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP0"
+ id="g1458-8">
+ <g
+ inkscape:label="disabled"
+ id="g1450-4"
+ style="display:inline">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1448-8"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.28600003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ id="g1067"
+ inkscape:label="inactive"
+ style="display:inline">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1065"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ inkscape:label="active"
+ id="g1071"
+ style="display:inline">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1069"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1456-1">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1038.2972"
+ y="635.99542"
+ id="text1454-0"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ x="1038.2972"
+ y="635.99542"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ id="tspan1460-3">Pump</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="992.45087"
+ y="674.76117"
+ id="text1517-8"
+ inkscape:label="HMI:Display@/PUMP0/STROUT"><tspan
+ sodipodi:role="line"
+ id="tspan1515-5"
+ x="992.45087"
+ y="674.76117"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.24579209px">8888</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ id="g6122"
+ inkscape:label="PUMP:2">
+ <g
+ id="g1475-0"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP1"
+ transform="matrix(0.57180538,0,0,0.57180538,1184.0513,-317.49049)">
+ <g
+ id="g1467-4"
+ inkscape:label="disabled">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.28600003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1464-4"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ inkscape:label="inactive"
+ id="g1898"
+ style="display:inline">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1896"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ id="g1902"
+ inkscape:label="active"
+ style="display:inline">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1900"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ id="g1473-4"
+ inkscape:label="text">
+ <text
+ inkscape:label="setting_jmp"
+ id="text1471-4"
+ y="635.99542"
+ x="1038.2972"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="635.99542"
+ x="1038.2972"
+ sodipodi:role="line"
+ id="tspan1477-6">Pump</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579208px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="992.8111"
+ y="674.76117"
+ id="text1517-8-5"
+ inkscape:label="HMI:Display@/PUMP1/STROUT"><tspan
+ sodipodi:role="line"
+ id="tspan1515-5-3"
+ x="992.8111"
+ y="674.76117"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.24579208px">8888</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ id="g6113"
+ inkscape:label="PUMP:3">
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,1344.0513,-317.49049)"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP2"
+ id="g1491-3">
+ <g
+ inkscape:label="disabled"
+ id="g1481-1">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1479-7"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.28600003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ id="g1906"
+ inkscape:label="inactive">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1904"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ inkscape:label="active"
+ id="g1910">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1908"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1489-5">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1038.2972"
+ y="635.99542"
+ id="text1487-9"
+ inkscape:label="setting_jmp"><tspan
+ id="tspan1485-2"
+ sodipodi:role="line"
+ x="1038.2972"
+ y="635.99542"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Pump</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579208px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="993.17108"
+ y="674.76117"
+ id="text1517-8-8"
+ inkscape:label="HMI:Display@/PUMP2/STROUT"><tspan
+ sodipodi:role="line"
+ id="tspan1515-5-8"
+ x="993.17108"
+ y="674.76117"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.24579208px">8888</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ id="g6104"
+ inkscape:label="PUMP:4">
+ <g
+ id="g1509-1"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP3"
+ transform="matrix(0.57180538,0,0,0.57180538,1504.0513,-317.49049)">
+ <g
+ id="g1499-7"
+ inkscape:label="disabled"
+ style="display:inline">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.28600003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1497-8"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ id="g1918"
+ inkscape:label="inactive"
+ style="display:inline">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1916"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ inkscape:label="active"
+ id="g1914"
+ style="display:inline">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1912"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ id="g1507-5"
+ inkscape:label="text">
+ <text
+ inkscape:label="setting_jmp"
+ id="text1505-7"
+ y="635.99542"
+ x="1038.2972"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="635.99542"
+ x="1038.2972"
+ sodipodi:role="line"
+ id="tspan1511-4">Pump</tspan><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="685.99542"
+ x="1038.2972"
+ sodipodi:role="line"
+ id="tspan1503-1" /></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579208px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="993.53101"
+ y="674.76117"
+ id="text1517-8-3"
+ inkscape:label="HMI:Display@/PUMP3/STROUT"><tspan
+ sodipodi:role="line"
+ id="tspan1515-5-1"
+ x="993.53101"
+ y="674.76117"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.24579208px">8888</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:label="PUMP:+1"
+ id="g6241"
+ transform="matrix(0.57180538,0,0,0.57180538,1461.2541,-321.48847)">
+ <rect
+ style="fill:#000000;fill-opacity:1;stroke:#ff0000;stroke-width:1.74884677"
+ id="rect6235"
+ width="89.036743"
+ height="79.143768"
+ x="1326.8333"
+ y="612.41589"
+ rx="22.385239"
+ ry="20.986162" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:42.81540298px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.0703851"
+ x="1340.5292"
+ y="663.73657"
+ id="text6239"><tspan
+ sodipodi:role="line"
+ id="tspan6237"
+ x="1340.5292"
+ y="663.73657"
+ style="fill:#ffffff;stroke-width:1.0703851">+1</tspan></text>
+ </g>
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,752.02604,-322.19558)"
+ id="g6209"
+ inkscape:label="PUMP:-1">
+ <rect
+ ry="20.986162"
+ rx="22.385239"
+ y="612.41589"
+ x="1326.8333"
+ height="79.143768"
+ width="89.036743"
+ id="rect6200"
+ style="fill:#000000;fill-opacity:1;stroke:#ff0000;stroke-width:1.74884677" />
+ <text
+ id="text6204"
+ y="663.73657"
+ x="1340.5292"
+ style="font-style:normal;font-weight:normal;font-size:42.81540298px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.0703851"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;stroke-width:1.0703851"
+ y="663.73657"
+ x="1340.5292"
+ id="tspan6202"
+ sodipodi:role="line">-1</tspan></text>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:25.76535034px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#82ff77;fill-opacity:1;stroke:none;stroke-width:0.3688359px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="949.96338"
+ y="514.57275"
+ id="text995-6"
+ inkscape:label="HMI:Display:Ploc %d (%d) grmbl !@/PUMP0/PRESSURE@/PUMP0/SLOTH"><tspan
+ sodipodi:role="line"
+ id="tspan993-3"
+ x="949.96338"
+ y="514.57275"
+ style="text-align:center;text-anchor:middle;fill:#82ff77;fill-opacity:1;stroke-width:0.3688359px">8888</tspan></text>
+ <text
+ id="text831-1"
+ y="477.76758"
+ x="841.62634"
+ style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="actual_label"><tspan
+ y="477.76758"
+ x="841.62634"
+ id="tspan829-7"
+ sodipodi:role="line"
+ style="stroke-width:0.63690436px">Multiple variables</tspan></text>
+ <text
+ inkscape:label="HMI:Display@paff"
+ id="text1457"
+ y="68.844757"
+ x="750.28473"
+ style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
+ y="68.844757"
+ x="750.28473"
+ id="tspan1455"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ style="stroke-width:4"
+ inkscape:label="HMI:Input@paff"
+ id="g1505"
+ transform="matrix(0.14295135,0,0,0.14295135,589.21833,37.615184)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text1461"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1459"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:4px">8888</tspan></text>
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect1463"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:4"
+ id="g1471"
+ inkscape:label="+"dhu""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1465"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1469"
+ y="111.05016"
+ x="733.58197"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="733.58197"
+ id="tspan1467"
+ sodipodi:role="line">dhu</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g1479"
+ inkscape:label="="plop""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956371"
+ inkscape:transform-center-y="-3.6154501e-05"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1473"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="633.09552"
+ y="111.05016"
+ id="text1477"><tspan
+ sodipodi:role="line"
+ id="tspan1475"
+ x="633.09552"
+ y="111.05016"
+ style="stroke-width:2px">plop</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g1487"
+ inkscape:label="="mhoo""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956364"
+ transform="rotate(-90,746.45698,-44.543641)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1481"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="-5.9989963e-06" />
+ <text
+ id="text1485"
+ y="111.05016"
+ x="537.25018"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="537.25018"
+ id="tspan1483"
+ sodipodi:role="line">mhoo</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g1495"
+ inkscape:label="="yodl""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956365"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-y="-5.5023185e-06"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1489"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <text
+ id="text1493"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan1491"
+ sodipodi:role="line">yodl</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g1503"
+ inkscape:label="="mhe""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956349"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1497"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.3040441e-05" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="842.71497"
+ y="111.05016"
+ id="text1501"><tspan
+ sodipodi:role="line"
+ id="tspan1499"
+ x="842.71497"
+ y="111.05016"
+ style="stroke-width:2px">mhe</tspan></text>
+ </g>
+ </g>
+ <text
+ inkscape:label="actual_label"
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:12.7380867px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="509.67926"
+ y="43.42762"
+ id="text1527"><tspan
+ style="stroke-width:0.63690436px"
+ sodipodi:role="line"
+ id="tspan1525"
+ x="509.67926"
+ y="43.42762">HMI_LOCAL variables</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="750.28473"
+ y="128.84476"
+ id="text1557"
+ inkscape:label="HMI:Display@.piff"><tspan
+ sodipodi:role="line"
+ id="tspan1555"
+ x="750.28473"
+ y="128.84476"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ <g
+ transform="matrix(0.14295135,0,0,0.14295135,589.21833,97.61518)"
+ id="g1605"
+ inkscape:label="HMI:Input@.piff"
+ style="stroke-width:4">
+ <text
+ inkscape:label="value"
+ id="text1561"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:4px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan1559"
+ sodipodi:role="line">8888</tspan></text>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1563"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="+"dhu""
+ id="g1571"
+ style="stroke-width:4">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:transform-center-y="-14.956361"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ id="path1565"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="733.58197"
+ y="111.05016"
+ id="text1569"><tspan
+ sodipodi:role="line"
+ id="tspan1567"
+ x="733.58197"
+ y="111.05016"
+ style="stroke-width:2px">dhu</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="plop""
+ id="g1579"
+ style="stroke-width:4">
+ <path
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1573"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-184.98808"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.6154501e-05"
+ inkscape:transform-center-x="14.956371" />
+ <text
+ id="text1577"
+ y="111.05016"
+ x="633.09552"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="633.09552"
+ id="tspan1575"
+ sodipodi:role="line">plop</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhoo""
+ id="g1587"
+ style="stroke-width:4">
+ <path
+ inkscape:transform-center-y="-5.9989963e-06"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-216.2599"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1581"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="rotate(-90,746.45698,-44.543641)"
+ inkscape:transform-center-x="14.956364" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="537.25018"
+ y="111.05016"
+ id="text1585"><tspan
+ sodipodi:role="line"
+ id="tspan1583"
+ x="537.25018"
+ y="111.05016"
+ style="stroke-width:2px">mhoo</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="yodl""
+ id="g1595"
+ style="stroke-width:4">
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1589"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="105.17262"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:transform-center-y="-5.5023185e-06"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-x="-14.956365" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="925.82605"
+ y="111.05016"
+ id="text1593"><tspan
+ sodipodi:role="line"
+ id="tspan1591"
+ x="925.82605"
+ y="111.05016"
+ style="stroke-width:2px">yodl</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhe""
+ id="g1603"
+ style="stroke-width:4">
+ <path
+ inkscape:transform-center-y="-3.3040441e-05"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="136.44444"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1597"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ inkscape:transform-center-x="-14.956349" />
+ <text
+ id="text1601"
+ y="111.05016"
+ x="842.71497"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="842.71497"
+ id="tspan1599"
+ sodipodi:role="line">mhe</tspan></text>
+ </g>
+ </g>
+ <text
+ id="text1609"
+ y="103.42763"
+ x="509.67926"
+ style="font-style:normal;font-weight:normal;font-size:12.7380867px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="actual_label"><tspan
+ y="103.42763"
+ x="509.67926"
+ sodipodi:role="line"
+ style="stroke-width:0.63690436px"
+ id="tspan1611">PAGE_LOCAL variables</tspan></text>
+ <g
+ inkscape:label="HMI:Meter@level"
+ transform="matrix(2.1611542,0,0,2.1611542,602.76714,428.92423)"
+ id="g709">
+ <path
+ inkscape:label="range"
+ sodipodi:open="true"
+ d="M 63.610123,2.2017068 A 64.411957,64.411957 0 0 1 128.02208,-62.210247"
+ sodipodi:end="4.712389"
+ sodipodi:start="3.1415927"
+ sodipodi:ry="64.411957"
+ sodipodi:rx="64.411957"
+ sodipodi:cy="2.2017097"
+ sodipodi:cx="128.02208"
+ sodipodi:type="arc"
+ id="path689"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff7f2a;stroke-width:26.45833397;stroke-miterlimit:4;stroke-dasharray:2.64583333, 2.64583333;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:label="needle"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path691"
+ d="M 130.96206,4.0725977 79.111776,-41.363223"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:2.96333337;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0, 32.59666667;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-end:url(#marker1971)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="49.132977"
+ y="4.9187088"
+ id="text695"
+ inkscape:label="min"><tspan
+ sodipodi:role="line"
+ id="tspan693"
+ x="49.132977"
+ y="4.9187088"
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
+ <text
+ id="text699"
+ y="-78.144218"
+ x="127.48073"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="max"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="-78.144218"
+ x="127.48073"
+ id="tspan697"
+ sodipodi:role="line">10000</tspan></text>
+ <text
+ inkscape:label="unit"
+ id="text707"
+ y="1.1408259"
+ x="124.77896"
+ style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan705"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="1.1408259"
+ x="124.77896"
+ sodipodi:role="line">bar</tspan></text>
+ </g>
+ <g
+ id="g84-3"
+ inkscape:label="HMI:Input@level"
+ transform="matrix(0.35865594,0,0,0.35865594,458.57767,253.49106)">
+ <text
+ inkscape:label="value"
+ id="text5151-6"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan5149-7"
+ sodipodi:role="line">8888</tspan></text>
+ <path
+ transform="scale(1,-1)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path89-5"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="14.956363"
+ inkscape:label="-100" />
+ <path
+ inkscape:label="-10"
+ inkscape:transform-center-y="7.4781812"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path88-3"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="scale(1,-1)" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect85-5"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <path
+ inkscape:label="+100"
+ inkscape:transform-center-y="-14.956361"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path87-6"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path86-2"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-7.4781804"
+ inkscape:label="+10" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path91-9"
+ sodipodi:sides="4"
+ sodipodi:cx="80.740723"
+ sodipodi:cy="165.17262"
+ sodipodi:r1="57.015106"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.77793027"
+ sodipodi:arg2="1.5633284"
+ inkscape:flatsided="true"
+ inkscape:rounded="-0.65084865"
+ inkscape:randomized="0"
+ d="M 121.35644,205.1862 C 158.18649,167.80191 3.342862,168.95829 40.72715,205.78834 78.111437,242.61839 76.95506,87.774762 40.125008,125.15905 3.2949549,162.54334 158.13858,161.38696 120.7543,124.55691 83.370008,87.726855 84.526385,242.57048 121.35644,205.1862 Z"
+ inkscape:transform-center-y="-14.956361"
+ inkscape:label="=0" />
+ </g>
+ <text
+ inkscape:label="HMI:Display@paff"
+ id="text1457-1"
+ y="215.65211"
+ x="2632.9148"
+ style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
+ y="215.65211"
+ x="2632.9148"
+ id="tspan1455-2"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ style="stroke-width:2"
+ inkscape:label="HMI:Input@paff"
+ id="g1505-7"
+ transform="matrix(0.28590269,0,0,0.28590269,2430.782,153.19299)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text1461-0"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1459-9"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:2px">8888</tspan></text>
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect1463-3"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:2"
+ id="g1471-6"
+ inkscape:label="+"dhu""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1465-0"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1469-6"
+ y="111.05016"
+ x="733.58197"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="733.58197"
+ id="tspan1467-2"
+ sodipodi:role="line">dhu</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1479-6"
+ inkscape:label="="plop""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956371"
+ inkscape:transform-center-y="-3.6154501e-05"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1473-1"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="633.09552"
+ y="111.05016"
+ id="text1477-8"><tspan
+ sodipodi:role="line"
+ id="tspan1475-7"
+ x="633.09552"
+ y="111.05016"
+ style="stroke-width:1px">plop</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1487-9"
+ inkscape:label="="mhoo""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956364"
+ transform="rotate(-90,746.45698,-44.543641)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1481-2"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="-5.9989963e-06" />
+ <text
+ id="text1485-0"
+ y="111.05016"
+ x="537.25018"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="537.25018"
+ id="tspan1483-2"
+ sodipodi:role="line">mhoo</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1495-3"
+ inkscape:label="="yodl""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956365"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-y="-5.5023185e-06"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1489-7"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <text
+ id="text1493-5"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan1491-9"
+ sodipodi:role="line">yodl</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1503-2"
+ inkscape:label="="mhe""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956349"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1497-2"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.3040441e-05" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="842.71497"
+ y="111.05016"
+ id="text1501-8"><tspan
+ sodipodi:role="line"
+ id="tspan1499-9"
+ x="842.71497"
+ y="111.05016"
+ style="stroke-width:1px">mhe</tspan></text>
+ </g>
+ </g>
+ <text
+ inkscape:label="actual_label"
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="2471.7039"
+ y="164.81787"
+ id="text1527-7"><tspan
+ style="stroke-width:0.63690436px"
+ sodipodi:role="line"
+ id="tspan1525-3"
+ x="2471.7039"
+ y="164.81787">HMI_LOCAL variables</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="2632.9148"
+ y="335.65213"
+ id="text1557-6"
+ inkscape:label="HMI:Display@.piff"><tspan
+ sodipodi:role="line"
+ id="tspan1555-1"
+ x="2632.9148"
+ y="335.65213"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ <g
+ transform="matrix(0.28590269,0,0,0.28590269,2430.782,273.19298)"
+ id="g1605-2"
+ inkscape:label="HMI:Input@.piff"
+ style="stroke-width:2">
+ <text
+ inkscape:label="value"
+ id="text1561-9"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan1559-3"
+ sodipodi:role="line">8888</tspan></text>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1563-1"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="+"dhu""
+ id="g1571-9"
+ style="stroke-width:2">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:transform-center-y="-14.956361"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ id="path1565-4"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="733.58197"
+ y="111.05016"
+ id="text1569-7"><tspan
+ sodipodi:role="line"
+ id="tspan1567-8"
+ x="733.58197"
+ y="111.05016"
+ style="stroke-width:1px">dhu</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="plop""
+ id="g1579-4"
+ style="stroke-width:2">
+ <path
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1573-5"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-184.98808"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.6154501e-05"
+ inkscape:transform-center-x="14.956371" />
+ <text
+ id="text1577-0"
+ y="111.05016"
+ x="633.09552"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="633.09552"
+ id="tspan1575-3"
+ sodipodi:role="line">plop</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhoo""
+ id="g1587-6"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-y="-5.9989963e-06"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-216.2599"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1581-1"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="rotate(-90,746.45698,-44.543641)"
+ inkscape:transform-center-x="14.956364" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="537.25018"
+ y="111.05016"
+ id="text1585-0"><tspan
+ sodipodi:role="line"
+ id="tspan1583-6"
+ x="537.25018"
+ y="111.05016"
+ style="stroke-width:1px">mhoo</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="yodl""
+ id="g1595-3"
+ style="stroke-width:2">
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1589-2"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="105.17262"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:transform-center-y="-5.5023185e-06"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-x="-14.956365" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="925.82605"
+ y="111.05016"
+ id="text1593-0"><tspan
+ sodipodi:role="line"
+ id="tspan1591-6"
+ x="925.82605"
+ y="111.05016"
+ style="stroke-width:1px">yodl</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhe""
+ id="g1603-1"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-y="-3.3040441e-05"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="136.44444"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1597-5"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ inkscape:transform-center-x="-14.956349" />
+ <text
+ id="text1601-5"
+ y="111.05016"
+ x="842.71497"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="842.71497"
+ id="tspan1599-4"
+ sodipodi:role="line">mhe</tspan></text>
+ </g>
+ </g>
+ <text
+ id="text1609-7"
+ y="284.81787"
+ x="2471.7039"
+ style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="actual_label"><tspan
+ y="284.81787"
+ x="2471.7039"
+ sodipodi:role="line"
+ style="stroke-width:0.63690436px"
+ id="tspan1611-6">PAGE_LOCAL variables</tspan></text>
+ <text
+ inkscape:label="HMI:Display@paff"
+ id="text1457-5"
+ y="1208.4301"
+ x="276.83508"
+ style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
+ y="1208.4301"
+ x="276.83508"
+ id="tspan1455-6"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ style="stroke-width:2"
+ inkscape:label="HMI:Input@paff"
+ id="g1505-9"
+ transform="matrix(0.28590269,0,0,0.28590269,74.702238,1145.9709)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text1461-3"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1459-7"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:2px">8888</tspan></text>
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect1463-4"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:2"
+ id="g1471-5"
+ inkscape:label="+"dhu""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1465-2"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1469-5"
+ y="111.05016"
+ x="733.58197"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="733.58197"
+ id="tspan1467-4"
+ sodipodi:role="line">dhu</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1479-7"
+ inkscape:label="="plop""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956371"
+ inkscape:transform-center-y="-3.6154501e-05"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1473-4"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="633.09552"
+ y="111.05016"
+ id="text1477-4"><tspan
+ sodipodi:role="line"
+ id="tspan1475-3"
+ x="633.09552"
+ y="111.05016"
+ style="stroke-width:1px">plop</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1487-0"
+ inkscape:label="="mhoo""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956364"
+ transform="rotate(-90,746.45698,-44.543641)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1481-7"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="-5.9989963e-06" />
+ <text
+ id="text1485-8"
+ y="111.05016"
+ x="537.25018"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="537.25018"
+ id="tspan1483-6"
+ sodipodi:role="line">mhoo</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1495-8"
+ inkscape:label="="yodl""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956365"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-y="-5.5023185e-06"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1489-8"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <text
+ id="text1493-4"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan1491-3"
+ sodipodi:role="line">yodl</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1503-1"
+ inkscape:label="="mhe""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956349"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1497-4"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.3040441e-05" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="842.71497"
+ y="111.05016"
+ id="text1501-9"><tspan
+ sodipodi:role="line"
+ id="tspan1499-2"
+ x="842.71497"
+ y="111.05016"
+ style="stroke-width:1px">mhe</tspan></text>
+ </g>
+ </g>
+ <text
+ inkscape:label="actual_label"
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="115.62414"
+ y="1157.5958"
+ id="text1527-0"><tspan
+ style="stroke-width:0.63690436px"
+ sodipodi:role="line"
+ id="tspan1525-6"
+ x="115.62414"
+ y="1157.5958">HMI_LOCAL variables</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="276.83508"
+ y="1328.4301"
+ id="text1557-8"
+ inkscape:label="HMI:Display@.piff"><tspan
+ sodipodi:role="line"
+ id="tspan1555-9"
+ x="276.83508"
+ y="1328.4301"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ <g
+ transform="matrix(0.28590269,0,0,0.28590269,74.702238,1265.9709)"
+ id="g1605-26"
+ inkscape:label="HMI:Input@.piff"
+ style="stroke-width:2">
+ <text
+ inkscape:label="value"
+ id="text1561-6"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan1559-4"
+ sodipodi:role="line">8888</tspan></text>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1563-9"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="+"dhu""
+ id="g1571-5"
+ style="stroke-width:2">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:transform-center-y="-14.956361"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ id="path1565-0"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="733.58197"
+ y="111.05016"
+ id="text1569-4"><tspan
+ sodipodi:role="line"
+ id="tspan1567-87"
+ x="733.58197"
+ y="111.05016"
+ style="stroke-width:1px">dhu</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="plop""
+ id="g1579-1"
+ style="stroke-width:2">
+ <path
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1573-7"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-184.98808"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.6154501e-05"
+ inkscape:transform-center-x="14.956371" />
+ <text
+ id="text1577-2"
+ y="111.05016"
+ x="633.09552"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="633.09552"
+ id="tspan1575-7"
+ sodipodi:role="line">plop</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhoo""
+ id="g1587-2"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-y="-5.9989963e-06"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-216.2599"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1581-2"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="rotate(-90,746.45698,-44.543641)"
+ inkscape:transform-center-x="14.956364" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="537.25018"
+ y="111.05016"
+ id="text1585-6"><tspan
+ sodipodi:role="line"
+ id="tspan1583-1"
+ x="537.25018"
+ y="111.05016"
+ style="stroke-width:1px">mhoo</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="yodl""
+ id="g1595-0"
+ style="stroke-width:2">
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1589-6"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="105.17262"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:transform-center-y="-5.5023185e-06"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-x="-14.956365" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="925.82605"
+ y="111.05016"
+ id="text1593-1"><tspan
+ sodipodi:role="line"
+ id="tspan1591-5"
+ x="925.82605"
+ y="111.05016"
+ style="stroke-width:1px">yodl</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhe""
+ id="g1603-9"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-y="-3.3040441e-05"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="136.44444"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1597-4"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ inkscape:transform-center-x="-14.956349" />
+ <text
+ id="text1601-9"
+ y="111.05016"
+ x="842.71497"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="842.71497"
+ id="tspan1599-0"
+ sodipodi:role="line">mhe</tspan></text>
+ </g>
+ </g>
+ <text
+ id="text1609-9"
+ y="1277.5958"
+ x="115.62414"
+ style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="actual_label"><tspan
+ y="1277.5958"
+ x="115.62414"
+ sodipodi:role="line"
+ style="stroke-width:0.63690436px"
+ id="tspan1611-1">PAGE_LOCAL variables</tspan></text>
+ <g
+ id="g2387"
+ inkscape:label="HMI:VarInit:42@level" />
+ <g
+ inkscape:label="HMI:VarInit:"a string"@paff"
+ id="g2389" />
+ <g
+ id="g825"
+ inkscape:label="HMI:VarInit:"a page string"@.piff" />
+ <g
+ inkscape:label="HMI:VarInit:50@.position"
+ id="g906" />
+ <g
+ id="g908"
+ inkscape:label="HMI:VarInit:100@.range" />
+ <g
+ inkscape:label="HMI:VarInit:7@.visibleAlarms"
+ id="g906-3" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g7994"
+ id="use8000"
+ transform="translate(-1380,800)"
+ width="100%"
+ height="100%"
+ inkscape:label="HMI:Page:AlarmPage" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="-738.18359"
+ y="86.260696"
+ id="text2019"><tspan
+ sodipodi:role="line"
+ id="tspan2017"
+ x="-738.18359"
+ y="86.260696"
+ style="fill:#ffffff;stroke-width:1px">Alarm Page</tspan></text>
+ <g
+ id="g1289"
+ inkscape:label="HMI:JsonTable:/alarms@/ALARMNOTIFY@.range@.position@.visibleAlarms@.filter"
+ transform="matrix(0.5,0,0,0.5,-1757.3465,454.4367)">
+ <g
+ id="g5231"
+ inkscape:label="data">
+ <g
+ id="g1384"
+ inkscape:label="[6]"
+ transform="translate(52.326002,240.30067)">
+ <g
+ id="g901"
+ inkscape:label="# commented group"
+ transform="translate(419.716,-441.73566)">
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 528.62458,486.07049 23.69122,21.00809"
+ id="path903"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc" />
+ </g>
+ <use
+ x="0"
+ y="0"
+ xlink:href="#use1297"
+ inkscape:transform-center-x="0.11123312"
+ inkscape:transform-center-y="2.2824109"
+ id="use1378"
+ width="100%"
+ height="100%"
+ transform="matrix(0.7609336,0,0,0.7609336,199.15217,164.3798)"
+ inkscape:label=".status onClick[acknowledge]=.alarmid" />
+ <use
+ transform="matrix(1.3019536,0,0,1.3019536,39.582906,238.73392)"
+ x="0"
+ y="0"
+ xlink:href="#use913"
+ id="use966"
+ width="100%"
+ height="100%"
+ inkscape:label=".status textContent=.time"
+ style="stroke-width:1.53615308" />
+ <use
+ inkscape:label=".status textContent=.text"
+ height="100%"
+ width="100%"
+ id="use1832"
+ xlink:href="#use913"
+ y="0"
+ x="0"
+ transform="matrix(2,0,0,2,85.95394,349.02524)" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 972.0318,65.34292 H 2780.6604"
+ id="path2238"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ inkscape:label="# separation line" />
+ </g>
+ <use
+ inkscape:label="[5]"
+ transform="translate(0,-62.914773)"
+ height="100%"
+ width="100%"
+ id="use5200"
+ xlink:href="#g1384"
+ y="0"
+ x="0" />
+ <use
+ inkscape:label="[4]"
+ x="0"
+ y="0"
+ xlink:href="#g1384"
+ id="use5202"
+ width="100%"
+ height="100%"
+ transform="translate(0,-125.82955)" />
+ <use
+ inkscape:label="[3]"
+ transform="translate(0,-188.74432)"
+ height="100%"
+ width="100%"
+ id="use5204"
+ xlink:href="#g1384"
+ y="0"
+ x="0" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g1384"
+ id="use2176"
+ width="100%"
+ height="100%"
+ transform="translate(0,-251.65909)"
+ inkscape:label="[2]" />
+ <use
+ inkscape:label="[1]"
+ transform="translate(0,-314.57387)"
+ height="100%"
+ width="100%"
+ id="use2178"
+ xlink:href="#g1384"
+ y="0"
+ x="0" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g1384"
+ id="use2180"
+ width="100%"
+ height="100%"
+ transform="translate(0,-377.48864)"
+ inkscape:label="[0]" />
+ </g>
+ <g
+ style="stroke-width:1.04184687"
+ inkscape:label="action_reset"
+ id="g1839-6"
+ transform="matrix(2,0,0,2,-181.39997,-864.49004)">
+ <g
+ style="stroke-width:1.04184687"
+ inkscape:label="bg"
+ id="g945-7">
+ <rect
+ rx="26.820074"
+ inkscape:label="button"
+ ry="23.177595"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect943-5"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5.20923424;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ style="stroke-width:1.04184687"
+ inkscape:label="text"
+ id="g951-3">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.04184675px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text949-5"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan947-6"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04184675px">reset</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ id="g1332"
+ inkscape:label="polygons"
+ transform="translate(-1556.6506,114.93627)">
+ <path
+ inkscape:transform-center-y="2.9995242"
+ inkscape:transform-center-x="0.14620371"
+ d="m 1081.9632,-246.81598 -27.9274,5.51725 -27.9273,5.51724 9.1856,-26.94439 9.1856,-26.94439 18.7417,21.42715 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.3757507"
+ sodipodi:arg1="0.32855317"
+ sodipodi:r2="16.43548"
+ sodipodi:r1="32.87096"
+ sodipodi:cy="-257.42258"
+ sodipodi:cx="1050.8505"
+ sodipodi:sides="3"
+ id="path1298"
+ style="fill:#8fbc8f;fill-opacity:1;stroke:#ff0000"
+ sodipodi:type="star"
+ inkscape:label="three" />
+ <path
+ sodipodi:type="star"
+ style="fill:#ff8c00;fill-opacity:1;stroke:#ff0000"
+ id="path1308"
+ sodipodi:sides="4"
+ sodipodi:cx="1110.8505"
+ sodipodi:cy="-257.42258"
+ sodipodi:r1="32.87096"
+ sodipodi:r2="16.43548"
+ sodipodi:arg1="0.32855317"
+ sodipodi:arg2="1.1139513"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 1141.9632,-246.81598 -23.8627,4.1434 -17.8566,16.3627 -4.1434,-23.8627 -16.3627,-17.8566 23.8627,-4.1434 17.8566,-16.3627 4.1434,23.8627 z"
+ inkscape:transform-center-x="0.14620371"
+ inkscape:transform-center-y="2.9995242"
+ inkscape:label="four" />
+ <path
+ inkscape:transform-center-y="2.9995242"
+ inkscape:transform-center-x="0.14620371"
+ d="m 1201.9632,-246.81598 -21.6446,2.82766 -9.9413,19.4333 -9.3778,-19.7114 -21.5541,-3.44949 15.8487,-15.00997 -3.3799,-21.5652 19.1728,10.43473 19.4653,-9.87854 -3.9993,21.45898 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="0.9568717"
+ sodipodi:arg1="0.32855317"
+ sodipodi:r2="16.43548"
+ sodipodi:r1="32.87096"
+ sodipodi:cy="-257.42258"
+ sodipodi:cx="1170.8505"
+ sodipodi:sides="5"
+ id="path1310"
+ style="fill:#bc8f8f;fill-opacity:1;stroke:#ff0000"
+ sodipodi:type="star"
+ inkscape:label="five" />
+ <path
+ sodipodi:type="star"
+ style="fill:#f0f8ff;fill-opacity:1;stroke:#ff0000"
+ id="path1312"
+ sodipodi:sides="6"
+ sodipodi:cx="1230.8505"
+ sodipodi:cy="-257.42258"
+ sodipodi:r1="32.87096"
+ sodipodi:r2="16.43548"
+ sodipodi:arg1="0.32855317"
+ sodipodi:arg2="0.85215195"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 1261.9632,-246.81598 -20.2922,1.76437 -4.4498,19.87672 -11.674,-16.69134 -19.4387,6.08474 8.6181,-18.45571 -14.9888,-13.79198 20.2921,-1.76436 4.4498,-19.87673 11.6741,16.69134 19.4386,-6.08473 -8.6181,18.4557 z"
+ inkscape:transform-center-x="0.14620371"
+ inkscape:transform-center-y="2.9995242"
+ inkscape:label="six" />
+ </g>
+ <g
+ inkscape:label="HMI:List"
+ id="g1311"
+ transform="translate(-1396.6506,94.93627)">
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path1298"
+ inkscape:transform-center-x="0.14620371"
+ inkscape:transform-center-y="2.9995242"
+ id="use1293"
+ width="100%"
+ height="100%"
+ transform="translate(-69.76703,100)"
+ style="display:inline"
+ inkscape:label="ack" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path1308"
+ inkscape:transform-center-x="0.14620371"
+ inkscape:transform-center-y="2.9995242"
+ id="use1295"
+ width="100%"
+ height="100%"
+ transform="translate(-126.48474,100)"
+ inkscape:label="alarm" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path1310"
+ inkscape:transform-center-x="0.14620371"
+ inkscape:transform-center-y="2.9995242"
+ id="use1297"
+ width="100%"
+ height="100%"
+ transform="translate(-186.33351,100)"
+ inkscape:label="active" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path1312"
+ inkscape:transform-center-x="0.14620371"
+ inkscape:transform-center-y="2.9995242"
+ id="use1299"
+ width="100%"
+ height="100%"
+ transform="translate(-246.4848,100)"
+ inkscape:label="disabled" />
+ </g>
+ <g
+ transform="matrix(0.33436432,0,0,0.33436432,-584.21063,278.8185)"
+ inkscape:label="HMI:Input@/ALARMNOTIFY"
+ id="g5222"
+ style="stroke-width:0.75594342">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text5208"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan5206"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:0.75594342px">8888</tspan></text>
+ <path
+ transform="scale(1,-1)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path5212"
+ sodipodi:sides="3"
+ sodipodi:cx="608.70374"
+ sodipodi:cy="-209.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 660.51409,-179.34718 -103.62071,0 51.81036,-89.73817 z"
+ inkscape:transform-center-y="14.956362"
+ inkscape:label="-1" />
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect5214"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:label="+1"
+ inkscape:transform-center-y="-14.95636"
+ d="m 660.51409,142.08535 -103.62071,0 51.81036,-89.738163 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="112.17263"
+ sodipodi:cx="608.70374"
+ sodipodi:sides="3"
+ id="path5218"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ </g>
+ <g
+ id="g1766"
+ inkscape:label="HMI:ScrollBar@.range@.position@.visibleAlarms"
+ transform="translate(9.7583007e-6)">
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path1266"
+ d="m -234.01097,332.35504 21.18736,28.36866 h -42.37471 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.42391574px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:label="pageup" />
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.4007318px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -234.01097,686.72773 21.18736,-27.45222 h -42.37471 z"
+ id="path1268"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ inkscape:label="pagedown" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.30952382;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.03627348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1264-3"
+ width="42.374725"
+ height="276.64423"
+ x="-255.19838"
+ y="371.91068"
+ rx="7.6034913"
+ ry="6.8822322"
+ inkscape:label="range" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.11429262px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1264"
+ width="42.374725"
+ height="82.841492"
+ x="-255.19838"
+ y="371.91068"
+ rx="7.6034913"
+ ry="7"
+ inkscape:label="cursor" />
+ </g>
+ <g
+ id="g893"
+ inkscape:label="textstyles"
+ transform="translate(-1566.6506,56.936266)">
+ <text
+ inkscape:label="red"
+ id="text1382-7"
+ y="-171.54395"
+ x="1298.9102"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ y="-171.54395"
+ x="1298.9102"
+ id="tspan1380-5"
+ sodipodi:role="line"
+ style="stroke-width:0.5">value</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="1298.9102"
+ y="-191.54395"
+ id="text875"
+ inkscape:label="black"><tspan
+ style="fill:#000000;stroke-width:0.5"
+ sodipodi:role="line"
+ id="tspan873"
+ x="1298.9102"
+ y="-191.54395">value</tspan></text>
+ <text
+ inkscape:label="green"
+ id="text879"
+ y="-211.54395"
+ x="1298.9102"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#00ff00;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ y="-211.54395"
+ x="1298.9102"
+ id="tspan877"
+ sodipodi:role="line"
+ style="fill:#00ff00;stroke-width:0.5">value</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="1298.9102"
+ y="-231.54395"
+ id="text883"
+ inkscape:label="gray"><tspan
+ style="fill:#999999;stroke-width:0.5"
+ sodipodi:role="line"
+ id="tspan881"
+ x="1298.9102"
+ y="-231.54395">value</tspan></text>
+ </g>
+ <g
+ id="g907"
+ inkscape:label="HMI:TextStyleList"
+ transform="translate(-990.65059,102.93627)">
+ <use
+ x="0"
+ y="0"
+ xlink:href="#text879"
+ id="use913"
+ width="100%"
+ height="100%"
+ transform="translate(-573,60.999998)"
+ inkscape:label="active" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#text875"
+ id="use911"
+ width="100%"
+ height="100%"
+ transform="translate(-573,40.999998)"
+ inkscape:label="ack" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#text1382-7"
+ id="use909"
+ width="100%"
+ height="100%"
+ transform="translate(-573,20.999998)"
+ inkscape:label="alarm" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#text883"
+ id="use915"
+ width="100%"
+ height="100%"
+ transform="translate(-573,80.999998)"
+ inkscape:label="disabled" />
+ </g>
+ <g
+ transform="matrix(0.33436432,0,0,0.33436432,-1048.7703,278.8185)"
+ inkscape:label="HMI:Input@.range"
+ id="g5222-3"
+ style="stroke-width:0.75594342">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text5208-6"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan5206-7"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:0.75594342px">8888</tspan></text>
+ <path
+ transform="scale(1,-1)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path5212-5"
+ sodipodi:sides="3"
+ sodipodi:cx="620.66675"
+ sodipodi:cy="-209.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 672.4771,-179.34718 -103.62071,0 51.81036,-89.73817 z"
+ inkscape:transform-center-y="14.956362"
+ inkscape:label="-1" />
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect5214-3"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:label="+1"
+ inkscape:transform-center-y="-14.95636"
+ d="m 672.4771,142.08535 -103.62071,0 51.81036,-89.738163 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="112.17263"
+ sodipodi:cx="620.66675"
+ sodipodi:sides="3"
+ id="path5218-5"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ </g>
+ <g
+ transform="matrix(0.33436432,0,0,0.33436432,-816.49047,278.8185)"
+ inkscape:label="HMI:Input@.position"
+ id="g5222-6"
+ style="stroke-width:0.75594342">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text5208-2"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan5206-9"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:0.75594342px">8888</tspan></text>
+ <path
+ transform="scale(1,-1)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path5212-1"
+ sodipodi:sides="3"
+ sodipodi:cx="608.70374"
+ sodipodi:cy="-209.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 660.51409,-179.34718 -103.62071,0 51.81036,-89.73817 z"
+ inkscape:transform-center-y="14.956362"
+ inkscape:label="-1" />
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect5214-2"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:label="+1"
+ inkscape:transform-center-y="-14.95636"
+ d="m 660.51409,142.08535 -103.62071,0 51.81036,-89.738163 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="112.17263"
+ sodipodi:cx="608.70374"
+ sodipodi:sides="3"
+ id="path5218-7"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="-935.5838"
+ y="291.8042"
+ id="text887"><tspan
+ sodipodi:role="line"
+ id="tspan885"
+ x="-935.5838"
+ y="291.8042"
+ style="fill:#ffffff;stroke-width:1px">range</tspan></text>
+ <text
+ id="text891"
+ y="291.8042"
+ x="-702.87115"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;stroke-width:1px"
+ y="291.8042"
+ x="-702.87115"
+ id="tspan889"
+ sodipodi:role="line">position</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="-471.33417"
+ y="291.8042"
+ id="text895"><tspan
+ sodipodi:role="line"
+ id="tspan893"
+ x="-471.33417"
+ y="291.8042"
+ style="fill:#ffffff;stroke-width:1px">notify</tspan></text>
+ <g
+ style="stroke-width:2"
+ inkscape:label="HMI:Input@/ALARMTEXT"
+ id="g1442-3"
+ transform="matrix(0.5,0,0,0.5,-915.0529,113.05833)">
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="77.265099"
+ x="-648.04266"
+ height="179.83517"
+ width="1195.5988"
+ id="rect1400-5"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cacaca;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ ry="36.786537" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#0e0e0e;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="545.95312"
+ y="218.24219"
+ id="text1398-6"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1396-7"
+ x="545.95312"
+ y="218.24219"
+ style="text-align:end;text-anchor:end;fill:#0e0e0e;fill-opacity:1;stroke-width:2px">8888</tspan></text>
+ </g>
+ <g
+ style="stroke-width:1.04184687"
+ inkscape:label="HMI:Input@/SENDALARM"
+ id="g953"
+ transform="translate(-1386.3329,-450.57041)">
+ <g
+ id="g1839"
+ inkscape:label="+1">
+ <g
+ id="g945"
+ inkscape:label="bg"
+ style="stroke-width:1.04184687">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5.20923424;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect943"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="23.177595"
+ inkscape:label="button"
+ rx="26.820074" />
+ </g>
+ <g
+ id="g951"
+ inkscape:label="text"
+ style="stroke-width:1.04184687">
+ <text
+ inkscape:label="setting_jmp"
+ id="text949"
+ y="656.98151"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.04184675px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04184675px"
+ y="656.98151"
+ x="1090.7626"
+ id="tspan947"
+ sodipodi:role="line">trigger</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ style="stroke-width:2"
+ inkscape:label="HMI:Input@/ALARMSTATUS"
+ id="g1887"
+ transform="matrix(0.28590269,0,0,0.28590269,-631.94615,129.07897)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:148.39013672px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.99999988px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="329.13501"
+ y="214.01605"
+ id="text1843"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1841"
+ x="329.13501"
+ y="214.01605"
+ style="text-align:center;text-anchor:middle;stroke-width:1.99999988px">8888</tspan></text>
+ <g
+ style="stroke-width:1.09375393"
+ id="g1853"
+ inkscape:label="="ack""
+ transform="matrix(1.8285648,0,0,1.8285648,-936.17681,115.40643)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1847"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1851"
+ y="112.62867"
+ x="738.57678"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.54687697px"
+ y="112.62867"
+ x="738.57678"
+ id="tspan1849"
+ sodipodi:role="line">ack</tspan></text>
+ </g>
+ <g
+ style="stroke-width:1.09375393"
+ id="g1861"
+ inkscape:label="="disabled""
+ transform="matrix(1.8285648,0,0,1.8285648,-1012.4359,109.57379)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1847-7"
+ d="m 738.52607,148.37593 -80.6293,0.60214 -0.6021,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="656.177"
+ y="115.81841"
+ id="text1859"><tspan
+ sodipodi:role="line"
+ id="tspan1857"
+ x="656.177"
+ y="115.81841"
+ style="stroke-width:0.54687697px">disabled</tspan></text>
+ </g>
+ <g
+ style="stroke-width:1.09375393"
+ id="g1869"
+ inkscape:label="="active""
+ transform="matrix(1.8285648,0,0,1.8285648,-998.18055,84.666267)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1847-5"
+ d="m 630.35651,161.99728 -80.6293,0.60214 -0.6021,-80.629287 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1867"
+ y="129.43976"
+ x="559.26227"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.54687697px"
+ y="129.43976"
+ x="559.26227"
+ id="tspan1865"
+ sodipodi:role="line">active</tspan></text>
+ </g>
+ <g
+ style="stroke-width:1.09375393"
+ id="g1877"
+ inkscape:label="="alarm""
+ transform="matrix(1.8285648,0,0,1.8285648,-1114.212,118.29284)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1847-3"
+ d="m 994.91832,143.60768 -80.62931,0.60214 -0.6021,-80.629285 80.62931,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1875"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.54687697px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan1873"
+ sodipodi:role="line">alarm</tspan></text>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="-926.47461"
+ y="134.36742"
+ id="text2019-9"><tspan
+ sodipodi:role="line"
+ id="tspan2017-2"
+ x="-926.47461"
+ y="134.36742"
+ style="fill:#ffffff;stroke-width:1px">Alarm Text</tspan></text>
+ <text
+ id="text2174"
+ y="134.36742"
+ x="-546.47461"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;stroke-width:1px"
+ y="134.36742"
+ x="-546.47461"
+ id="tspan2172"
+ sodipodi:role="line">Status</tspan></text>
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,326.35945,-231.48695)"
+ inkscape:label="HMI:Jump:AlarmPage"
+ id="g2198">
+ <g
+ inkscape:label="button"
+ id="g2190">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect2188"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ rx="35.579063" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g2196">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text2194"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan2192"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Alarms</tspan></text>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="628.18188"
+ y="242.50345"
+ id="text889"
+ inkscape:label="HMI:Display@/PUMP0/FLOATING"><tspan
+ sodipodi:role="line"
+ id="tspan887"
+ x="628.18188"
+ y="242.50345"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ <g
+ style="stroke-width:0.75594342"
+ id="g900"
+ inkscape:label="HMI:Input@.filter"
+ transform="matrix(0.33436432,0,0,0.33436432,-1288.7703,278.8185)">
+ <text
+ inkscape:label="value"
+ id="text892"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.75594342px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan890"
+ sodipodi:role="line">8888</tspan></text>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect896"
+ width="615.05096"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ </g>
+ <text
+ id="text904"
+ y="291.8042"
+ x="-1175.5837"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;stroke-width:1px"
+ y="291.8042"
+ x="-1175.5837"
+ id="tspan902"
+ sodipodi:role="line">filter</tspan></text>
+ <g
+ id="g909"
+ inkscape:label="HMI:VarInit:"POS"@.filter" />
+ <g
+ transform="matrix(0.14295135,0,0,0.14295135,449.21833,37.615184)"
+ id="g4646"
+ inkscape:label="HMI:Input@paff"
+ style="stroke-width:4">
+ <text
+ inkscape:label="value"
+ id="text4602"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:4px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan4600"
+ sodipodi:role="line">8888</tspan></text>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4604"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="+"dhu""
+ id="g4612"
+ style="stroke-width:4">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:transform-center-y="-14.956361"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ id="path4606"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="733.58197"
+ y="111.05016"
+ id="text4610"><tspan
+ sodipodi:role="line"
+ id="tspan4608"
+ x="733.58197"
+ y="111.05016"
+ style="stroke-width:2px">dhu</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="plop""
+ id="g4620"
+ style="stroke-width:4">
+ <path
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path4614"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-184.98808"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.6154501e-05"
+ inkscape:transform-center-x="14.956371" />
+ <text
+ id="text4618"
+ y="111.05016"
+ x="633.09552"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="633.09552"
+ id="tspan4616"
+ sodipodi:role="line">plop</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhoo""
+ id="g4628"
+ style="stroke-width:4">
+ <path
+ inkscape:transform-center-y="-5.9989963e-06"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-216.2599"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path4622"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="rotate(-90,746.45698,-44.543641)"
+ inkscape:transform-center-x="14.956364" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="537.25018"
+ y="111.05016"
+ id="text4626"><tspan
+ sodipodi:role="line"
+ id="tspan4624"
+ x="537.25018"
+ y="111.05016"
+ style="stroke-width:2px">mhoo</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="yodl""
+ id="g4636"
+ style="stroke-width:4">
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path4630"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="105.17262"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:transform-center-y="-5.5023185e-06"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-x="-14.956365" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="925.82605"
+ y="111.05016"
+ id="text4634"><tspan
+ sodipodi:role="line"
+ id="tspan4632"
+ x="925.82605"
+ y="111.05016"
+ style="stroke-width:2px">yodl</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhe""
+ id="g4644"
+ style="stroke-width:4">
+ <path
+ inkscape:transform-center-y="-3.3040441e-05"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="136.44444"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path4638"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ inkscape:transform-center-x="-14.956349" />
+ <text
+ id="text4642"
+ y="111.05016"
+ x="842.71497"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="842.71497"
+ id="tspan4640"
+ sodipodi:role="line">mhe</tspan></text>
+ </g>
+ </g>
+ <g
+ style="stroke-width:4"
+ inkscape:label="HMI:Input@.piff"
+ id="g4694"
+ transform="matrix(0.14295135,0,0,0.14295135,449.21833,97.61518)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text4650"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan4648"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:4px">8888</tspan></text>
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect4652"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:4"
+ id="g4660"
+ inkscape:label="+"dhu""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4654"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4658"
+ y="111.05016"
+ x="733.58197"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="733.58197"
+ id="tspan4656"
+ sodipodi:role="line">dhu</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g4668"
+ inkscape:label="="plop""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956371"
+ inkscape:transform-center-y="-3.6154501e-05"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path4662"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="633.09552"
+ y="111.05016"
+ id="text4666"><tspan
+ sodipodi:role="line"
+ id="tspan4664"
+ x="633.09552"
+ y="111.05016"
+ style="stroke-width:2px">plop</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g4676"
+ inkscape:label="="mhoo""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956364"
+ transform="rotate(-90,746.45698,-44.543641)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path4670"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="-5.9989963e-06" />
+ <text
+ id="text4674"
+ y="111.05016"
+ x="537.25018"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="537.25018"
+ id="tspan4672"
+ sodipodi:role="line">mhoo</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g4684"
+ inkscape:label="="yodl""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956365"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-y="-5.5023185e-06"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path4678"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <text
+ id="text4682"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan4680"
+ sodipodi:role="line">yodl</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g4692"
+ inkscape:label="="mhe""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956349"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path4686"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.3040441e-05" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="842.71497"
+ y="111.05016"
+ id="text4690"><tspan
+ sodipodi:role="line"
+ id="tspan4688"
+ x="842.71497"
+ y="111.05016"
+ style="stroke-width:2px">mhe</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g7994"
+ inkscape:label="Gray Page Template">
+ <rect
+ y="-800"
+ x="0"
+ height="720"
+ width="1280"
+ id="rect4270"
+ style="color:#000000;fill:#4d4d4d" />
+ <g
+ id="g4282"
+ inkscape:label="HMI:Jump:Home"
+ transform="translate(-10.6526,-2134.1633)">
+ <g
+ id="g4274"
+ inkscape:label="button">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
+ id="path4272"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cssssccc" />
+ </g>
+ <g
+ id="g4280"
+ inkscape:label="text">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="1436.9814"
+ id="text4278"
+ inkscape:label="home_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan4276"
+ x="1090.7626"
+ y="1436.9814"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
+ </g>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="1905.4562"
+ y="2520.5203"
+ id="text3613"><tspan
+ sodipodi:role="line"
+ id="tspan3611"
+ x="1905.4562"
+ y="2538.2156"
+ style="stroke-width:0.5" /></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="2852.2148"
+ y="1710.4241"
+ id="text10521-7"><tspan
+ sodipodi:role="line"
+ id="tspan10519-6"
+ x="2852.2148"
+ y="1745.8147" /></text>
+ <use
+ inkscape:label="HMI:Page:AlarmPage2"
+ height="100%"
+ width="100%"
+ transform="translate(-1380,1580)"
+ id="use938"
+ xlink:href="#g7994"
+ y="0"
+ x="0" />
+ <text
+ id="text942"
+ y="866.26068"
+ x="-738.18359"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;stroke-width:1px"
+ y="866.26068"
+ x="-738.18359"
+ id="tspan940"
+ sodipodi:role="line">Alarm Page 2</tspan></text>
+ <g
+ transform="matrix(0.5,0,0,0.5,-1757.3465,1234.4367)"
+ inkscape:label="HMI:JsonTable:/alarms@/ALARMNOTIFY@.range@.position@.visibleAlarms@.filter"
+ id="g973">
+ <g
+ inkscape:label="data"
+ id="g971">
+ <g
+ transform="translate(52.326002,240.30067)"
+ inkscape:label="[5]"
+ id="g956">
+ <g
+ transform="translate(419.716,-441.73566)"
+ inkscape:label="# commented group"
+ id="g946">
+ <path
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path944"
+ d="m 528.62458,486.07049 23.69122,21.00809"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ <use
+ inkscape:label=".status onClick[acknowledge]=.alarmid"
+ transform="matrix(0.7609336,0,0,0.7609336,199.15217,164.3798)"
+ height="100%"
+ width="100%"
+ id="use948"
+ inkscape:transform-center-y="2.2824109"
+ inkscape:transform-center-x="0.11123312"
+ xlink:href="#use1297"
+ y="0"
+ x="0" />
+ <use
+ style="stroke-width:1.53615308"
+ inkscape:label=".status textContent=.time"
+ height="100%"
+ width="100%"
+ id="use950"
+ xlink:href="#use913"
+ y="0"
+ x="0"
+ transform="matrix(1.3019536,0,0,1.3019536,39.582906,238.73392)" />
+ <use
+ transform="matrix(2,0,0,2,85.95394,349.02524)"
+ x="0"
+ y="0"
+ xlink:href="#use913"
+ id="use952"
+ width="100%"
+ height="100%"
+ inkscape:label=".status textContent=.text" />
+ <path
+ inkscape:label="# separation line"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path954"
+ d="M 972.0318,65.34292 H 2780.6604"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ </g>
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g956"
+ id="use1145"
+ width="100%"
+ height="100%"
+ transform="translate(0,-80)"
+ inkscape:label="[4]" />
+ <use
+ transform="translate(0,-160)"
+ height="100%"
+ width="100%"
+ id="use1147"
+ xlink:href="#g956"
+ y="0"
+ x="0"
+ inkscape:label="[3]" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g956"
+ id="use1149"
+ width="100%"
+ height="100%"
+ transform="translate(0,-240)"
+ inkscape:label="[2]" />
+ <use
+ transform="translate(0,-320)"
+ height="100%"
+ width="100%"
+ id="use1151"
+ xlink:href="#g956"
+ y="0"
+ x="0"
+ inkscape:label="[1]" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g956"
+ id="use1153"
+ width="100%"
+ height="100%"
+ transform="translate(0,-400)"
+ inkscape:label="[0]" />
+ </g>
+ </g>
+ <g
+ style="stroke-width:0.75594342"
+ id="g986"
+ inkscape:label="HMI:Input@/ALARMNOTIFY"
+ transform="matrix(0.33436432,0,0,0.33436432,-584.21063,1058.8185)">
+ <text
+ inkscape:label="value"
+ id="text978"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.75594342px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan976"
+ sodipodi:role="line">8888</tspan></text>
+ <path
+ inkscape:label="-1"
+ inkscape:transform-center-y="14.956362"
+ d="m 660.51409,-179.34718 -103.62071,0 51.81036,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-209.2599"
+ sodipodi:cx="608.70374"
+ sodipodi:sides="3"
+ id="path980"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="scale(1,-1)" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect982"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path984"
+ sodipodi:sides="3"
+ sodipodi:cx="608.70374"
+ sodipodi:cy="112.17263"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 660.51409,142.08535 -103.62071,0 51.81036,-89.738163 z"
+ inkscape:transform-center-y="-14.95636"
+ inkscape:label="+1" />
+ </g>
+ <g
+ style="stroke-width:0.75594342"
+ id="g1012"
+ inkscape:label="HMI:Input@.range"
+ transform="matrix(0.33436432,0,0,0.33436432,-1048.7703,1058.8185)">
+ <text
+ inkscape:label="value"
+ id="text1004"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.75594342px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan1002"
+ sodipodi:role="line">8888</tspan></text>
+ <path
+ inkscape:label="-1"
+ inkscape:transform-center-y="14.956362"
+ d="m 672.4771,-179.34718 -103.62071,0 51.81036,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-209.2599"
+ sodipodi:cx="620.66675"
+ sodipodi:sides="3"
+ id="path1006"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="scale(1,-1)" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1008"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1010"
+ sodipodi:sides="3"
+ sodipodi:cx="620.66675"
+ sodipodi:cy="112.17263"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 672.4771,142.08535 -103.62071,0 51.81036,-89.738163 z"
+ inkscape:transform-center-y="-14.95636"
+ inkscape:label="+1" />
+ </g>
+ <g
+ style="stroke-width:0.75594342"
+ id="g1025"
+ inkscape:label="HMI:Input@.position"
+ transform="matrix(0.33436432,0,0,0.33436432,-816.49047,1058.8185)">
+ <text
+ inkscape:label="value"
+ id="text1016"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.75594342px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan1014"
+ sodipodi:role="line">8888</tspan></text>
+ <path
+ inkscape:label="-1"
+ inkscape:transform-center-y="14.956362"
+ d="m 660.51409,-179.34718 -103.62071,0 51.81036,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-209.2599"
+ sodipodi:cx="608.70374"
+ sodipodi:sides="3"
+ id="path1018"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="scale(1,-1)" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1021"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1023"
+ sodipodi:sides="3"
+ sodipodi:cx="608.70374"
+ sodipodi:cy="112.17263"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 660.51409,142.08535 -103.62071,0 51.81036,-89.738163 z"
+ inkscape:transform-center-y="-14.95636"
+ inkscape:label="+1" />
+ </g>
+ <text
+ id="text1029"
+ y="1071.8042"
+ x="-935.5838"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;stroke-width:1px"
+ y="1071.8042"
+ x="-935.5838"
+ id="tspan1027"
+ sodipodi:role="line">range</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="-702.87115"
+ y="1071.8042"
+ id="text1033"><tspan
+ sodipodi:role="line"
+ id="tspan1031"
+ x="-702.87115"
+ y="1071.8042"
+ style="fill:#ffffff;stroke-width:1px">position</tspan></text>
+ <text
+ id="text1037"
+ y="1071.8042"
+ x="-471.33417"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;stroke-width:1px"
+ y="1071.8042"
+ x="-471.33417"
+ id="tspan1035"
+ sodipodi:role="line">notify</tspan></text>
+ <g
+ transform="matrix(0.5,0,0,0.5,-915.0529,893.05833)"
+ id="g1045"
+ inkscape:label="HMI:Input@/ALARMTEXT"
+ style="stroke-width:2">
+ <rect
+ ry="36.786537"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cacaca;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1039"
+ width="1195.5988"
+ height="179.83517"
+ x="-648.04266"
+ y="77.265099"
+ onclick=""
+ inkscape:label="edit" />
+ <text
+ inkscape:label="value"
+ id="text1043"
+ y="218.24219"
+ x="545.95312"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#0e0e0e;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:end;text-anchor:end;fill:#0e0e0e;fill-opacity:1;stroke-width:2px"
+ y="218.24219"
+ x="545.95312"
+ id="tspan1041"
+ sodipodi:role="line">8888</tspan></text>
+ </g>
+ <g
+ transform="translate(-1386.3329,329.42959)"
+ id="g1059"
+ inkscape:label="HMI:Input@/SENDALARM"
+ style="stroke-width:1.04184687">
+ <g
+ inkscape:label="+1"
+ id="g1057">
+ <g
+ style="stroke-width:1.04184687"
+ inkscape:label="bg"
+ id="g1049">
+ <rect
+ rx="26.820074"
+ inkscape:label="button"
+ ry="23.177595"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1047"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5.20923424;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ style="stroke-width:1.04184687"
+ inkscape:label="text"
+ id="g1055">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.04184675px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text1053"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan1051"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04184675px">trigger</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ transform="matrix(0.28590269,0,0,0.28590269,-631.94615,909.07897)"
+ id="g1099"
+ inkscape:label="HMI:Input@/ALARMSTATUS"
+ style="stroke-width:2">
+ <text
+ inkscape:label="value"
+ id="text1064"
+ y="214.01605"
+ x="329.13501"
+ style="font-style:normal;font-weight:normal;font-size:148.39013672px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.99999988px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;stroke-width:1.99999988px"
+ y="214.01605"
+ x="329.13501"
+ id="tspan1062"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ transform="matrix(1.8285648,0,0,1.8285648,-936.17681,115.40643)"
+ inkscape:label="="ack""
+ id="g1072"
+ style="stroke-width:1.09375393">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:transform-center-y="-14.956361"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ id="path1066"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="738.57678"
+ y="112.62867"
+ id="text1070"><tspan
+ sodipodi:role="line"
+ id="tspan1068"
+ x="738.57678"
+ y="112.62867"
+ style="stroke-width:0.54687697px">ack</tspan></text>
+ </g>
+ <g
+ transform="matrix(1.8285648,0,0,1.8285648,-1012.4359,109.57379)"
+ inkscape:label="="disabled""
+ id="g1080"
+ style="stroke-width:1.09375393">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:transform-center-y="-14.956361"
+ d="m 738.52607,148.37593 -80.6293,0.60214 -0.6021,-80.629288 80.6293,-0.60214 z"
+ id="path1074"
+ inkscape:connector-curvature="0" />
+ <text
+ id="text1078"
+ y="115.81841"
+ x="656.177"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.54687697px"
+ y="115.81841"
+ x="656.177"
+ id="tspan1076"
+ sodipodi:role="line">disabled</tspan></text>
+ </g>
+ <g
+ transform="matrix(1.8285648,0,0,1.8285648,-998.18055,84.666267)"
+ inkscape:label="="active""
+ id="g1088"
+ style="stroke-width:1.09375393">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:transform-center-y="-14.956361"
+ d="m 630.35651,161.99728 -80.6293,0.60214 -0.6021,-80.629287 80.6293,-0.60214 z"
+ id="path1082"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="559.26227"
+ y="129.43976"
+ id="text1086"><tspan
+ sodipodi:role="line"
+ id="tspan1084"
+ x="559.26227"
+ y="129.43976"
+ style="stroke-width:0.54687697px">active</tspan></text>
+ </g>
+ <g
+ transform="matrix(1.8285648,0,0,1.8285648,-1114.212,118.29284)"
+ inkscape:label="="alarm""
+ id="g1097"
+ style="stroke-width:1.09375393">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:transform-center-y="-14.956361"
+ d="m 994.91832,143.60768 -80.62931,0.60214 -0.6021,-80.629285 80.62931,-0.60214 z"
+ id="path1090"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="925.82605"
+ y="111.05016"
+ id="text1094"><tspan
+ sodipodi:role="line"
+ id="tspan1092"
+ x="925.82605"
+ y="111.05016"
+ style="stroke-width:0.54687697px">alarm</tspan></text>
+ </g>
+ </g>
+ <text
+ id="text1103"
+ y="914.36743"
+ x="-926.47461"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;stroke-width:1px"
+ y="914.36743"
+ x="-926.47461"
+ id="tspan1101"
+ sodipodi:role="line">Alarm Text</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="-546.47461"
+ y="914.36743"
+ id="text1107"><tspan
+ sodipodi:role="line"
+ id="tspan1105"
+ x="-546.47461"
+ y="914.36743"
+ style="fill:#ffffff;stroke-width:1px">Status</tspan></text>
+ <g
+ transform="matrix(0.33436432,0,0,0.33436432,-1288.7703,1058.8185)"
+ inkscape:label="HMI:Input@.filter"
+ id="g1115"
+ style="stroke-width:0.75594342">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text1111"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1109"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:0.75594342px">8888</tspan></text>
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="615.05096"
+ id="rect1113"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="-1175.5837"
+ y="1071.8042"
+ id="text1119"><tspan
+ sodipodi:role="line"
+ id="tspan1117"
+ x="-1175.5837"
+ y="1071.8042"
+ style="fill:#ffffff;stroke-width:1px">filter</tspan></text>
+ <g
+ id="g1131"
+ inkscape:label="HMI:Jump:AlarmPage2"
+ transform="matrix(0.57180538,0,0,0.57180538,-1914.3456,-318.69327)">
+ <g
+ id="g1123"
+ inkscape:label="button">
+ <rect
+ rx="35.579063"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1121"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ id="g1129"
+ inkscape:label="text">
+ <text
+ inkscape:label="setting_jmp"
+ id="text1127"
+ y="656.98151"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="656.98151"
+ x="1090.7626"
+ id="tspan1125"
+ sodipodi:role="line">Alarms2</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g1143"
+ inkscape:label="HMI:Jump:AlarmPage"
+ transform="matrix(0.57180538,0,0,0.57180538,-1915.7751,459.87722)">
+ <g
+ id="g1135"
+ inkscape:label="button">
+ <rect
+ rx="35.579063"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1133"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ id="g1141"
+ inkscape:label="text">
+ <text
+ inkscape:label="setting_jmp"
+ id="text1139"
+ y="656.98151"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="656.98151"
+ x="1090.7626"
+ id="tspan1137"
+ sodipodi:role="line">Alarms</tspan></text>
+ </g>
+ </g>
+ <g
+ inkscape:label="HMI:ScrollBar@.range@.position@.visibleAlarms"
+ id="g1165"
+ transform="translate(-2.4169924e-7,779.99999)">
+ <path
+ inkscape:label="pageup"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.42391574px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -234.01097,332.35504 21.18736,28.36866 h -42.37471 z"
+ id="path1157"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:label="pagedown"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path1159"
+ d="m -234.01097,686.72773 21.18736,-27.45222 h -42.37471 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.4007318px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <rect
+ inkscape:label="range"
+ ry="6.8822322"
+ rx="7.6034913"
+ y="371.91068"
+ x="-255.19838"
+ height="276.64423"
+ width="42.374725"
+ id="rect1161"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.30952382;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.03627348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <rect
+ inkscape:label="cursor"
+ ry="7"
+ rx="7.6034913"
+ y="371.91068"
+ x="-255.19838"
+ height="82.841492"
+ width="42.374725"
+ id="rect1163"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.11429262px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.25px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1569.0527"
+ y="594.56055"
+ id="text1042"
+ inkscape:label="HMI:Display@page_node"><tspan
+ sodipodi:role="line"
+ id="tspan1040"
+ x="1569.0527"
+ y="594.56055"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.25px">page node</tspan></text>
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,165.58244,517.80347)"
+ id="g443-9"
+ inkscape:label="HMI:ToggleButton@/PUMP0/BOOLIN"
+ style="stroke-width:1">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect5492-7"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="23.930969"
+ inkscape:label="inactive"
+ rx="23.930969" />
+ <rect
+ rx="23.930969"
+ inkscape:label="active"
+ ry="23.930969"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect433-5"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fdfdfd;fill-opacity:1;fill-rule:nonzero;stroke:#ffd0b2;stroke-width:28.60938263;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:1"
+ inkscape:label="text"
+ id="g952-3">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text950-8"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan948-8"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">up</tspan></text>
+ </g>
+ </g>
+ <rect
+ inkscape:label="HMI:Page:DropDownPage"
+ y="780"
+ x="1480"
+ height="720"
+ width="1280"
+ id="rect1081"
+ style="color:#000000;fill:#4d4d4d" />
+ <g
+ style="stroke-width:0.35083869"
+ transform="matrix(0.81491208,0,0,0.81491208,1123.6641,269.69509)"
+ inkscape:label="HMI:DropDown@/SELECTION"
+ id="g1093">
+ <rect
+ inkscape:label="box"
+ ry="2.4558709"
+ rx="2.4558709"
+ y="923.98993"
+ x="864.00842"
+ height="130.9433"
+ width="391.99988"
+ id="rect1083"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#53676c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419331;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1085"
+ width="391.99988"
+ height="92.71212"
+ x="864.00842"
+ y="943.10553"
+ rx="2.4558709"
+ ry="2.4558709"
+ inkscape:label="highlight" />
+ <path
+ inkscape:label="button"
+ inkscape:transform-center-y="10.92088"
+ d="m 1200.5,1018.6835 -18.9155,-32.76262 -18.9155,-32.76264 37.831,0 37.831,0 -18.9155,32.76264 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="2.6179939"
+ sodipodi:arg1="1.5707963"
+ sodipodi:r2="21.841761"
+ sodipodi:r1="43.683521"
+ sodipodi:cy="975"
+ sodipodi:cx="1200.5"
+ sodipodi:sides="3"
+ id="path1091"
+ style="opacity:1;vector-effect:none;fill:#a7a5a6;fill-opacity:1;stroke:none;stroke-width:0.12376806;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:type="star" />
+ <use
+ transform="matrix(1.0859809,0,0,1.0859809,-531.04917,1248.2618)"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d42aff;fill-opacity:1;stroke:none;stroke-width:1.40335476px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="0"
+ y="0"
+ xlink:href="#text879-6"
+ id="use1109"
+ width="100%"
+ height="100%"
+ inkscape:label="text" />
+ </g>
+ <g
+ id="g4282-3"
+ inkscape:label="HMI:Jump:Home"
+ transform="translate(1463.5642,-564.57759)">
+ <g
+ id="g4274-6"
+ inkscape:label="button">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
+ id="path4272-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cssssccc" />
+ </g>
+ <g
+ id="g4280-5"
+ inkscape:label="text">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="1436.9814"
+ id="text4278-3"
+ inkscape:label="home_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan4276-5"
+ x="1090.7626"
+ y="1436.9814"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
+ </g>
+ </g>
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,512.09037,-234.29183)"
+ inkscape:label="HMI:Jump:DropDownPage"
+ id="g2198-6">
+ <g
+ inkscape:label="button"
+ id="g2190-2">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect2188-9"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ rx="35.579063" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g2196-1">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text2194-2"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan2192-7"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">DropDown</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g893-0"
+ inkscape:label="HMI:TextList:TestTextList"
+ transform="matrix(3.539916,0,0,3.539916,-1740.4841,1980.5529)"
+ style="stroke-width:0.28249258">
+ <text
+ inkscape:label="Trois"
+ id="text1382-7-9"
+ y="-171.54395"
+ x="1298.9102"
+ xml:space="preserve"
+ style="stroke-width:0.28249258"><tspan
+ y="-171.54395"
+ x="1298.9102"
+ id="tspan1380-5-3"
+ sodipodi:role="line"
+ style="stroke-width:0.28249258">Three</tspan></text>
+ <text
+ xml:space="preserve"
+ x="1298.9102"
+ y="-191.54395"
+ id="text875-6"
+ inkscape:label="Deux"
+ style="stroke-width:0.28249258"><tspan
+ sodipodi:role="line"
+ id="tspan873-0"
+ x="1298.9102"
+ y="-191.54395"
+ style="stroke-width:0.28249258">Two</tspan></text>
+ <text
+ inkscape:label="Un"
+ id="text879-6"
+ y="-211.54395"
+ x="1298.9102"
+ xml:space="preserve"
+ style="stroke-width:0.28249258"><tspan
+ y="-211.54395"
+ x="1298.9102"
+ id="tspan877-2"
+ sodipodi:role="line"
+ style="stroke-width:0.28249258">One</tspan></text>
+ <text
+ xml:space="preserve"
+ x="1298.9102"
+ y="-231.54395"
+ id="text883-6"
+ inkscape:label="Zero"
+ style="stroke-width:0.28249258"><tspan
+ sodipodi:role="line"
+ id="tspan881-1"
+ x="1298.9102"
+ y="-231.54395"
+ style="stroke-width:0.28249258">Zero</tspan></text>
+ </g>
+ <g
+ transform="matrix(0.28590269,0,0,0.28590269,1653.6069,1022.1289)"
+ id="g1120"
+ inkscape:label="HMI:Input@/SELECTION">
+ <text
+ inkscape:label="value"
+ id="text1110"
+ y="218.24219"
+ x="216.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:end;text-anchor:end;stroke-width:1px"
+ y="218.24219"
+ x="216.32812"
+ id="tspan1108"
+ sodipodi:role="line">8</tspan></text>
+ <path
+ inkscape:label="-1"
+ inkscape:transform-center-y="7.4781812"
+ d="m 302.6459,-210.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-224.98808"
+ sodipodi:cx="276.74072"
+ sodipodi:sides="3"
+ id="path1112"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="scale(1,-1)" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1114"
+ width="407.7037"
+ height="128"
+ x="-174.94055"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1116"
+ sodipodi:sides="3"
+ sodipodi:cx="276.74072"
+ sodipodi:cy="96.444443"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 302.6459,111.4008 -51.81035,0 25.90517,-44.869079 z"
+ inkscape:transform-center-y="-7.4781804"
+ inkscape:label="+1" />
+ <path
+ inkscape:transform-center-x="1.0089177e-06"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1118"
+ sodipodi:sides="4"
+ sodipodi:cx="276.74072"
+ sodipodi:cy="160.71626"
+ sodipodi:r1="41.281136"
+ sodipodi:r2="21.657967"
+ sodipodi:arg1="0.77793027"
+ sodipodi:arg2="1.5633284"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 306.14807,189.68763 -58.37872,0.43598 -0.43597,-58.37872 58.37871,-0.43597 z"
+ inkscape:transform-center-y="-10.828983"
+ inkscape:label="=0" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:80px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.99999988px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1165.3422"
+ y="-584.62439"
+ id="text1129"
+ inkscape:label="HMI:Display@/PUMP0/SLOTH"
+ transform="rotate(90)"><tspan
+ sodipodi:role="line"
+ x="1165.3422"
+ y="-584.62439"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.99999988px"
+ id="tspan1127">000</tspan></text>
+ <text
+ inkscape:label="HMI:Display@/PUMP0/SLOTH"
+ id="text4517"
+ y="455.53851"
+ x="388.12311"
+ style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.57180536px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan4515"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.57180536px"
+ y="455.53851"
+ x="388.12311"
+ sodipodi:role="line">000</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.57180536px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="848.12311"
+ y="415.53851"
+ id="text703"
+ inkscape:label="HMI:Display@level"><tspan
+ sodipodi:role="line"
+ x="848.12311"
+ y="415.53851"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.57180536px"
+ id="tspan701">000</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="2057.6001"
+ y="606.89435"
+ id="text1332"
+ inkscape:label="HMI:Display@/PUMP0/SLOTH"><tspan
+ sodipodi:role="line"
+ x="2057.6001"
+ y="606.89435"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ id="tspan1330">000</tspan></text>
+ <use
+ transform="translate(-2307.336,346.33773)"
+ x="0"
+ y="0"
+ xlink:href="#use1299"
+ inkscape:transform-center-x="0.14620371"
+ inkscape:transform-center-y="2.9995242"
+ id="use1176"
+ width="100%"
+ height="100%"
+ inkscape:label="HMI:ListSwitch@/ALARMSTATUS" />
+ <use
+ height="100%"
+ width="100%"
+ id="use1193"
+ inkscape:transform-center-y="2.9995242"
+ inkscape:transform-center-x="0.14620371"
+ xlink:href="#use1299"
+ y="0"
+ x="0"
+ transform="translate(-2307.336,1146.3377)"
+ inkscape:label="HMI:ListSwitch@/ALARMSTATUS" />
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,-522.96165,161.69266)"
+ id="g443"
+ inkscape:label="HMI:Button|2@/SELECTION"
+ style="stroke-width:1">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect5492"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="23.930969"
+ inkscape:label="inactive"
+ rx="23.930969" />
+ <rect
+ rx="23.930969"
+ inkscape:label="active"
+ ry="23.930969"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect433"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fdfdfd;fill-opacity:1;fill-rule:nonzero;stroke:#ffd0b2;stroke-width:28.60938263;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:1"
+ inkscape:label="text"
+ id="g952">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text950"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan948"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">up</tspan></text>
+ </g>
+ </g>
+ <rect
+ style="color:#000000;fill:#4d4d4d"
+ id="rect1102"
+ width="1280"
+ height="720"
+ x="1480"
+ y="1560"
+ inkscape:label="HMI:Page:Freq0" />
+ <g
+ transform="translate(1463.5642,215.42241)"
+ inkscape:label="HMI:Jump:Home"
+ id="g1126">
+ <g
+ inkscape:label="button"
+ id="g1117">
+ <path
+ sodipodi:nodetypes="cssssccc"
+ inkscape:connector-curvature="0"
+ id="path1114"
+ d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1124">
+ <text
+ inkscape:label="home_jmp"
+ id="text1121"
+ y="1436.9814"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="1436.9814"
+ x="1090.7626"
+ id="tspan1119"
+ sodipodi:role="line">Home</tspan></text>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="1596.0182"
+ y="1635.3634"
+ id="text1144"><tspan
+ sodipodi:role="line"
+ id="tspan1142"
+ x="1596.0182"
+ y="1635.3634">Freq : unspec</tspan></text>
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,1234.9549,1536.0365)"
+ id="g443-2"
+ inkscape:label="HMI:PushButton@/SELECTION"
+ style="stroke-width:1">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect5492-9"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="23.930969"
+ inkscape:label="inactive"
+ rx="23.930969" />
+ <rect
+ rx="23.930969"
+ inkscape:label="active"
+ ry="23.930969"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect433-1"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fdfdfd;fill-opacity:1;fill-rule:nonzero;stroke:#ffd0b2;stroke-width:28.60938263;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:1"
+ inkscape:label="text"
+ id="g952-2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text950-7"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan948-0"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">up</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g4282-9"
+ inkscape:label="HMI:Jump:Freq1"
+ transform="translate(1374.8167,525.99766)">
+ <g
+ id="g4274-3"
+ inkscape:label="button">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 1161.4113,1410.4016 c 19.8481,166.6448 -267.53796,-29.435 -88.0933,-42.5143 33.523,3.0903 62.1263,22.7771 88.0933,42.5143 z"
+ id="path4272-6"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g4280-0"
+ inkscape:label="text">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="1436.9814"
+ id="text4278-6"
+ inkscape:label="home_jmp"><tspan
+ sodipodi:role="line"
+ x="1090.7626"
+ y="1436.9814"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ id="tspan1227">Freq1</tspan></text>
+ </g>
+ </g>
+ <g
+ transform="translate(1174.8167,525.99766)"
+ inkscape:label="HMI:Jump:Freq16"
+ id="g1294">
+ <g
+ inkscape:label="button"
+ id="g1286">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1284"
+ d="m 1161.4113,1410.4016 c 19.8481,166.6448 -267.53796,-29.435 -88.0933,-42.5143 33.523,3.0903 62.1263,22.7771 88.0933,42.5143 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1292">
+ <text
+ inkscape:label="home_jmp"
+ id="text1290"
+ y="1436.9814"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan1288"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="1436.9814"
+ x="1090.7626"
+ sodipodi:role="line">Freq16</tspan></text>
+ </g>
+ </g>
+ <g
+ transform="translate(73.327079,-819.60552)"
+ inkscape:label="HMI:Jump:Freq0"
+ id="g1294-6">
+ <g
+ inkscape:label="button"
+ id="g1286-1">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1284-8"
+ d="m 1161.4113,1410.4016 c 19.8481,166.6448 -267.53796,-29.435 -88.0933,-42.5143 33.523,3.0903 62.1263,22.7771 88.0933,42.5143 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1292-7">
+ <text
+ inkscape:label="home_jmp"
+ id="text1290-9"
+ y="1436.9814"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan1288-2"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="1436.9814"
+ x="1090.7626"
+ sodipodi:role="line">Freq</tspan></text>
+ </g>
+ </g>
+ <rect
+ inkscape:label="HMI:Page:Freq1"
+ y="2340"
+ x="1480"
+ height="720"
+ width="1280"
+ id="rect1326"
+ style="color:#000000;fill:#4d4d4d" />
+ <g
+ id="g1339"
+ inkscape:label="HMI:Jump:Home"
+ transform="translate(1463.5642,995.4224)">
+ <g
+ id="g1330"
+ inkscape:label="button">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
+ id="path1328"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cssssccc" />
+ </g>
+ <g
+ id="g1336"
+ inkscape:label="text">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="1436.9814"
+ id="text1334"
+ inkscape:label="home_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan1332"
+ x="1090.7626"
+ y="1436.9814"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
+ </g>
+ </g>
+ <text
+ id="text1343"
+ y="2415.3633"
+ x="1596.0182"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="2415.3633"
+ x="1596.0182"
+ id="tspan1341"
+ sodipodi:role="line">Freq : 1</tspan></text>
+ <g
+ style="stroke-width:1"
+ inkscape:label="HMI:Button|1@/SELECTION"
+ id="g1369"
+ transform="matrix(0.57180538,0,0,0.57180538,1234.9549,2316.0365)">
+ <rect
+ rx="23.930969"
+ inkscape:label="inactive"
+ ry="23.930969"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1359"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fdfdfd;fill-opacity:1;fill-rule:nonzero;stroke:#ffd0b2;stroke-width:28.60938263;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1361"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="23.930969"
+ inkscape:label="active"
+ rx="23.930969" />
+ <g
+ id="g1367"
+ inkscape:label="text"
+ style="stroke-width:1">
+ <text
+ inkscape:label="setting_jmp"
+ id="text1365"
+ y="656.98151"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="656.98151"
+ x="1090.7626"
+ id="tspan1363"
+ sodipodi:role="line">up</tspan></text>
+ </g>
+ </g>
+ <g
+ transform="translate(1374.8167,1305.9977)"
+ inkscape:label="HMI:Jump:Freq2"
+ id="g1381">
+ <g
+ inkscape:label="button"
+ id="g1373">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1371"
+ d="m 1161.4113,1410.4016 c 19.8481,166.6448 -267.53796,-29.435 -88.0933,-42.5143 33.523,3.0903 62.1263,22.7771 88.0933,42.5143 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1379">
+ <text
+ inkscape:label="home_jmp"
+ id="text1377"
+ y="1436.9814"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan1375"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="1436.9814"
+ x="1090.7626"
+ sodipodi:role="line">Freq2</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g1393"
+ inkscape:label="HMI:Jump:Freq0"
+ transform="translate(1174.8167,1305.9977)">
+ <g
+ id="g1385"
+ inkscape:label="button">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 1161.4113,1410.4016 c 19.8481,166.6448 -267.53796,-29.435 -88.0933,-42.5143 33.523,3.0903 62.1263,22.7771 88.0933,42.5143 z"
+ id="path1383"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g1391"
+ inkscape:label="text">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="1436.9814"
+ id="text1389"
+ inkscape:label="home_jmp"><tspan
+ sodipodi:role="line"
+ x="1090.7626"
+ y="1436.9814"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ id="tspan1387">Freq0</tspan></text>
+ </g>
+ </g>
+ <rect
+ style="color:#000000;fill:#4d4d4d"
+ id="rect1395"
+ width="1280"
+ height="720"
+ x="1480"
+ y="3120"
+ inkscape:label="HMI:Page:Freq2" />
+ <g
+ transform="translate(1463.5642,1775.4224)"
+ inkscape:label="HMI:Jump:Home"
+ id="g1407">
+ <g
+ inkscape:label="button"
+ id="g1399">
+ <path
+ sodipodi:nodetypes="cssssccc"
+ inkscape:connector-curvature="0"
+ id="path1397"
+ d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1405">
+ <text
+ inkscape:label="home_jmp"
+ id="text1403"
+ y="1436.9814"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="1436.9814"
+ x="1090.7626"
+ id="tspan1401"
+ sodipodi:role="line">Home</tspan></text>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="1596.0182"
+ y="3195.3633"
+ id="text1411"><tspan
+ sodipodi:role="line"
+ id="tspan1409"
+ x="1596.0182"
+ y="3195.3633">Freq : 2</tspan></text>
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,1234.9549,3096.0365)"
+ id="g1437"
+ inkscape:label="HMI:Button|2@/SELECTION"
+ style="stroke-width:1">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1427"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="23.930969"
+ inkscape:label="inactive"
+ rx="23.930969" />
+ <rect
+ rx="23.930969"
+ inkscape:label="active"
+ ry="23.930969"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1429"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fdfdfd;fill-opacity:1;fill-rule:nonzero;stroke:#ffd0b2;stroke-width:28.60938263;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:1"
+ inkscape:label="text"
+ id="g1435">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text1433"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan1431"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">up</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g1449"
+ inkscape:label="HMI:Jump:Freq4"
+ transform="translate(1374.8167,2085.9977)">
+ <g
+ id="g1441"
+ inkscape:label="button">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 1161.4113,1410.4016 c 19.8481,166.6448 -267.53796,-29.435 -88.0933,-42.5143 33.523,3.0903 62.1263,22.7771 88.0933,42.5143 z"
+ id="path1439"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g1447"
+ inkscape:label="text">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="1436.9814"
+ id="text1445"
+ inkscape:label="home_jmp"><tspan
+ sodipodi:role="line"
+ x="1090.7626"
+ y="1436.9814"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ id="tspan1443">Freq4</tspan></text>
+ </g>
+ </g>
+ <g
+ transform="translate(1174.8167,2085.9977)"
+ inkscape:label="HMI:Jump:Freq1"
+ id="g1462">
+ <g
+ inkscape:label="button"
+ id="g1453">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1451"
+ d="m 1161.4113,1410.4016 c 19.8481,166.6448 -267.53796,-29.435 -88.0933,-42.5143 33.523,3.0903 62.1263,22.7771 88.0933,42.5143 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1460">
+ <text
+ inkscape:label="home_jmp"
+ id="text1458"
+ y="1436.9814"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan1456"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="1436.9814"
+ x="1090.7626"
+ sodipodi:role="line">Freq1</tspan></text>
+ </g>
+ </g>
+ <rect
+ inkscape:label="HMI:Page:Freq4"
+ y="3900"
+ x="1480"
+ height="720"
+ width="1280"
+ id="rect1465"
+ style="color:#000000;fill:#4d4d4d" />
+ <g
+ id="g1478"
+ inkscape:label="HMI:Jump:Home"
+ transform="translate(1463.5642,2555.4224)">
+ <g
+ id="g1469"
+ inkscape:label="button">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
+ id="path1467"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cssssccc" />
+ </g>
+ <g
+ id="g1476"
+ inkscape:label="text">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="1436.9814"
+ id="text1473"
+ inkscape:label="home_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan1471"
+ x="1090.7626"
+ y="1436.9814"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
+ </g>
+ </g>
+ <text
+ id="text1483"
+ y="3975.3633"
+ x="1596.0182"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="3975.3633"
+ x="1596.0182"
+ sodipodi:role="line"
+ id="tspan1604">Freq : 4</tspan></text>
+ <g
+ style="stroke-width:1"
+ inkscape:label="HMI:Button|4@/SELECTION"
+ id="g1510"
+ transform="matrix(0.57180538,0,0,0.57180538,1234.9549,3876.0365)">
+ <rect
+ rx="23.930969"
+ inkscape:label="inactive"
+ ry="23.930969"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1500"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fdfdfd;fill-opacity:1;fill-rule:nonzero;stroke:#ffd0b2;stroke-width:28.60938263;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1502"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="23.930969"
+ inkscape:label="active"
+ rx="23.930969" />
+ <g
+ id="g1508"
+ inkscape:label="text"
+ style="stroke-width:1">
+ <text
+ inkscape:label="setting_jmp"
+ id="text1506"
+ y="656.98151"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="656.98151"
+ x="1090.7626"
+ id="tspan1504"
+ sodipodi:role="line">up</tspan></text>
+ </g>
+ </g>
+ <g
+ transform="translate(1374.8167,2865.9977)"
+ inkscape:label="HMI:Jump:Freq16"
+ id="g1522">
+ <g
+ inkscape:label="button"
+ id="g1514">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1512"
+ d="m 1161.4113,1410.4016 c 19.8481,166.6448 -267.53796,-29.435 -88.0933,-42.5143 33.523,3.0903 62.1263,22.7771 88.0933,42.5143 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1520">
+ <text
+ inkscape:label="home_jmp"
+ id="text1518"
+ y="1436.9814"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan1516"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="1436.9814"
+ x="1090.7626"
+ sodipodi:role="line">Freq16</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g1534"
+ inkscape:label="HMI:Jump:Freq2"
+ transform="translate(1174.8167,2865.9977)">
+ <g
+ id="g1526"
+ inkscape:label="button">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 1161.4113,1410.4016 c 19.8481,166.6448 -267.53796,-29.435 -88.0933,-42.5143 33.523,3.0903 62.1263,22.7771 88.0933,42.5143 z"
+ id="path1524"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g1532"
+ inkscape:label="text">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="1436.9814"
+ id="text1530"
+ inkscape:label="home_jmp"><tspan
+ sodipodi:role="line"
+ x="1090.7626"
+ y="1436.9814"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ id="tspan1528">Freq2</tspan></text>
+ </g>
+ </g>
+ <rect
+ style="color:#000000;fill:#4d4d4d"
+ id="rect1536"
+ width="1280"
+ height="720"
+ x="1480"
+ y="4680"
+ inkscape:label="HMI:Page:Freq16" />
+ <g
+ transform="translate(1463.5642,3335.4224)"
+ inkscape:label="HMI:Jump:Home"
+ id="g1548">
+ <g
+ inkscape:label="button"
+ id="g1540">
+ <path
+ sodipodi:nodetypes="cssssccc"
+ inkscape:connector-curvature="0"
+ id="path1538"
+ d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1546">
+ <text
+ inkscape:label="home_jmp"
+ id="text1544"
+ y="1436.9814"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="1436.9814"
+ x="1090.7626"
+ id="tspan1542"
+ sodipodi:role="line">Home</tspan></text>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="1596.0182"
+ y="4755.3633"
+ id="text1552"><tspan
+ sodipodi:role="line"
+ id="tspan1550"
+ x="1596.0182"
+ y="4755.3633">Freq : 16</tspan><tspan
+ sodipodi:role="line"
+ x="1596.0182"
+ y="4805.3633"
+ id="tspan1608" /></text>
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,1234.9549,4656.0365)"
+ id="g1578"
+ inkscape:label="HMI:Button|16@/SELECTION"
+ style="stroke-width:1">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1568"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="23.930969"
+ inkscape:label="inactive"
+ rx="23.930969" />
+ <rect
+ rx="23.930969"
+ inkscape:label="active"
+ ry="23.930969"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1570"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fdfdfd;fill-opacity:1;fill-rule:nonzero;stroke:#ffd0b2;stroke-width:28.60938263;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:1"
+ inkscape:label="text"
+ id="g1576">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text1574"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan1572"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">up</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g1590"
+ inkscape:label="HMI:Jump:Freq0"
+ transform="translate(1374.8167,3645.9977)">
+ <g
+ id="g1582"
+ inkscape:label="button">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 1161.4113,1410.4016 c 19.8481,166.6448 -267.53796,-29.435 -88.0933,-42.5143 33.523,3.0903 62.1263,22.7771 88.0933,42.5143 z"
+ id="path1580"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g1588"
+ inkscape:label="text">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="1436.9814"
+ id="text1586"
+ inkscape:label="home_jmp"><tspan
+ sodipodi:role="line"
+ x="1090.7626"
+ y="1436.9814"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ id="tspan1584">Freq0</tspan></text>
+ </g>
+ </g>
+ <g
+ transform="translate(1174.8167,3645.9977)"
+ inkscape:label="HMI:Jump:Freq4"
+ id="g1602">
+ <g
+ inkscape:label="button"
+ id="g1594">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1592"
+ d="m 1161.4113,1410.4016 c 19.8481,166.6448 -267.53796,-29.435 -88.0933,-42.5143 33.523,3.0903 62.1263,22.7771 88.0933,42.5143 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1600">
+ <text
+ inkscape:label="home_jmp"
+ id="text1598"
+ y="1436.9814"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan1596"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="1436.9814"
+ x="1090.7626"
+ sodipodi:role="line">Freq4</tspan></text>
+ </g>
+ </g>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_i18n/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,5 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="PYRO://127.0.0.1:61284">
+ <TargetType/>
+ <Libraries Enable_SVGHMI_Library="true"/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_i18n/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,73 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
+ <contentHeader name="Unnamed" modificationDateTime="2021-01-19T09:52:38">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="5" y="5"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="MainStuff" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="TargetPressure">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ <variable name="selection">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
+ <position x="445" y="65"/>
+ <connectionPointOut>
+ <relPosition x="125" y="15"/>
+ </connectionPointOut>
+ <expression>TargetPressure</expression>
+ </inVariable>
+ <outVariable localId="10" executionOrderId="0" height="25" width="85" negated="false">
+ <position x="710" y="105"/>
+ <connectionPointIn>
+ <relPosition x="0" y="10"/>
+ <connection refLocalId="5">
+ <position x="710" y="115"/>
+ <position x="640" y="115"/>
+ <position x="640" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ <expression>selection</expression>
+ </outVariable>
+ </FBD>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="resource1">
+ <task name="task0" priority="0" interval="T#20ms">
+ <pouInstance name="instance0" typeName="MainStuff"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_i18n/svghmi_0@svghmi/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="svghmi_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_i18n/svghmi_0@svghmi/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<SVGHMI xmlns:xsd="http://www.w3.org/2001/XMLSchema" OnWatchdog="echo Watchdog for {name} !" OnStart="chromium http://127.0.0.1:{port}/{name}" OnStop="echo Closing {name}" WatchdogInitial="10" WatchdogInterval="5"/>
Binary file tests/projects/svghmi_i18n/svghmi_0@svghmi/fr_FR.mo has changed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_i18n/svghmi_0@svghmi/fr_FR.po Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,42 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR ORGANIZATION
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"POT-Creation-Date: 2021-02-14 18:36+CET\n"
+"PO-Revision-Date: 2021-02-14 18:37+0100\n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Language: fr_FR\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: SVGHMI 1.0\n"
+"X-Generator: Poedit 2.4.2\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+msgid "height is %d meters"
+msgstr "la hauteur est de %d metres"
+
+msgid "This is an integer value : %d"
+msgstr "C'est un nombre entier : %d"
+
+msgid "Some \"other\" ČĆĐš english text"
+msgstr "De l'\"autre\" texte en français žfšŽŠĐĆČ"
+
+msgid ""
+"Some english text\n"
+"another line\n"
+"a third one"
+msgstr ""
+"Trois lignes en francais\n"
+"blah\n"
+"blah"
+
+#~ msgid "Some english text"
+#~ msgstr "Du texte en français"
+
+#~ msgid "Blah"
+#~ msgstr "Blup"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_i18n/svghmi_0@svghmi/messages.pot Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,36 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR ORGANIZATION
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2021-02-15 14:45+CET\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: SVGHMI 1.0\n"
+
+
+#:svghmi.svg: format:text424
+msgid "height is %d meters"
+msgstr ""
+
+#:svghmi.svg: format:text5271
+msgid "This is an integer value : %d"
+msgstr ""
+
+#:svghmi.svg: someothertext:text5267
+msgid "Some \"other\" ČĆĐš english text"
+msgstr ""
+
+#:svghmi.svg: sometext:text5283
+msgid ""
+"Some english text\n"
+"another line\n"
+"a third one"
+msgstr ""
+
Binary file tests/projects/svghmi_i18n/svghmi_0@svghmi/sl_SI.mo has changed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_i18n/svghmi_0@svghmi/sl_SI.po Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,37 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR ORGANIZATION
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"POT-Creation-Date: 2021-02-14 18:36+CET\n"
+"PO-Revision-Date: 2021-02-14 18:38+0100\n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Language: sl_SI\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: SVGHMI 1.0\n"
+"X-Generator: Poedit 2.4.2\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
+"%100<=4 ? 2 : 3);\n"
+
+msgid "height is %d meters"
+msgstr "To je celo število %d m"
+
+msgid "This is an integer value : %d"
+msgstr "To je celo število %d"
+
+msgid "Some \"other\" ČĆĐš english text"
+msgstr "En drug angleški tekt"
+
+msgid ""
+"Some english text\n"
+"another line\n"
+"a third one"
+msgstr ""
+"En angleški tekst\n"
+"druga vrstica\n"
+"tretja vrstica"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_i18n/svghmi_0@svghmi/svghmi.svg Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2632 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
+ sodipodi:docname="svghmi.svg"
+ id="hmi0"
+ version="1.1"
+ viewBox="0 0 1280 720"
+ height="720"
+ width="1280">
+ <metadata
+ id="metadata4542">
+ <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>
+ <defs
+ id="defs2">
+ <linearGradient
+ id="linearGradient48067"
+ inkscape:collect="always">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0"
+ id="stop48065" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="1"
+ id="stop48063" />
+ </linearGradient>
+ <marker
+ style="overflow:visible"
+ id="marker47537"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#464646;fill-opacity:1;fill-rule:evenodd;stroke:#464646;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path47535" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="marker35048"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path35046" />
+ </marker>
+ <linearGradient
+ id="linearGradient34303"
+ osb:paint="solid">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop34301" />
+ </linearGradient>
+ <marker
+ style="overflow:visible"
+ id="marker33393"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path33391" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker30413"
+ style="overflow:visible">
+ <path
+ id="path30411"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker27950"
+ style="overflow:visible">
+ <path
+ id="path27948"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker21366"
+ style="overflow:visible">
+ <path
+ id="path21364"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="marker20902"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path20900" />
+ </marker>
+ <linearGradient
+ id="linearGradient20537"
+ osb:paint="solid">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop20535" />
+ </linearGradient>
+ <marker
+ style="overflow:visible"
+ id="marker14281"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path14279" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker13481"
+ style="overflow:visible">
+ <path
+ id="path13479"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker13093"
+ style="overflow:visible">
+ <path
+ id="path13091"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker30978"
+ style="overflow:visible;"
+ inkscape:isstock="true">
+ <path
+ id="path30976"
+ 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:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
+ transform="scale(0.4) rotate(180) translate(10,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="DotM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker30668"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ id="path30666"
+ 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 "
+ style="fill-rule:evenodd;stroke:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
+ transform="scale(0.4) translate(7.4, 1)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible;"
+ id="marker29562"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend">
+ <path
+ transform="scale(0.4) rotate(180) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ 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="path29560" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker29276"
+ style="overflow:visible;"
+ inkscape:isstock="true">
+ <path
+ id="path29274"
+ 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:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ transform="scale(0.4) rotate(180) translate(10,0)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible;"
+ id="marker28710"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend">
+ <path
+ transform="scale(0.4) rotate(180) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ 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="path28708" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker28436"
+ style="overflow:visible;"
+ inkscape:isstock="true">
+ <path
+ id="path28434"
+ 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:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ transform="scale(0.4) rotate(180) translate(10,0)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible;"
+ id="marker27764"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend">
+ <path
+ transform="scale(0.4) rotate(180) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
+ 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="path27762" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker27514"
+ 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:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
+ d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+ id="path27512" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker25879"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="SquareL">
+ <path
+ transform="scale(0.8)"
+ style="fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M -5,-5 V 5 H 5 V -5 Z"
+ id="path25877"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker24867"
+ style="overflow:visible;"
+ inkscape:isstock="true">
+ <path
+ id="path8226"
+ style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#3ee800;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ 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:isstock="true"
+ style="overflow:visible;"
+ id="marker22543"
+ 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="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
+ id="path22541" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker21870"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend">
+ <path
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path21868"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker21674"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="SquareL">
+ <path
+ transform="scale(0.8)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M -5,-5 V 5 H 5 V -5 Z"
+ id="path21672"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="SquareL"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker20566"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ id="path20564"
+ d="M -5.0,-5.0 L -5.0,5.0 L 5.0,5.0 L 5.0,-5.0 L -5.0,-5.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
+ transform="scale(0.8)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker20382"
+ style="overflow:visible;"
+ inkscape:isstock="true">
+ <path
+ id="path20380"
+ 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:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
+ transform="scale(0.8) rotate(180) translate(12.5,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="SquareL"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="SquareL"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ id="path8275"
+ d="M -5.0,-5.0 L -5.0,5.0 L 5.0,5.0 L 5.0,-5.0 L -5.0,-5.0 z "
+ style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
+ transform="scale(0.8)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Lstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker19998"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ id="path19996"
+ 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:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
+ transform="scale(0.8) translate(12.5,0)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker19672"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mstart">
+ <path
+ transform="scale(0.4) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
+ 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="path19670" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker19488"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="DiamondMend">
+ <path
+ transform="scale(0.4) translate(-6.5,0)"
+ style="fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1;fill:none;fill-opacity:1"
+ d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
+ id="path19486" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker19352"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="DiamondMend">
+ <path
+ transform="scale(0.4) translate(-6.5,0)"
+ style="fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1;fill:none;fill-opacity:1"
+ d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
+ id="path19350" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible;"
+ id="marker17321"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend">
+ <path
+ transform="scale(0.4) rotate(180) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
+ 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="path17319" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker17197"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mstart">
+ <path
+ transform="scale(0.4) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
+ 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="path17195" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker16921"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="DiamondMend">
+ <path
+ transform="scale(0.4) translate(-6.5,0)"
+ style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
+ id="path16919" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker16821"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="DiamondMend">
+ <path
+ transform="scale(0.4) translate(-6.5,0)"
+ style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
+ id="path16819" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Lstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow1Lstart"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ id="path8205"
+ 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:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
+ transform="scale(0.8) translate(12.5,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Lstart"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ id="path8223"
+ style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff3000;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
+ 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) translate(1,0)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker10905"
+ 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path10903"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow1Lend"
+ style="overflow:visible;"
+ inkscape:isstock="true">
+ <path
+ id="path8208"
+ 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:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
+ transform="scale(0.8) rotate(180) translate(12.5,0)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker1971"
+ 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path1969"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker1536"
+ 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path1534"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker1656"
+ 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path1654"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="1454.3019 : 921.18786 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="2782.3019 : 507.18786 : 1"
+ inkscape:persp3d-origin="2094.3019 : 801.18786 : 1"
+ id="perspective1372" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="1424.3019 : 863.18786 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="2800.3019 : 891.18786 : 1"
+ inkscape:persp3d-origin="2064.3019 : 743.18786 : 1"
+ id="perspective1370" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="73.983557 : 377.52255 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1401.9836 : -36.477445 : 1"
+ inkscape:persp3d-origin="713.98356 : 257.52255 : 1"
+ id="perspective503" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="43.983597 : 319.52255 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1419.9836 : 347.52255 : 1"
+ inkscape:persp3d-origin="683.98356 : 199.52255 : 1"
+ id="perspective445" />
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker926"
+ 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path924"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <linearGradient
+ id="linearGradient3919"
+ inkscape:collect="always">
+ <stop
+ id="stop3921"
+ style="stop-color:#ffffff"
+ offset="0" />
+ <stop
+ id="stop3923"
+ style="stop-color:#ffffff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3862">
+ <stop
+ id="stop3864"
+ style="stop-color:#414141"
+ offset="0" />
+ <stop
+ id="stop3868"
+ style="stop-color:#41433f"
+ offset=".15789" />
+ <stop
+ id="stop3866"
+ style="stop-color:#000000"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3994">
+ <stop
+ id="stop3996"
+ style="stop-color:#626262"
+ offset="0" />
+ <stop
+ id="stop4000"
+ style="stop-color:#919191"
+ offset=".74085" />
+ <stop
+ id="stop3998"
+ style="stop-color:#ceced2"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4108">
+ <stop
+ id="stop4110"
+ style="stop-color:#ddcf1b"
+ offset="0" />
+ <stop
+ id="stop4112"
+ style="stop-color:#ccd21b"
+ offset="0.28542241" />
+ <stop
+ id="stop4114"
+ style="stop-color:#2bb733"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4292">
+ <stop
+ id="stop4294"
+ style="stop-color:#666666"
+ offset="0" />
+ <stop
+ id="stop4296"
+ style="stop-color:#c3c3c5"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient9759"
+ xlink:href="#linearGradient3862"
+ gradientUnits="userSpaceOnUse"
+ cy="271.12"
+ cx="488.75"
+ gradientTransform="matrix(-1.1814,2.021e-7,-1.7895e-7,-0.97615,1072.1,866.87)"
+ r="57.629002"
+ inkscape:collect="always" />
+ <marker
+ inkscape:stockid="DiamondMend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="DiamondMend-9"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path8305-2"
+ d="M 0,-7.0710768 -7.0710894,0 0,7.0710589 7.0710462,0 Z"
+ style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(0.4,0,0,0.4,-2.6,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="DiamondMend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker16719"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path16717"
+ d="M 0,-7.0710768 -7.0710894,0 0,7.0710589 7.0710462,0 Z"
+ style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(0.4,0,0,0.4,-2.6,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mstart"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow1Mstart-2"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path8211-3"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(0.4,0,0,0.4,4,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow1Mend-7"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path8214-5"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+ </marker>
+ <linearGradient
+ id="linearGradient5712">
+ <stop
+ id="stop5714"
+ style="stop-color:#cccccc"
+ offset="0" />
+ <stop
+ id="stop5716"
+ style="stop-color:#ffffff;stop-opacity:0"
+ offset=".12299" />
+ <stop
+ id="stop5718"
+ style="stop-color:#999999;stop-opacity:.63813"
+ offset="1" />
+ </linearGradient>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker23223-1"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.4,0,0,-0.4,-4,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path23221-2" />
+ </marker>
+ <marker
+ inkscape:stockid="DotM"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="DotM-2"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path8269-0"
+ 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"
+ style="fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(0.4,0,0,0.4,2.96,0.4)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker26099-6"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26097-1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker19820-5"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.4,0,0,-0.4,-4,0)"
+ style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path19818-4" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker25117-7"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25115-6"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow1Lend-3"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path8208-5"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#fffffc;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+ </marker>
+ <radialGradient
+ id="radialGradient4432-9"
+ xlink:href="#linearGradient3862"
+ gradientUnits="userSpaceOnUse"
+ cy="331.47"
+ cx="487.54999"
+ gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
+ r="57.629002"
+ inkscape:collect="always" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4436-7"
+ id="radialGradient2918-3"
+ cx="1043.1659"
+ cy="285.35944"
+ fx="1043.1659"
+ fy="285.35944"
+ r="192.22134"
+ gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ id="radialGradient4436-7"
+ gradientUnits="userSpaceOnUse"
+ cy="336.42001"
+ cx="491.09"
+ gradientTransform="matrix(1.1429,0,0,1.1429,-73.994,-53.898)"
+ r="42.073002"
+ inkscape:collect="always">
+ <stop
+ id="stop3894-5"
+ style="stop-color:#ddcf1b"
+ offset="0" />
+ <stop
+ id="stop3898-9"
+ style="stop-color:#ccd21b"
+ offset=".5" />
+ <stop
+ id="stop3896-2"
+ style="stop-color:#2bb733"
+ offset="1" />
+ </radialGradient>
+ <radialGradient
+ id="radialGradient4438-2"
+ xlink:href="#linearGradient3919"
+ gradientUnits="userSpaceOnUse"
+ cy="379.03"
+ cx="520.47998"
+ gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
+ r="57.629002"
+ inkscape:collect="always" />
+ <radialGradient
+ id="radialGradient5322"
+ xlink:href="#linearGradient3862"
+ gradientUnits="userSpaceOnUse"
+ cy="331.47"
+ cx="487.54999"
+ gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
+ r="57.629002"
+ inkscape:collect="always" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4436-7"
+ id="radialGradient5340"
+ cx="1043.1659"
+ cy="285.35944"
+ fx="1043.1659"
+ fy="285.35944"
+ r="192.22134"
+ gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ id="radialGradient5350"
+ xlink:href="#linearGradient3919"
+ gradientUnits="userSpaceOnUse"
+ cy="379.03"
+ cx="520.47998"
+ gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
+ r="57.629002"
+ inkscape:collect="always" />
+ <marker
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow1Lend-3-9"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path8208-5-3"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#fffffc;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+ </marker>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3862"
+ id="radialGradient8154-3"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
+ cx="487.54999"
+ cy="331.47"
+ r="57.629002" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4436-5"
+ id="radialGradient8158-1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
+ cx="1043.1659"
+ cy="285.35944"
+ fx="1043.1659"
+ fy="285.35944"
+ r="192.22134" />
+ <radialGradient
+ id="radialGradient4436-5"
+ gradientUnits="userSpaceOnUse"
+ cy="336.42001"
+ cx="491.09"
+ gradientTransform="matrix(1.1429,0,0,1.1429,-73.994,-53.898)"
+ r="42.073002"
+ inkscape:collect="always">
+ <stop
+ id="stop3894-54"
+ style="stop-color:#ddcf1b"
+ offset="0" />
+ <stop
+ id="stop3898-7"
+ style="stop-color:#ccd21b"
+ offset=".5" />
+ <stop
+ id="stop3896-6"
+ style="stop-color:#2bb733"
+ offset="1" />
+ </radialGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3919"
+ id="radialGradient8160-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
+ cx="520.47998"
+ cy="379.03"
+ r="57.629002" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4440-9"
+ id="radialGradient8162-6"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
+ cx="477.91"
+ cy="325.29001"
+ r="26.870001" />
+ <radialGradient
+ id="radialGradient4440-9"
+ gradientUnits="userSpaceOnUse"
+ cy="325.29001"
+ cx="477.91"
+ gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
+ r="26.870001"
+ inkscape:collect="always">
+ <stop
+ id="stop3876-3"
+ style="stop-color:#333333"
+ offset="0" />
+ <stop
+ id="stop3878-7"
+ style="stop-color:#333333;stop-opacity:0"
+ offset="1" />
+ </radialGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3862"
+ id="radialGradient8996"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
+ cx="487.54999"
+ cy="331.47"
+ r="57.629002" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4436-5"
+ id="radialGradient9014"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
+ cx="1043.1659"
+ cy="285.35944"
+ fx="1043.1659"
+ fy="285.35944"
+ r="192.22134" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3919"
+ id="radialGradient9024"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
+ cx="520.47998"
+ cy="379.03"
+ r="57.629002" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4440-9"
+ id="radialGradient9032"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
+ cx="477.91"
+ cy="325.29001"
+ r="26.870001" />
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker22786-9"
+ style="overflow:visible">
+ <path
+ id="path22784-6"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker22786-3"
+ style="overflow:visible">
+ <path
+ id="path22784-3"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker22786-8"
+ style="overflow:visible">
+ <path
+ id="path22784-60"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <pattern
+ patternUnits="userSpaceOnUse"
+ width="1280"
+ height="720"
+ patternTransform="translate(-120,1560)"
+ id="pattern32315">
+ <g
+ inkscape:label="HMI:Keypad:HMI_STRING:HMI_LOCAL:PAGE_LOCAL"
+ id="use32313"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ transform="matrix(3.3549332,0,0,3.14525,-181.87457,-3.9802)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:label="Background"
+ inkscape:connector-curvature="0"
+ id="path4383"
+ d="M 54.211084,1.2654702 H 435.7388 V 230.18209 H 54.211084 Z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:label="Space"
+ inkscape:connector-curvature="0"
+ d="m 162,197 h -11 c -2,0 -3,1 -3,3 v 18 c 0,2 1,3 3,3 h 11 168 18 c 0,0 1,-1 1,-3 v -18 c 0,-2 -1,-3 -1,-3 h -18 z"
+ id="path4385"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <g
+ transform="translate(0,-19.076386)"
+ style="stroke-width:0.47631353"
+ inkscape:label="Keys"
+ id="g4627">
+ <g
+ transform="translate(0,-9.5381931)"
+ style="stroke-width:0.47631353"
+ inkscape:label="q Q"
+ id="g4391">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path4387"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text4389"
+ y="138.28395"
+ x="99.378708">Q</text>
+ </g>
+ <g
+ transform="translate(0,-9.5381931)"
+ style="stroke-width:0.47631353"
+ inkscape:label="w W"
+ id="g4397">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path4393"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text4395"
+ y="138.28395"
+ x="127.0709">W</text>
+ </g>
+ <g
+ transform="translate(0,-9.5381931)"
+ style="stroke-width:0.47631353"
+ inkscape:label="e E"
+ id="g4403">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path4399"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text4401"
+ y="138.28395"
+ x="159.70854">E</text>
+ </g>
+ <g
+ transform="translate(0,-9.5381931)"
+ style="stroke-width:0.47631353"
+ inkscape:label="r R"
+ id="g4409">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 184,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path4405"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text4407"
+ y="138.28395"
+ x="188.39003">R</text>
+ </g>
+ <g
+ transform="translate(0,-9.5381931)"
+ style="stroke-width:0.47631353"
+ inkscape:label="t T"
+ id="g4415">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 213,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ id="path4411"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text4413"
+ y="138.28395"
+ x="219.04961">T</text>
+ </g>
+ <g
+ transform="translate(0,-9.5381931)"
+ style="stroke-width:0.47631353"
+ inkscape:label="y Y"
+ id="g4421">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 243,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ id="path4417"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text4419"
+ y="138.28395"
+ x="248.72017">Y</text>
+ </g>
+ <g
+ transform="translate(0,-9.5381931)"
+ style="stroke-width:0.47631353"
+ inkscape:label="u U"
+ id="g4427">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 273,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ id="path4423"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text4425"
+ y="138.28395"
+ x="278.39075">U</text>
+ </g>
+ <g
+ transform="translate(0,-9.5381931)"
+ style="stroke-width:0.47631353"
+ inkscape:label="i I"
+ id="g4433">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 302,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ id="path4429"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text4431"
+ y="138.28395"
+ x="311.02859">I</text>
+ </g>
+ <g
+ transform="translate(0,-9.5381931)"
+ style="stroke-width:0.47631353"
+ inkscape:label="o O"
+ id="g4439">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 332,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ id="path4435"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text4437"
+ y="138.28395"
+ x="336.74319">O</text>
+ </g>
+ <g
+ transform="translate(0,-9.5381931)"
+ style="stroke-width:0.47631353"
+ inkscape:label="p P"
+ id="g4445">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 362,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ id="path4441"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text4443"
+ y="138.28395"
+ x="367.40256">P</text>
+ </g>
+ <g
+ inkscape:label="a A"
+ id="g4451"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4447"
+ d="m 103,147 h 19 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="107.29005"
+ y="163.99854"
+ id="text4449"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">A</text>
+ </g>
+ <g
+ inkscape:label="s S"
+ id="g4457"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4453"
+ d="m 132,147 h 20 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="137.95012"
+ y="163.99854"
+ id="text4455"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">S</text>
+ </g>
+ <g
+ inkscape:label="d D"
+ id="g4463"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4459"
+ d="m 162,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="166.63159"
+ y="163.99854"
+ id="text4461"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">D</text>
+ </g>
+ <g
+ inkscape:label="f F"
+ id="g4469"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4465"
+ d="m 192,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="197.29166"
+ y="163.99854"
+ id="text4467"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">F</text>
+ </g>
+ <g
+ inkscape:label="g G"
+ id="g4475"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4471"
+ d="m 221,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="225.97284"
+ y="163.99854"
+ id="text4473"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">G</text>
+ </g>
+ <g
+ inkscape:label="h H"
+ id="g4481"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4477"
+ d="m 251,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="255.64342"
+ y="163.99854"
+ id="text4479"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">H</text>
+ </g>
+ <g
+ inkscape:label="j J"
+ id="g4487"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4483"
+ d="m 281,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="287.29208"
+ y="163.99854"
+ id="text4485"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">J</text>
+ </g>
+ <g
+ inkscape:label="k K"
+ id="g4493"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4489"
+ d="m 310,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="314.98465"
+ y="163.99854"
+ id="text4491"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">K</text>
+ </g>
+ <g
+ inkscape:label="l L"
+ id="g4500"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4495"
+ d="m 340,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="345.64444"
+ y="163.99854"
+ id="text4498"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">L</text>
+ </g>
+ <g
+ transform="translate(0,9.5381929)"
+ inkscape:label="z Z"
+ id="g4506"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4502"
+ d="m 113,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="119.15855"
+ y="188.72411"
+ id="text4504"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">Z</text>
+ </g>
+ <g
+ transform="translate(0,9.5381929)"
+ inkscape:label="x X"
+ id="g4512"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4508"
+ d="m 143,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="148.82933"
+ y="188.72411"
+ id="text4510"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">X</text>
+ </g>
+ <g
+ transform="translate(0,9.5381929)"
+ inkscape:label="c C"
+ id="g4518"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4514"
+ d="m 173,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="178.50011"
+ y="188.72411"
+ id="text4516"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">C</text>
+ </g>
+ <g
+ transform="translate(0,9.5381929)"
+ inkscape:label="v V"
+ id="g4524"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4520"
+ d="m 202,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c 0,0 -1,-1 -1,-3 v -17 c 0,-1 1,-3 1,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="208.16988"
+ y="188.72411"
+ id="text4522"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">V</text>
+ </g>
+ <g
+ transform="translate(0,9.5381929)"
+ inkscape:label="b B"
+ id="g4530"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4526"
+ d="m 233,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="237.84096"
+ y="188.72411"
+ id="text4528"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">B</text>
+ </g>
+ <g
+ transform="translate(0,9.5381929)"
+ inkscape:label="n N"
+ id="g4537"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4532"
+ d="m 263,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="267.51193"
+ y="188.72411"
+ id="text4534"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">N</text>
+ </g>
+ <g
+ transform="translate(0,9.5381929)"
+ inkscape:label="m M"
+ id="g4543"
+ style="fill-rule:evenodd;stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4539"
+ d="m 293,172 h 19 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -19 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="296.1933"
+ y="188.72411"
+ id="text4541"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">M</text>
+ </g>
+ <g
+ transform="translate(0,9.5381929)"
+ style="stroke-width:0.47631353"
+ inkscape:label=". :"
+ id="g4552">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4545"
+ d="m 352,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="359.58276"
+ y="189.66107"
+ id="text4547"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928513)">.</text>
+ <text
+ transform="scale(1.0007154,0.99928512)"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text4549"
+ y="181.64532"
+ x="359.58276">:</text>
+ </g>
+ <g
+ transform="translate(0,9.5381929)"
+ style="stroke-width:0.47631353"
+ inkscape:label=", ;"
+ id="g4560">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4554"
+ d="m 322,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928512)"
+ x="330.00806"
+ y="181.64532"
+ id="text4556"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826">;</text>
+ <text
+ id="text4558"
+ transform="scale(1.0007154,0.99928512)"
+ x="330.00806"
+ y="189.66107"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826">,</text>
+ </g>
+ <g
+ transform="translate(-13.353469,-45.783327)"
+ id="g4567"
+ inkscape:label="1"
+ style="stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4562"
+ d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928513)"
+ x="101.07153"
+ y="138.28395"
+ id="text4564"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">1</text>
+ </g>
+ <g
+ transform="translate(-13.353469,-45.783327)"
+ id="g4573"
+ inkscape:label="2"
+ style="stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4569"
+ d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928513)"
+ x="130.18704"
+ y="138.28395"
+ id="text4571"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">2</text>
+ </g>
+ <g
+ transform="translate(-13.353469,-45.783327)"
+ style="stroke-width:0.47631353"
+ id="g4579"
+ inkscape:label="3">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4575"
+ d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="159.70854"
+ y="138.28395"
+ id="text4577"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">3</text>
+ </g>
+ <g
+ transform="translate(0,-19.076386)"
+ inkscape:label="4"
+ id="g4585">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4581"
+ d="m 170.64653,94.293059 h 19 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 V 97.293059 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="176.39188"
+ y="111.55791"
+ id="text4583"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">4</text>
+ </g>
+ <g
+ transform="translate(0,-19.076386)"
+ inkscape:label="5"
+ id="g4591">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4587"
+ d="m 199.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="205.70567"
+ y="111.55791"
+ id="text4589"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">5</text>
+ </g>
+ <g
+ transform="translate(0,-19.076386)"
+ inkscape:label="6"
+ id="g4597">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4593"
+ d="m 229.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="236.15851"
+ y="111.55791"
+ id="text4595"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">6</text>
+ </g>
+ <g
+ transform="translate(0,-19.076386)"
+ inkscape:label="7"
+ id="g4603">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4599"
+ d="m 259.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="266.06564"
+ y="111.55791"
+ id="text4601"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">7</text>
+ </g>
+ <g
+ transform="translate(0,-19.076386)"
+ inkscape:label="8"
+ id="g4609">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4605"
+ d="m 288.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="295.08231"
+ y="111.55791"
+ id="text4607"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">8</text>
+ </g>
+ <g
+ transform="translate(0,-19.076386)"
+ inkscape:label="9 -"
+ id="g4617">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4611"
+ d="m 318.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="325.05408"
+ y="111.55791"
+ id="text4613"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">9</text>
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text4615"
+ y="102.42173"
+ x="335.72681"
+ transform="scale(1.0007154,0.99928511)">-</text>
+ </g>
+ <g
+ transform="translate(0,-19.076386)"
+ inkscape:label="0 +"
+ id="g4625">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4619"
+ d="m 348.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="355.05984"
+ y="111.55791"
+ id="text4621"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">0</text>
+ <text
+ x="365.30151"
+ y="102.42173"
+ id="text4623"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928511)">+</text>
+ </g>
+ </g>
+ <g
+ style="stroke-width:0.47631353"
+ inkscape:label="Esc"
+ id="g4633"
+ transform="translate(335.89988,-58.934803)">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ inkscape:connector-curvature="0"
+ d="m 47.948645,115.07509 h 39.076386 c 1,0 3,1 3,3 v 18 c 0,1 -2,3 -3,3 H 47.948645 c -2,0 -3,-2 -3,-3 v -18 c 0,-2 1,-3 3,-3 z"
+ id="path4629"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ x="59.288635"
+ y="130.02028"
+ id="text4631"
+ style="font-weight:normal;font-size:9.37966251px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928512)">Esc</text>
+ </g>
+ <g
+ transform="translate(0,-19.076386)"
+ style="stroke-width:0.47631353"
+ id="g4639"
+ inkscape:label="Enter">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 368.68274,170 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 54.24217 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ id="path4635"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4637"
+ transform="matrix(0.47690966,0,0,0.47690966,531.12074,-361.18588)"
+ d="m -260.23633,1080.8125 v 15.7949 h -38.68555 v -3 l -6.91992,4 6.91992,4 v -3.0019 h 40.6836 v -17.793 z"
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ transform="translate(2.3648311e-6,-28.614579)"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4645"
+ inkscape:label="BackSpace">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 391.97749,144 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 30.94742 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ id="path4641"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4643"
+ transform="matrix(0.47690966,0,0,0.47690966,531.12074,-351.64769)"
+ d="m -268.72656,1011.1777 -6.91992,4 6.91992,4 v -3.0019 h 29.18945 v -1.9981 h -29.18945 z"
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="CapsLock"
+ id="g4663">
+ <g
+ transform="translate(0,-19.076386)"
+ style="display:inline;fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4653"
+ inkscape:label="inactive">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
+ id="path4647"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ transform="scale(1.0007154,0.99928515)"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
+ id="text4649"
+ y="156.71973"
+ x="69.789322">Caps</text>
+ <text
+ transform="scale(1.0007154,0.99928515)"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
+ id="text4651"
+ y="166.5585"
+ x="69.789322">Lock</text>
+ </g>
+ <g
+ inkscape:label="active"
+ id="g4661"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ transform="translate(0,-19.076386)">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4655"
+ d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="69.789322"
+ y="156.71973"
+ id="text4657"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
+ transform="scale(1.0007154,0.99928515)">Caps</text>
+ <text
+ x="69.789322"
+ y="166.5585"
+ id="text4659"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
+ transform="scale(1.0007154,0.99928515)">Lock</text>
+ </g>
+ </g>
+ <rect
+ inkscape:label="Field"
+ ry="3.8152773"
+ rx="3.8152773"
+ y="15.771065"
+ x="64.024956"
+ height="30.150299"
+ width="361.89996"
+ id="rect4665"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ inkscape:label="Value"
+ id="text4669"
+ y="38.296417"
+ x="72.50132"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:start;text-anchor:start;stroke-width:0.47690967px"
+ y="38.296417"
+ x="72.50132"
+ id="tspan4667"
+ sodipodi:role="line">text</tspan></text>
+ <g
+ inkscape:label="Shift"
+ id="g4691">
+ <g
+ inkscape:label="inactive"
+ id="g4679">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4671"
+ d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928513)"
+ x="392.55679"
+ y="177.90059"
+ id="text4673"
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">Shift</text>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
+ id="path4675"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ transform="scale(1.0007154,0.99928513)"
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text4677"
+ y="177.90059"
+ x="75.85218">Shift</text>
+ </g>
+ <g
+ inkscape:label="active"
+ id="g4689">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ id="path4681"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;stroke-width:0.36866826"
+ id="text4683"
+ y="177.90059"
+ x="392.55679"
+ transform="scale(1.0007154,0.99928513)">Shift</text>
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4685"
+ d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="75.85218"
+ y="177.90059"
+ id="text4687"
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928513)">Shift</text>
+ </g>
+ </g>
+ <text
+ inkscape:label="Info"
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="252.9579"
+ y="12.333657"
+ id="text4695"
+ transform="scale(0.96824588,1.0327955)"><tspan
+ sodipodi:role="line"
+ id="tspan4693"
+ x="252.9579"
+ y="12.333657"
+ style="stroke-width:0.30784383px">information</tspan></text>
+ </g>
+ </pattern>
+ <pattern
+ patternUnits="userSpaceOnUse"
+ width="1280"
+ height="720"
+ patternTransform="translate(4.5843587e-5,2340)"
+ id="pattern33040">
+ <g
+ transform="matrix(3.3549332,0,0,3.14525,-181.87462,-3.9802)"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="use33038"
+ inkscape:label="HMI:Keypad:HMI_INT:HMI_REAL">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
+ id="path4699"
+ inkscape:connector-curvature="0"
+ inkscape:label="Background"
+ sodipodi:nodetypes="ccccc" />
+ <rect
+ inkscape:label="Field"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4701"
+ width="361.89996"
+ height="30.150299"
+ x="64.024963"
+ y="15.77106"
+ rx="3.8152773"
+ ry="3.8152773" />
+ <text
+ inkscape:label="Value"
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="72.50132"
+ y="37.408375"
+ id="text4705"><tspan
+ sodipodi:role="line"
+ id="tspan4703"
+ x="72.50132"
+ y="37.408375"
+ style="text-align:start;text-anchor:start;stroke-width:0.47690967px">number</tspan></text>
+ <g
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)"
+ id="g4711"
+ inkscape:label="Enter"
+ style="fill-rule:evenodd;stroke-width:0.13585199">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 750,175 c 0,-2 -1,-3 -3,-3 h -20 c -1,0 -3,1 -3,3 v 43 c 0,1 2,2 3,2 h 20 c 2,0 3,-1 3,-2 z"
+ id="path4707"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.10074362;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4709"
+ transform="matrix(0.28557246,0,0,0.28557246,1098.7155,-140.51013)"
+ d="m -1244.2949,1166.5938 v 15.791 h -38.6875 v -2.9981 l -6.9199,4 6.9199,4 v -2.998 h 40.6836 v -17.7949 z"
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)"
+ id="g4773"
+ inkscape:label="Keys"
+ style="fill-rule:evenodd;stroke-width:0.13585199">
+ <g
+ id="g4717"
+ inkscape:label="7"
+ style="stroke-width:0.13585199">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4713"
+ d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="636.4165"
+ y="129.38269"
+ id="text4715"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">7</text>
+ </g>
+ <g
+ id="g4723"
+ inkscape:label="4"
+ style="stroke-width:0.13585199">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4719"
+ d="m 638,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="636.4165"
+ y="154.10822"
+ id="text4721"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">4</text>
+ </g>
+ <g
+ id="g4729"
+ inkscape:label="1"
+ style="stroke-width:0.13585199">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4725"
+ d="m 638,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="636.4165"
+ y="179.82285"
+ id="text4727"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">1</text>
+ </g>
+ <g
+ id="g4735"
+ inkscape:label="8"
+ style="stroke-width:0.13585199">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4731"
+ d="m 668,120 h 19 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="667.07562"
+ y="129.38269"
+ id="text4733"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">8</text>
+ </g>
+ <g
+ id="g4741"
+ inkscape:label="5"
+ style="stroke-width:0.13585199">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4737"
+ d="m 668,146 h 19 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="667.07562"
+ y="154.10822"
+ id="text4739"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">5</text>
+ </g>
+ <g
+ id="g4747"
+ inkscape:label="2"
+ style="stroke-width:0.13585199">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4743"
+ d="m 668,172 h 19 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="667.07562"
+ y="179.82285"
+ id="text4745"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">2</text>
+ </g>
+ <g
+ id="g4753"
+ inkscape:label="9"
+ style="stroke-width:0.13585199">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4749"
+ d="m 697,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="695.75708"
+ y="129.38269"
+ id="text4751"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">9</text>
+ </g>
+ <g
+ id="g4759"
+ inkscape:label="6"
+ style="stroke-width:0.13585199">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4755"
+ d="m 697,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="695.75708"
+ y="154.10822"
+ id="text4757"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">6</text>
+ </g>
+ <g
+ id="g4765"
+ inkscape:label="3"
+ style="stroke-width:0.13585199">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4761"
+ d="m 697,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="695.75708"
+ y="179.82285"
+ id="text4763"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">3</text>
+ </g>
+ <g
+ id="g4771"
+ inkscape:label="0"
+ style="stroke-width:0.13585199">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4767"
+ d="m 638,220 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 h 49 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="636.4165"
+ y="205.53712"
+ id="text4769"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">0</text>
+ </g>
+ </g>
+ <g
+ transform="translate(-318.22576)"
+ inkscape:label="Esc"
+ id="g4779">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 387.26079,54.792986 h 33.40019 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -33.40019 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
+ id="path4775"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928511)"
+ style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text4777"
+ y="78.632088"
+ x="394.42801">Esc</text>
+ </g>
+ <g
+ transform="translate(0,-43.420332)"
+ inkscape:label="BackSpace"
+ id="g4785">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 387.26079,98.213318 h 33.40019 c 3.34,0 5.01006,1.670013 5.01006,5.010032 v 30.06024 c 0,3.34002 -1.67006,5.01003 -5.01006,5.01003 h -33.40019 c -1.67006,0 -5.01007,-1.67001 -5.01007,-5.01003 v -30.06024 c 0,-3.340019 3.34001,-5.010032 5.01007,-5.010032 z"
+ id="path4781"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4783"
+ transform="matrix(0.47690966,0,0,0.47690966,1008.0304,-380.26227)"
+ d="m -1278.9668,1041.3047 -6.9199,4 6.9199,4 v -3 h 33.416 v -1.9981 h -33.416 z"
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ transform="matrix(1.6700128,0,0,1.6700128,-678.20742,-102.18822)"
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ inkscape:label="Sign"
+ id="g4791">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path4787"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text4789"
+ y="135.09822"
+ x="642.1239">+/-</text>
+ </g>
+ <text
+ inkscape:label="Info"
+ transform="scale(0.96824589,1.0327955)"
+ id="text4795"
+ y="12.333653"
+ x="252.9579"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.30784383px"
+ y="12.333653"
+ x="252.9579"
+ id="tspan4793"
+ sodipodi:role="line">information</tspan></text>
+ <g
+ inkscape:label="NumDot"
+ id="g4801"
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60856)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path4797"
+ d="m 697,197 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928514)"
+ x="696.7464"
+ y="204.54802"
+ id="text4799"
+ style="font-weight:normal;font-size:6.96602964px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">.</text>
+ </g>
+ </g>
+ </pattern>
+ <marker
+ style="overflow:visible"
+ id="marker33393-6"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path33391-4" />
+ </marker>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient48067"
+ id="radialGradient48061-9"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.02836882,4.436331,-1.9717971,0.01260898,731.53273,-19692.285)"
+ cx="4437.6318"
+ cy="434.84348"
+ fx="4437.6318"
+ fy="434.84348"
+ r="35.250397" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:document-units="px"
+ inkscape:current-layer="hmi0"
+ showgrid="false"
+ units="px"
+ inkscape:zoom="0.70710678"
+ inkscape:cx="535.49777"
+ inkscape:cy="380.79328"
+ inkscape:window-width="1600"
+ inkscape:window-height="836"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:snap-global="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true">
+ <sodipodi:guide
+ position="1265,637"
+ orientation="1,0"
+ id="guide424"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <rect
+ style="color:#000000;fill:#ffffff"
+ id="page0"
+ width="1280"
+ height="720"
+ x="0"
+ y="0"
+ inkscape:label="HMI:Page:Home" />
+ <g
+ id="g5275"
+ inkscape:label="HMI:Display@/TARGETPRESSURE">
+ <text
+ inkscape:label="_format"
+ id="text5271"
+ y="430.74841"
+ x="440.99014"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="430.74841"
+ x="440.99014"
+ id="tspan5269"
+ sodipodi:role="line">This is an integer value : %d</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="373.99341"
+ y="160.46414"
+ id="text5267"
+ inkscape:label="_someothertext"><tspan
+ sodipodi:role="line"
+ id="tspan5265"
+ x="373.99341"
+ y="160.46414">Some "other" ČĆĐš english text</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="725.49988"
+ y="141.49683"
+ id="text5279"
+ inkscape:label="HMI:Display@/SELECTION"><tspan
+ sodipodi:role="line"
+ id="tspan5277"
+ x="725.49988"
+ y="141.49683">8888</tspan></text>
+ <text
+ inkscape:label="_sometext"
+ id="text5283"
+ y="240.46414"
+ x="293.99341"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="240.46414"
+ x="293.99341"
+ id="tspan5281"
+ sodipodi:role="line">Some english text</tspan><tspan
+ y="290.46414"
+ x="293.99341"
+ sodipodi:role="line"
+ id="tspan1894">another line</tspan><tspan
+ y="340.46414"
+ x="293.99341"
+ sodipodi:role="line"
+ id="tspan1896">a third one</tspan></text>
+ <g
+ id="g1913"
+ inkscape:label="HMI:Input@/TARGETPRESSURE">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4827"
+ width="165.96402"
+ height="78.240181"
+ x="203.89867"
+ y="501.87585"
+ rx="7"
+ ry="7"
+ inkscape:label="edit" />
+ <text
+ id="text405"
+ y="551.66504"
+ x="275.02609"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"
+ inkscape:label="value"><tspan
+ y="551.66504"
+ x="275.02609"
+ id="tspan403"
+ sodipodi:role="line">1234</tspan></text>
+ <g
+ id="g1905"
+ inkscape:label="+1"
+ transform="translate(391.20092,80.611099)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect407"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="425.65189"
+ y="566.1087"
+ id="text1558"><tspan
+ sodipodi:role="line"
+ id="tspan1556"
+ x="425.65189"
+ y="566.1087">+1</tspan></text>
+ </g>
+ <use
+ x="0"
+ y="0"
+ xlink:href="#text5283"
+ id="use411"
+ transform="translate(281.09259,279.27093)"
+ width="100%"
+ height="100%" />
+ </g>
+ <g
+ id="g14237"
+ inkscape:label="HMI:DropDown:#langs@lang"
+ transform="matrix(0.81491208,0,0,0.81491208,92.392121,-676.64521)"
+ style="stroke-width:0.35083869">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#53676c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect14212"
+ width="574.92957"
+ height="84.312515"
+ x="864.00842"
+ y="946.07819"
+ rx="2.4558709"
+ ry="2.4558709"
+ inkscape:label="box" />
+ <rect
+ inkscape:label="highlight"
+ ry="2.4558709"
+ rx="2.4558709"
+ y="968.2616"
+ x="864.00842"
+ height="39.945667"
+ width="574.92957"
+ id="rect5497"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419331;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text14183"
+ y="998.13739"
+ x="890.70056"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.95956421px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d42aff;fill-opacity:1;stroke:none;stroke-width:0.35083869px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="text"><tspan
+ style="text-align:start;text-anchor:start;fill:#d42aff;stroke-width:0.35083869px"
+ y="998.13739"
+ x="890.70056"
+ sodipodi:role="line"
+ id="tspan421">Language (Country)</tspan></text>
+ <path
+ sodipodi:type="star"
+ style="opacity:1;vector-effect:none;fill:#a7a5a6;fill-opacity:1;stroke:none;stroke-width:0.12376806;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path424"
+ sodipodi:sides="3"
+ sodipodi:cx="1387.0236"
+ sodipodi:cy="977.31356"
+ sodipodi:r1="43.683521"
+ sodipodi:r2="21.841761"
+ sodipodi:arg1="1.5707963"
+ sodipodi:arg2="2.6179939"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 1387.0236,1020.9971 -18.9156,-32.76268 -18.9155,-32.76264 37.8311,0 37.831,0 -18.9155,32.76264 z"
+ inkscape:transform-center-y="10.92088"
+ inkscape:label="button" />
+ </g>
+ <g
+ inkscape:label="HMI:Display@/TARGETPRESSURE"
+ id="g436"
+ transform="translate(381.33428,-264.45794)">
+ <text
+ inkscape:label="_format"
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="375.02609"
+ y="571.66504"
+ id="text424"><tspan
+ sodipodi:role="line"
+ x="375.02609"
+ y="571.66504"
+ id="tspan438">height is %d meters</tspan></text>
+ </g>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_pathslider/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,5 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="LOCAL://">
+ <TargetType/>
+ <Libraries Enable_SVGHMI_Library="true"/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_pathslider/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,73 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
+ <contentHeader name="Unnamed" modificationDateTime="2021-09-10T14:17:04">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="5" y="5"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="MainStuff" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="var0">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ <variable name="var1">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
+ <position x="445" y="65"/>
+ <connectionPointOut>
+ <relPosition x="125" y="15"/>
+ </connectionPointOut>
+ <expression>var0</expression>
+ </inVariable>
+ <outVariable localId="10" executionOrderId="0" height="25" width="85" negated="false">
+ <position x="710" y="105"/>
+ <connectionPointIn>
+ <relPosition x="0" y="10"/>
+ <connection refLocalId="5">
+ <position x="710" y="115"/>
+ <position x="640" y="115"/>
+ <position x="640" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ <expression>var1</expression>
+ </outVariable>
+ </FBD>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="resource1">
+ <task name="task0" priority="0" interval="T#20ms">
+ <pouInstance name="instance0" typeName="MainStuff"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_pathslider/svghmi_0@svghmi/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="svghmi_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_pathslider/svghmi_0@svghmi/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<SVGHMI xmlns:xsd="http://www.w3.org/2001/XMLSchema" WatchdogInitial="10" WatchdogInterval="5"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_pathslider/svghmi_0@svghmi/messages.pot Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,17 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR ORGANIZATION
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2021-02-12 21:55+CET\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: SVGHMI 1.0\n"
+
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_pathslider/svghmi_0@svghmi/svghmi.svg Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,882 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
+ sodipodi:docname="svghmi.svg"
+ id="hmi0"
+ version="1.1"
+ viewBox="0 0 1280 720"
+ height="720"
+ width="1280">
+ <metadata
+ id="metadata4542">
+ <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>
+ <defs
+ id="defs2">
+ <marker
+ inkscape:stockid="SquareL"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="SquareL"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ id="path1054"
+ d="M -5.0,-5.0 L -5.0,5.0 L 5.0,5.0 L 5.0,-5.0 L -5.0,-5.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
+ transform="scale(0.8)" />
+ </marker>
+ <linearGradient
+ id="linearGradient34303"
+ osb:paint="solid">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop34301" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient20537"
+ osb:paint="solid">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop20535" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:document-units="px"
+ inkscape:current-layer="hmi0"
+ showgrid="false"
+ units="px"
+ inkscape:zoom="1.8101934"
+ inkscape:cx="616.36085"
+ inkscape:cy="455.0488"
+ inkscape:window-width="2188"
+ inkscape:window-height="1534"
+ inkscape:window-x="3675"
+ inkscape:window-y="324"
+ inkscape:window-maximized="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:snap-global="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true" />
+ <g
+ inkscape:label="HMI:Keypad:HMI_INT:HMI_REAL"
+ id="g2432"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ transform="matrix(3.3549332,0,0,3.14525,-181.87457,2336.0198)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:label="Background"
+ inkscape:connector-curvature="0"
+ id="path2136"
+ d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <rect
+ ry="3.8152773"
+ rx="3.8152773"
+ y="15.77106"
+ x="64.024963"
+ height="30.150299"
+ width="361.89996"
+ id="rect2426"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:label="Field" />
+ <text
+ id="text2430"
+ y="37.408375"
+ x="72.50132"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="Value"><tspan
+ style="text-align:start;text-anchor:start;stroke-width:0.47690967px"
+ y="37.408375"
+ x="72.50132"
+ id="tspan2428"
+ sodipodi:role="line">number</tspan></text>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ inkscape:label="Enter"
+ id="g4947"
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.10074362;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path193"
+ d="m 750,175 c 0,-2 -1,-3 -3,-3 h -20 c -1,0 -3,1 -3,3 v 43 c 0,1 2,2 3,2 h 20 c 2,0 3,-1 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -1244.2949,1166.5938 v 15.791 h -38.6875 v -2.9981 l -6.9199,4 6.9199,4 v -2.998 h 40.6836 v -17.7949 z"
+ transform="matrix(0.28557246,0,0,0.28557246,1098.7155,-140.51013)"
+ id="path6545-4"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ inkscape:label="Keys"
+ id="g4993"
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="7"
+ id="g4892">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path163"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text331"
+ y="129.38269"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">7</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="4"
+ id="g4907">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path169"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text335"
+ y="154.10822"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">4</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="1"
+ id="g4922">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path175"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text339"
+ y="179.82285"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">1</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="8"
+ id="g4897">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,120 h 19 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path165"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text347"
+ y="129.38269"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">8</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="5"
+ id="g4912">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,146 h 19 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path171"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text351"
+ y="154.10822"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">5</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="2"
+ id="g4927">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,172 h 19 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path177"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text355"
+ y="179.82285"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">2</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="9"
+ id="g4902">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path167"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text363"
+ y="129.38269"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">9</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="6"
+ id="g4917">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path173"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text367"
+ y="154.10822"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">6</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="3"
+ id="g4932">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path179"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text371"
+ y="179.82285"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">3</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="0"
+ id="g4937">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,220 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 h 49 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 z"
+ id="path373"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text377"
+ y="205.53712"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">0</text>
+ </g>
+ </g>
+ <g
+ id="g3113"
+ inkscape:label="Esc"
+ transform="translate(-318.22576)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path167-3"
+ d="m 387.26079,54.792986 h 33.40019 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -33.40019 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="394.42801"
+ y="78.632088"
+ id="text469-4"
+ style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928511)">Esc</text>
+ </g>
+ <g
+ id="g3109"
+ inkscape:label="BackSpace"
+ transform="translate(0,-43.420332)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path173-1"
+ d="m 387.26079,98.213318 h 33.40019 c 3.34,0 5.01006,1.670013 5.01006,5.010032 v 30.06024 c 0,3.34002 -1.67006,5.01003 -5.01006,5.01003 h -33.40019 c -1.67006,0 -5.01007,-1.67001 -5.01007,-5.01003 v -30.06024 c 0,-3.340019 3.34001,-5.010032 5.01007,-5.010032 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -1278.9668,1041.3047 -6.9199,4 6.9199,4 v -3 h 33.416 v -1.9981 h -33.416 z"
+ transform="matrix(0.47690966,0,0,0.47690966,1008.0304,-380.26227)"
+ id="path11623-1-0-2"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g787"
+ inkscape:label="Sign"
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ transform="matrix(1.6700128,0,0,1.6700128,-678.20742,-102.18822)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path781"
+ d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="642.1239"
+ y="135.09822"
+ id="text783"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ transform="scale(1.0007154,0.99928514)">+/-</text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="252.9579"
+ y="12.333653"
+ id="text509"
+ transform="scale(0.96824589,1.0327955)"
+ inkscape:label="Info"><tspan
+ sodipodi:role="line"
+ id="tspan507"
+ x="252.9579"
+ y="12.333653"
+ style="stroke-width:0.30784383px">information</tspan></text>
+ <g
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60856)"
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ id="g4942"
+ inkscape:label="NumDot">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,197 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path181"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:6.96602964px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text771"
+ y="204.54802"
+ x="696.7464"
+ transform="scale(1.0007154,0.99928514)">.</text>
+ </g>
+ </g>
+ <rect
+ style="color:#000000;fill:#ffffff"
+ id="page0"
+ width="1280"
+ height="720"
+ x="0"
+ y="0"
+ inkscape:label="HMI:Page:Home" />
+ <g
+ id="g1913"
+ inkscape:label="HMI:Input@.max"
+ transform="translate(80,100)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4827"
+ width="165.96402"
+ height="78.240181"
+ x="203.89867"
+ y="501.87585"
+ rx="7"
+ ry="7"
+ inkscape:label="edit" />
+ <text
+ id="text405"
+ y="551.66504"
+ x="275.02609"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"
+ inkscape:label="value"><tspan
+ y="551.66504"
+ x="275.02609"
+ id="tspan403"
+ sodipodi:role="line">1234</tspan></text>
+ <g
+ id="g1905"
+ inkscape:label="-1"
+ transform="translate(-314.79908,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect407"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text1558"><tspan
+ sodipodi:role="line"
+ id="tspan1556"
+ x="441.65189"
+ y="566.1087">-1</tspan></text>
+ </g>
+ <g
+ transform="translate(-434.79908,-17.189114)"
+ inkscape:label="-10"
+ id="g4394">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect4388"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4392"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan4390"
+ sodipodi:role="line">-10</tspan></text>
+ </g>
+ <g
+ transform="translate(11.20092,-17.189114)"
+ inkscape:label="+1"
+ id="g4402">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect4396"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4400"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan4398"
+ sodipodi:role="line">+1</tspan></text>
+ </g>
+ <g
+ id="g4410"
+ inkscape:label="+10"
+ transform="translate(131.20092,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4404"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text4408"><tspan
+ sodipodi:role="line"
+ id="tspan4406"
+ x="441.65189"
+ y="566.1087">+10</tspan></text>
+ </g>
+ </g>
+ <g
+ transform="translate(80,-60)"
+ inkscape:label="HMI:Input@.min"
+ id="g4450">
+ <rect
+ inkscape:label="edit"
+ ry="7"
+ rx="7"
+ y="501.87585"
+ x="203.89867"
+ height="78.240181"
+ width="165.96402"
+ id="rect4412"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ inkscape:label="value"
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="275.02609"
+ y="551.66504"
+ id="text4416"><tspan
+ sodipodi:role="line"
+ id="tspan4414"
+ x="275.02609"
+ y="551.66504">1234</tspan></text>
+ <g
+ transform="translate(-314.79908,-17.189114)"
+ inkscape:label="-1"
+ id="g4424">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect4418"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4422"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan4420"
+ sodipodi:role="line">-1</tspan></text>
+ </g>
+ <g
+ id="g4432"
+ inkscape:label="-10"
+ transform="translate(-434.79908,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4426"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text4430"><tspan
+ sodipodi:role="line"
+ id="tspan4428"
+ x="441.65189"
+ y="566.1087">-10</tspan></text>
+ </g>
+ <g
+ id="g4440"
+ inkscape:label="+1"
+ transform="translate(11.20092,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4434"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text4438"><tspan
+ sodipodi:role="line"
+ id="tspan4436"
+ x="441.65189"
+ y="566.1087">+1</tspan></text>
+ </g>
+ <g
+ transform="translate(131.20092,-17.189114)"
+ inkscape:label="+10"
+ id="g4448">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect4442"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4446"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan4444"
+ sodipodi:role="line">+10</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g4490"
+ inkscape:label="HMI:Input@.position"
+ transform="translate(80,-220)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4452"
+ width="165.96402"
+ height="78.240181"
+ x="203.89867"
+ y="501.87585"
+ rx="7"
+ ry="7"
+ inkscape:label="edit" />
+ <text
+ id="text4456"
+ y="551.66504"
+ x="275.02609"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"
+ inkscape:label="value"><tspan
+ y="551.66504"
+ x="275.02609"
+ id="tspan4454"
+ sodipodi:role="line">1234</tspan></text>
+ <g
+ id="g4464"
+ inkscape:label="-1"
+ transform="translate(-314.79908,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4458"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text4462"><tspan
+ sodipodi:role="line"
+ id="tspan4460"
+ x="441.65189"
+ y="566.1087">-1</tspan></text>
+ </g>
+ <g
+ transform="translate(-434.79908,-17.189114)"
+ inkscape:label="-10"
+ id="g4472">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect4466"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4470"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan4468"
+ sodipodi:role="line">-10</tspan></text>
+ </g>
+ <g
+ transform="translate(11.20092,-17.189114)"
+ inkscape:label="+1"
+ id="g4480">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect4474"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4478"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan4476"
+ sodipodi:role="line">+1</tspan></text>
+ </g>
+ <g
+ id="g4488"
+ inkscape:label="+10"
+ transform="translate(131.20092,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4482"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text4486"><tspan
+ sodipodi:role="line"
+ id="tspan4484"
+ x="441.65189"
+ y="566.1087">+10</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g4877"
+ inkscape:label="HMI:VarInit:50@.position" />
+ <g
+ inkscape:label="HMI:VarInit:99@.max"
+ id="g4879" />
+ <g
+ id="g4881"
+ inkscape:label="HMI:VarInit:1@.min" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="277.58728"
+ y="276.54129"
+ id="text941"><tspan
+ sodipodi:role="line"
+ id="tspan939"
+ x="277.58728"
+ y="276.54129">Position</tspan></text>
+ <text
+ id="text945"
+ y="436.54129"
+ x="277.58728"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="436.54129"
+ x="277.58728"
+ sodipodi:role="line"
+ id="tspan964">Min</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="277.58728"
+ y="596.54126"
+ id="text949"><tspan
+ sodipodi:role="line"
+ x="277.58728"
+ y="596.54126"
+ id="tspan968">Max</tspan></text>
+ <g
+ id="g962"
+ inkscape:label="HMI:PathSlider@.position@.min@.max">
+ <path
+ inkscape:connector-curvature="0"
+ id="path148"
+ d="m 955.14658,26.15147 211.57962,92.25534"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ inkscape:label="path" />
+ <path
+ d="m 966.53287,44.309416 -13.21418,-7.228051 -13.44562,6.787834 2.79088,-14.801024 -10.61054,-10.689986 14.93904,-1.919484 6.88794,-13.3946089 6.44196,13.6147169 14.86752,2.411663 -10.95769,10.333842 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.5873072"
+ sodipodi:arg1="0.9589887"
+ sodipodi:r2="11.340635"
+ sodipodi:r1="22.681271"
+ sodipodi:cy="25.742275"
+ sodipodi:cx="953.50592"
+ sodipodi:sides="5"
+ id="path153"
+ style="opacity:1;vector-effect:none;fill:#ff7903;fill-opacity:0.5288889;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ sodipodi:type="star"
+ inkscape:label="cursor" />
+ </g>
+ <g
+ inkscape:label="HMI:PathSlider@.position@.min@.max"
+ id="g976"
+ transform="translate(0,280)">
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 955.14658,26.15147 C 851.13467,-192.73963 1041.4811,9.3909254 1166.7262,118.40681"
+ id="path972"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ inkscape:label="path" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;vector-effect:none;fill:#ff7903;fill-opacity:0.5288889;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path974"
+ sodipodi:sides="5"
+ sodipodi:cx="953.50592"
+ sodipodi:cy="25.742275"
+ sodipodi:r1="22.681271"
+ sodipodi:r2="11.340635"
+ sodipodi:arg1="0.9589887"
+ sodipodi:arg2="1.5873072"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 966.53287,44.309416 -13.21418,-7.228051 -13.44562,6.787834 2.79088,-14.801024 -10.61054,-10.689986 14.93904,-1.919484 6.88794,-13.3946089 6.44196,13.6147169 14.86752,2.411663 -10.95769,10.333842 z"
+ inkscape:label="cursor" />
+ </g>
+ <g
+ transform="matrix(1.3425901,0,0,1.3433676,-917.1196,42.980158)"
+ id="g982"
+ inkscape:label="HMI:PathSlider@.position@.min@.max"
+ style="stroke-width:0.74461341">
+ <path
+ sodipodi:nodetypes="cssc"
+ inkscape:connector-curvature="0"
+ id="path978"
+ d="m 952.93687,23.941761 c 51.19833,-44.196391 62.05743,74.937687 92.34943,75.490114 21.6066,0.394035 85.7552,-75.64156 18.9371,-55.006769 -72.1854,22.292318 95.3404,97.369964 112.9989,61.828304"
+ style="fill:none;stroke:#000000;stroke-width:0.74461341px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#SquareL)"
+ inkscape:label="path" />
+ <path
+ d="m 965.58932,65.187083 -13.21418,-7.228052 -13.44561,6.787834 2.79087,-14.801023 -10.61053,-10.689986 14.93903,-1.919485 6.88795,-13.394608 6.44195,13.614717 14.86753,2.411662 -10.9577,10.333842 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.5873072"
+ sodipodi:arg1="0.9589887"
+ sodipodi:r2="11.340635"
+ sodipodi:r1="22.681271"
+ sodipodi:cy="46.61994"
+ sodipodi:cx="952.5624"
+ sodipodi:sides="5"
+ id="path980"
+ style="opacity:1;vector-effect:none;fill:#ff7903;fill-opacity:0.5288889;stroke:none;stroke-width:0.74461341;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ sodipodi:type="star"
+ inkscape:label="cursor" />
+ </g>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_real/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,5 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="PYRO://127.0.0.1:61284">
+ <TargetType/>
+ <Libraries Enable_SVGHMI_Library="true"/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_real/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,97 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
+ <contentHeader name="Unnamed" modificationDateTime="2021-02-16T10:38:12">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="5" y="5"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="MainStuff" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="var0">
+ <type>
+ <derived name="HMI_REAL"/>
+ </type>
+ </variable>
+ <variable name="var1">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
+ <position x="240" y="45"/>
+ <connectionPointOut>
+ <relPosition x="125" y="15"/>
+ </connectionPointOut>
+ <expression>var0</expression>
+ </inVariable>
+ <outVariable localId="10" executionOrderId="0" height="25" width="85" negated="false">
+ <position x="720" y="70"/>
+ <connectionPointIn>
+ <relPosition x="0" y="10"/>
+ <connection refLocalId="11" formalParameter="OUT">
+ <position x="720" y="80"/>
+ <position x="667" y="80"/>
+ <position x="667" y="75"/>
+ <position x="605" y="75"/>
+ </connection>
+ </connectionPointIn>
+ <expression>var1</expression>
+ </outVariable>
+ <block localId="11" typeName="REAL_TO_INT" executionOrderId="0" height="40" width="100">
+ <position x="505" y="45"/>
+ <inputVariables>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="5">
+ <position x="505" y="75"/>
+ <position x="445" y="75"/>
+ <position x="445" y="60"/>
+ <position x="365" y="60"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="100" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ </FBD>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="resource1">
+ <task name="task0" priority="0" interval="T#20ms">
+ <pouInstance name="instance0" typeName="MainStuff"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_real/svghmi_0@svghmi/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="svghmi_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_real/svghmi_0@svghmi/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<SVGHMI xmlns:xsd="http://www.w3.org/2001/XMLSchema" OnWatchdog="echo Watchdog for {name} !" OnStart="chromium http://127.0.0.1:{port}/{name}" OnStop="echo Closing {name}" WatchdogInitial="10" WatchdogInterval="5"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_real/svghmi_0@svghmi/svghmi.svg Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,647 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
+ sodipodi:docname="svghmi.svg"
+ id="hmi0"
+ version="1.1"
+ viewBox="0 0 1280 720"
+ height="720"
+ width="1280">
+ <metadata
+ id="metadata4542">
+ <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>
+ <defs
+ id="defs2">
+ <linearGradient
+ id="linearGradient34303"
+ osb:paint="solid">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop34301" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient20537"
+ osb:paint="solid">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop20535" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:document-units="px"
+ inkscape:current-layer="hmi0"
+ showgrid="false"
+ units="px"
+ inkscape:zoom="0.64"
+ inkscape:cx="106.50649"
+ inkscape:cy="372.66049"
+ inkscape:window-width="1600"
+ inkscape:window-height="836"
+ inkscape:window-x="1600"
+ inkscape:window-y="27"
+ inkscape:window-maximized="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:snap-global="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true" />
+ <g
+ inkscape:label="HMI:Keypad:HMI_INT:HMI_REAL"
+ id="g2432"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ transform="matrix(3.3549332,0,0,3.14525,-181.87457,2336.0198)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:label="Background"
+ inkscape:connector-curvature="0"
+ id="path2136"
+ d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <rect
+ ry="3.8152773"
+ rx="3.8152773"
+ y="15.77106"
+ x="64.024963"
+ height="30.150299"
+ width="361.89996"
+ id="rect2426"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:label="Field" />
+ <text
+ id="text2430"
+ y="37.408375"
+ x="72.50132"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="Value"><tspan
+ style="text-align:start;text-anchor:start;stroke-width:0.47690967px"
+ y="37.408375"
+ x="72.50132"
+ id="tspan2428"
+ sodipodi:role="line">number</tspan></text>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ inkscape:label="Enter"
+ id="g4947"
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.10074362;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path193"
+ d="m 750,175 c 0,-2 -1,-3 -3,-3 h -20 c -1,0 -3,1 -3,3 v 43 c 0,1 2,2 3,2 h 20 c 2,0 3,-1 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -1244.2949,1166.5938 v 15.791 h -38.6875 v -2.9981 l -6.9199,4 6.9199,4 v -2.998 h 40.6836 v -17.7949 z"
+ transform="matrix(0.28557246,0,0,0.28557246,1098.7155,-140.51013)"
+ id="path6545-4"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ inkscape:label="Keys"
+ id="g4993"
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="7"
+ id="g4892">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path163"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text331"
+ y="129.38269"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">7</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="4"
+ id="g4907">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path169"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text335"
+ y="154.10822"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">4</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="1"
+ id="g4922">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path175"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text339"
+ y="179.82285"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">1</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="8"
+ id="g4897">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,120 h 19 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path165"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text347"
+ y="129.38269"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">8</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="5"
+ id="g4912">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,146 h 19 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path171"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text351"
+ y="154.10822"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">5</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="2"
+ id="g4927">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,172 h 19 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path177"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text355"
+ y="179.82285"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">2</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="9"
+ id="g4902">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path167"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text363"
+ y="129.38269"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">9</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="6"
+ id="g4917">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path173"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text367"
+ y="154.10822"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">6</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="3"
+ id="g4932">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path179"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text371"
+ y="179.82285"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">3</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="0"
+ id="g4937">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,220 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 h 49 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 z"
+ id="path373"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text377"
+ y="205.53712"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">0</text>
+ </g>
+ </g>
+ <g
+ id="g3113"
+ inkscape:label="Esc"
+ transform="translate(-318.22576)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path167-3"
+ d="m 387.26079,54.792986 h 33.40019 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -33.40019 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="394.42801"
+ y="78.632088"
+ id="text469-4"
+ style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928511)">Esc</text>
+ </g>
+ <g
+ id="g3109"
+ inkscape:label="BackSpace"
+ transform="translate(0,-43.420332)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path173-1"
+ d="m 387.26079,98.213318 h 33.40019 c 3.34,0 5.01006,1.670013 5.01006,5.010032 v 30.06024 c 0,3.34002 -1.67006,5.01003 -5.01006,5.01003 h -33.40019 c -1.67006,0 -5.01007,-1.67001 -5.01007,-5.01003 v -30.06024 c 0,-3.340019 3.34001,-5.010032 5.01007,-5.010032 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -1278.9668,1041.3047 -6.9199,4 6.9199,4 v -3 h 33.416 v -1.9981 h -33.416 z"
+ transform="matrix(0.47690966,0,0,0.47690966,1008.0304,-380.26227)"
+ id="path11623-1-0-2"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g787"
+ inkscape:label="Sign"
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ transform="matrix(1.6700128,0,0,1.6700128,-678.20742,-102.18822)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path781"
+ d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="642.1239"
+ y="135.09822"
+ id="text783"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ transform="scale(1.0007154,0.99928514)">+/-</text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="252.9579"
+ y="12.333653"
+ id="text509"
+ transform="scale(0.96824589,1.0327955)"
+ inkscape:label="Info"><tspan
+ sodipodi:role="line"
+ id="tspan507"
+ x="252.9579"
+ y="12.333653"
+ style="stroke-width:0.30784383px">information</tspan></text>
+ <g
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60856)"
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ id="g4942"
+ inkscape:label="NumDot">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,197 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path181"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:6.96602964px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text771"
+ y="204.54802"
+ x="696.7464"
+ transform="scale(1.0007154,0.99928514)">.</text>
+ </g>
+ </g>
+ <rect
+ style="color:#000000;fill:#ffffff"
+ id="page0"
+ width="1280"
+ height="720"
+ x="0"
+ y="0"
+ inkscape:label="HMI:Page:Home"
+ sodipodi:insensitive="true" />
+ <g
+ id="g4490"
+ inkscape:label="HMI:Input:%.4f@/VAR0"
+ transform="translate(220,-220)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4452"
+ width="165.96402"
+ height="78.240181"
+ x="207.3945"
+ y="501.87585"
+ rx="7"
+ ry="7"
+ inkscape:label="edit" />
+ <text
+ id="text4456"
+ y="551.66504"
+ x="289.30231"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"
+ inkscape:label="value"><tspan
+ y="551.66504"
+ x="289.30231"
+ id="tspan4454"
+ sodipodi:role="line">1234</tspan></text>
+ <g
+ id="g4464"
+ inkscape:label="-1"
+ transform="translate(-414.79908,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4458"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text4462"><tspan
+ sodipodi:role="line"
+ id="tspan4460"
+ x="441.65189"
+ y="566.1087">-1</tspan></text>
+ </g>
+ <g
+ transform="translate(-534.79908,-17.189114)"
+ inkscape:label="-10"
+ id="g4472">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect4466"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4470"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan4468"
+ sodipodi:role="line">-10</tspan></text>
+ </g>
+ <g
+ transform="translate(111.20092,-17.189114)"
+ inkscape:label="+1"
+ id="g4480">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect4474"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4478"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan4476"
+ sodipodi:role="line">+1</tspan></text>
+ </g>
+ <g
+ id="g4488"
+ inkscape:label="+10"
+ transform="translate(231.20092,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4482"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text4486"><tspan
+ sodipodi:role="line"
+ id="tspan4484"
+ x="441.65189"
+ y="566.1087">+10</tspan></text>
+ </g>
+ <g
+ id="g154"
+ inkscape:label="+0.1"
+ transform="translate(-8.7991028,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect148"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text152"><tspan
+ sodipodi:role="line"
+ id="tspan150"
+ x="441.65189"
+ y="566.1087">+.1</tspan></text>
+ </g>
+ <g
+ transform="translate(-294.79907,-17.189114)"
+ inkscape:label="-0.1"
+ id="g162">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect156"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text160"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan158"
+ sodipodi:role="line">-.1</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g170"
+ inkscape:label="HMI:Display@/VAR0"
+ transform="translate(-400)">
+ <text
+ id="text166"
+ y="96.5625"
+ x="595.3125"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"
+ inkscape:label="format"><tspan
+ y="96.5625"
+ x="595.3125"
+ id="tspan164"
+ sodipodi:role="line">%.2f</tspan></text>
+ </g>
+ <g
+ inkscape:label="HMI:Display@/VAR1"
+ id="g3879"
+ transform="translate(-400,80)">
+ <text
+ inkscape:label="format"
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="595.3125"
+ y="96.5625"
+ id="text3877"><tspan
+ sodipodi:role="line"
+ id="tspan3875"
+ x="595.3125"
+ y="96.5625">%d</tspan></text>
+ </g>
+ <g
+ inkscape:label="HMI:Display@/VAR0"
+ id="g3885"
+ transform="translate(-140)">
+ <text
+ inkscape:label="format"
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="595.3125"
+ y="96.5625"
+ id="text3883"><tspan
+ sodipodi:role="line"
+ id="tspan3881"
+ x="595.3125"
+ y="96.5625">temp: %.2f℃</tspan></text>
+ </g>
+ <g
+ transform="translate(220)"
+ id="g3895"
+ inkscape:label="HMI:Display@/VAR0">
+ <text
+ id="text3893"
+ y="96.5625"
+ x="595.3125"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"
+ inkscape:label="format"><tspan
+ y="96.5625"
+ x="595.3125"
+ id="tspan3891"
+ sodipodi:role="line">ratio: %.2f%%</tspan></text>
+ </g>
+ <g
+ transform="translate(-220,80)"
+ id="g3901"
+ inkscape:label="HMI:Display@/VAR1">
+ <text
+ id="text3899"
+ y="96.5625"
+ x="655.3125"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"
+ inkscape:label="format"><tspan
+ y="96.5625"
+ x="655.3125"
+ id="tspan3897"
+ sodipodi:role="line">padded: %'04d</tspan></text>
+ </g>
+ <g
+ transform="translate(-140,440)"
+ id="g3907"
+ inkscape:label="HMI:Display@/VAR1@/VAR0">
+ <text
+ id="text3905"
+ y="96.5625"
+ x="595.3125"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"
+ inkscape:label="format"><tspan
+ y="96.5625"
+ x="595.3125"
+ id="tspan3903"
+ sodipodi:role="line">this way, %d and %.3f are together</tspan></text>
+ </g>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_scrollbar/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,5 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="LOCAL://">
+ <TargetType/>
+ <Libraries Enable_SVGHMI_Library="true"/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_scrollbar/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,73 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
+ <contentHeader name="Unnamed" modificationDateTime="2021-09-10T14:17:04">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="5" y="5"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="MainStuff" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="var0">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ <variable name="var1">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
+ <position x="445" y="65"/>
+ <connectionPointOut>
+ <relPosition x="125" y="15"/>
+ </connectionPointOut>
+ <expression>var0</expression>
+ </inVariable>
+ <outVariable localId="10" executionOrderId="0" height="25" width="85" negated="false">
+ <position x="710" y="105"/>
+ <connectionPointIn>
+ <relPosition x="0" y="10"/>
+ <connection refLocalId="5">
+ <position x="710" y="115"/>
+ <position x="640" y="115"/>
+ <position x="640" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ <expression>var1</expression>
+ </outVariable>
+ </FBD>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="resource1">
+ <task name="task0" priority="0" interval="T#20ms">
+ <pouInstance name="instance0" typeName="MainStuff"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_scrollbar/svghmi_0@svghmi/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="svghmi_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_scrollbar/svghmi_0@svghmi/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<SVGHMI xmlns:xsd="http://www.w3.org/2001/XMLSchema" WatchdogInitial="10" WatchdogInterval="5"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_scrollbar/svghmi_0@svghmi/messages.pot Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,17 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR ORGANIZATION
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2021-02-12 21:55+CET\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: SVGHMI 1.0\n"
+
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_scrollbar/svghmi_0@svghmi/svghmi.svg Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,891 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
+ sodipodi:docname="svghmi.svg"
+ id="hmi0"
+ version="1.1"
+ viewBox="0 0 1280 720"
+ height="720"
+ width="1280">
+ <metadata
+ id="metadata4542">
+ <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>
+ <defs
+ id="defs2">
+ <linearGradient
+ id="linearGradient34303"
+ osb:paint="solid">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop34301" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient20537"
+ osb:paint="solid">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop20535" />
+ </linearGradient>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:document-units="px"
+ inkscape:current-layer="hmi0"
+ showgrid="false"
+ units="px"
+ inkscape:zoom="0.64"
+ inkscape:cx="-438.80601"
+ inkscape:cy="183.59799"
+ inkscape:window-width="3200"
+ inkscape:window-height="1672"
+ inkscape:window-x="0"
+ inkscape:window-y="54"
+ inkscape:window-maximized="1"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:snap-global="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true" />
+ <g
+ inkscape:label="HMI:Keypad:HMI_INT:HMI_REAL"
+ id="g2432"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ transform="matrix(3.3549332,0,0,3.14525,-181.87457,2336.0198)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:label="Background"
+ inkscape:connector-curvature="0"
+ id="path2136"
+ d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <rect
+ ry="3.8152773"
+ rx="3.8152773"
+ y="15.77106"
+ x="64.024963"
+ height="30.150299"
+ width="361.89996"
+ id="rect2426"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:label="Field" />
+ <text
+ id="text2430"
+ y="37.408375"
+ x="72.50132"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="Value"><tspan
+ style="text-align:start;text-anchor:start;stroke-width:0.47690967px"
+ y="37.408375"
+ x="72.50132"
+ id="tspan2428"
+ sodipodi:role="line">number</tspan></text>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ inkscape:label="Enter"
+ id="g4947"
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.10074362;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path193"
+ d="m 750,175 c 0,-2 -1,-3 -3,-3 h -20 c -1,0 -3,1 -3,3 v 43 c 0,1 2,2 3,2 h 20 c 2,0 3,-1 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -1244.2949,1166.5938 v 15.791 h -38.6875 v -2.9981 l -6.9199,4 6.9199,4 v -2.998 h 40.6836 v -17.7949 z"
+ transform="matrix(0.28557246,0,0,0.28557246,1098.7155,-140.51013)"
+ id="path6545-4"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ inkscape:label="Keys"
+ id="g4993"
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="7"
+ id="g4892">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path163"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text331"
+ y="129.38269"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">7</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="4"
+ id="g4907">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path169"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text335"
+ y="154.10822"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">4</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="1"
+ id="g4922">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path175"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text339"
+ y="179.82285"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">1</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="8"
+ id="g4897">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,120 h 19 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path165"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text347"
+ y="129.38269"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">8</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="5"
+ id="g4912">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,146 h 19 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path171"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text351"
+ y="154.10822"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">5</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="2"
+ id="g4927">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,172 h 19 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path177"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text355"
+ y="179.82285"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">2</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="9"
+ id="g4902">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path167"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text363"
+ y="129.38269"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">9</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="6"
+ id="g4917">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path173"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text367"
+ y="154.10822"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">6</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="3"
+ id="g4932">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path179"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text371"
+ y="179.82285"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">3</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="0"
+ id="g4937">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,220 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 h 49 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 z"
+ id="path373"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text377"
+ y="205.53712"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">0</text>
+ </g>
+ </g>
+ <g
+ id="g3113"
+ inkscape:label="Esc"
+ transform="translate(-318.22576)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path167-3"
+ d="m 387.26079,54.792986 h 33.40019 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -33.40019 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="394.42801"
+ y="78.632088"
+ id="text469-4"
+ style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928511)">Esc</text>
+ </g>
+ <g
+ id="g3109"
+ inkscape:label="BackSpace"
+ transform="translate(0,-43.420332)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path173-1"
+ d="m 387.26079,98.213318 h 33.40019 c 3.34,0 5.01006,1.670013 5.01006,5.010032 v 30.06024 c 0,3.34002 -1.67006,5.01003 -5.01006,5.01003 h -33.40019 c -1.67006,0 -5.01007,-1.67001 -5.01007,-5.01003 v -30.06024 c 0,-3.340019 3.34001,-5.010032 5.01007,-5.010032 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -1278.9668,1041.3047 -6.9199,4 6.9199,4 v -3 h 33.416 v -1.9981 h -33.416 z"
+ transform="matrix(0.47690966,0,0,0.47690966,1008.0304,-380.26227)"
+ id="path11623-1-0-2"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g787"
+ inkscape:label="Sign"
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ transform="matrix(1.6700128,0,0,1.6700128,-678.20742,-102.18822)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path781"
+ d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="642.1239"
+ y="135.09822"
+ id="text783"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ transform="scale(1.0007154,0.99928514)">+/-</text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="252.9579"
+ y="12.333653"
+ id="text509"
+ transform="scale(0.96824589,1.0327955)"
+ inkscape:label="Info"><tspan
+ sodipodi:role="line"
+ id="tspan507"
+ x="252.9579"
+ y="12.333653"
+ style="stroke-width:0.30784383px">information</tspan></text>
+ <g
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60856)"
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ id="g4942"
+ inkscape:label="NumDot">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,197 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path181"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:6.96602964px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text771"
+ y="204.54802"
+ x="696.7464"
+ transform="scale(1.0007154,0.99928514)">.</text>
+ </g>
+ </g>
+ <rect
+ style="color:#000000;fill:#ffffff"
+ id="page0"
+ width="1280"
+ height="720"
+ x="0"
+ y="0"
+ inkscape:label="HMI:Page:Home" />
+ <g
+ id="g1913"
+ inkscape:label="HMI:Input@.size"
+ transform="translate(80,100)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4827"
+ width="165.96402"
+ height="78.240181"
+ x="203.89867"
+ y="501.87585"
+ rx="7"
+ ry="7"
+ inkscape:label="edit" />
+ <text
+ id="text405"
+ y="551.66504"
+ x="275.02609"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"
+ inkscape:label="value"><tspan
+ y="551.66504"
+ x="275.02609"
+ id="tspan403"
+ sodipodi:role="line">1234</tspan></text>
+ <g
+ id="g1905"
+ inkscape:label="-1"
+ transform="translate(-314.79908,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect407"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text1558"><tspan
+ sodipodi:role="line"
+ id="tspan1556"
+ x="441.65189"
+ y="566.1087">-1</tspan></text>
+ </g>
+ <g
+ transform="translate(-434.79908,-17.189114)"
+ inkscape:label="-10"
+ id="g4394">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect4388"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4392"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan4390"
+ sodipodi:role="line">-10</tspan></text>
+ </g>
+ <g
+ transform="translate(11.20092,-17.189114)"
+ inkscape:label="+1"
+ id="g4402">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect4396"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4400"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan4398"
+ sodipodi:role="line">+1</tspan></text>
+ </g>
+ <g
+ id="g4410"
+ inkscape:label="+10"
+ transform="translate(131.20092,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4404"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text4408"><tspan
+ sodipodi:role="line"
+ id="tspan4406"
+ x="441.65189"
+ y="566.1087">+10</tspan></text>
+ </g>
+ </g>
+ <g
+ transform="translate(80,-60)"
+ inkscape:label="HMI:Input@.range"
+ id="g4450">
+ <rect
+ inkscape:label="edit"
+ ry="7"
+ rx="7"
+ y="501.87585"
+ x="203.89867"
+ height="78.240181"
+ width="165.96402"
+ id="rect4412"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ inkscape:label="value"
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="275.02609"
+ y="551.66504"
+ id="text4416"><tspan
+ sodipodi:role="line"
+ id="tspan4414"
+ x="275.02609"
+ y="551.66504">1234</tspan></text>
+ <g
+ transform="translate(-314.79908,-17.189114)"
+ inkscape:label="-1"
+ id="g4424">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect4418"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4422"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan4420"
+ sodipodi:role="line">-1</tspan></text>
+ </g>
+ <g
+ id="g4432"
+ inkscape:label="-10"
+ transform="translate(-434.79908,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4426"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text4430"><tspan
+ sodipodi:role="line"
+ id="tspan4428"
+ x="441.65189"
+ y="566.1087">-10</tspan></text>
+ </g>
+ <g
+ id="g4440"
+ inkscape:label="+1"
+ transform="translate(11.20092,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4434"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text4438"><tspan
+ sodipodi:role="line"
+ id="tspan4436"
+ x="441.65189"
+ y="566.1087">+1</tspan></text>
+ </g>
+ <g
+ transform="translate(131.20092,-17.189114)"
+ inkscape:label="+10"
+ id="g4448">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect4442"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4446"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan4444"
+ sodipodi:role="line">+10</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g4490"
+ inkscape:label="HMI:Input@.position"
+ transform="translate(80,-220)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4452"
+ width="165.96402"
+ height="78.240181"
+ x="203.89867"
+ y="501.87585"
+ rx="7"
+ ry="7"
+ inkscape:label="edit" />
+ <text
+ id="text4456"
+ y="551.66504"
+ x="275.02609"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"
+ inkscape:label="value"><tspan
+ y="551.66504"
+ x="275.02609"
+ id="tspan4454"
+ sodipodi:role="line">1234</tspan></text>
+ <g
+ id="g4464"
+ inkscape:label="-1"
+ transform="translate(-314.79908,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4458"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text4462"><tspan
+ sodipodi:role="line"
+ id="tspan4460"
+ x="441.65189"
+ y="566.1087">-1</tspan></text>
+ </g>
+ <g
+ transform="translate(-434.79908,-17.189114)"
+ inkscape:label="-10"
+ id="g4472">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect4466"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4470"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan4468"
+ sodipodi:role="line">-10</tspan></text>
+ </g>
+ <g
+ transform="translate(11.20092,-17.189114)"
+ inkscape:label="+1"
+ id="g4480">
+ <rect
+ ry="7"
+ rx="7"
+ y="513.73041"
+ x="392.38638"
+ height="88.909302"
+ width="99.578415"
+ id="rect4474"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4478"
+ y="566.1087"
+ x="441.65189"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ y="566.1087"
+ x="441.65189"
+ id="tspan4476"
+ sodipodi:role="line">+1</tspan></text>
+ </g>
+ <g
+ id="g4488"
+ inkscape:label="+10"
+ transform="translate(131.20092,-17.189114)">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4482"
+ width="99.578415"
+ height="88.909302"
+ x="392.38638"
+ y="513.73041"
+ rx="7"
+ ry="7" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="441.65189"
+ y="566.1087"
+ id="text4486"><tspan
+ sodipodi:role="line"
+ id="tspan4484"
+ x="441.65189"
+ y="566.1087">+10</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g4507"
+ inkscape:label="HMI:ScrollBar@.range@.position@.size"
+ transform="translate(-202)">
+ <rect
+ y="84"
+ x="960"
+ height="516"
+ width="100"
+ id="rect4492"
+ style="opacity:1;vector-effect:none;fill:#ff35ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:label="range" />
+ <rect
+ y="236"
+ x="969"
+ height="171"
+ width="81"
+ id="rect4494"
+ style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:label="cursor" />
+ <path
+ style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="M 1009.5,23 1047,81 H 972 Z"
+ id="rect4498"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ inkscape:label="pageup" />
+ <path
+ style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="m 972,603 h 75 l -37.5,58 z"
+ id="rect4500"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ inkscape:label="pagedown" />
+ </g>
+ <g
+ id="g4877"
+ inkscape:label="HMI:VarInit:50@.position" />
+ <g
+ inkscape:label="HMI:VarInit:20@.size"
+ id="g4879" />
+ <g
+ id="g4881"
+ inkscape:label="HMI:VarInit:100@.range" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="277.58728"
+ y="276.54129"
+ id="text941"><tspan
+ sodipodi:role="line"
+ id="tspan939"
+ x="277.58728"
+ y="276.54129">Position</tspan></text>
+ <text
+ id="text945"
+ y="436.54129"
+ x="277.58728"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="436.54129"
+ x="277.58728"
+ id="tspan943"
+ sodipodi:role="line">Range</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="277.58728"
+ y="596.54126"
+ id="text949"><tspan
+ sodipodi:role="line"
+ id="tspan947"
+ x="277.58728"
+ y="596.54126">Size</tspan></text>
+ <g
+ inkscape:label="HMI:ScrollBar@.range@.position@.size"
+ id="g146"
+ transform="rotate(90,837.8103,-106.02497)">
+ <rect
+ inkscape:label="range"
+ style="opacity:1;vector-effect:none;fill:#ff35ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="rect138"
+ width="100"
+ height="516"
+ x="960"
+ y="84" />
+ <rect
+ inkscape:label="cursor"
+ style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="rect140"
+ width="81"
+ height="171"
+ x="969"
+ y="236" />
+ <path
+ inkscape:label="pageup"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path142"
+ d="M 1009.5,23 1047,81 H 972 Z"
+ style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:label="pagedown"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path144"
+ d="m 972,603 h 75 l -37.5,58 z"
+ style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ </g>
+ <g
+ transform="matrix(0.35355339,0.35355339,-0.35355339,0.35355339,831.43929,-136.17916)"
+ inkscape:label="HMI:ScrollBar@.range@.position@.size"
+ id="g156"
+ style="stroke-width:2">
+ <rect
+ inkscape:label="range"
+ style="opacity:1;vector-effect:none;fill:#ff35ff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="rect148"
+ width="100"
+ height="516"
+ x="960"
+ y="84" />
+ <rect
+ inkscape:label="cursor"
+ style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="rect150"
+ width="81"
+ height="171"
+ x="969"
+ y="236" />
+ <path
+ inkscape:label="pageup"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path152"
+ d="M 1009.5,23 1047,81 H 972 Z"
+ style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <path
+ inkscape:label="pagedown"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path154"
+ d="m 972,603 h 75 l -37.5,58 z"
+ style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ </g>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_v2/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,5 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="PYRO://127.0.0.1:61284">
+ <TargetType/>
+ <Libraries Enable_SVGHMI_Library="true"/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_v2/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,585 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
+ <contentHeader name="Unnamed" modificationDateTime="2020-09-30T13:04:27">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="5" y="5"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="MainStuff" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="TargetPressure">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ <variable name="selection">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ <variable name="Pump0">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="TestButton">
+ <type>
+ <derived name="HMI_BOOL"/>
+ </type>
+ </variable>
+ <variable name="TestLocal">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="Multistate">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ <variable name="Radiostate">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ <variable name="Toggle">
+ <type>
+ <derived name="HMI_BOOL"/>
+ </type>
+ </variable>
+ <variable name="Toggle1">
+ <type>
+ <derived name="HMI_BOOL"/>
+ </type>
+ </variable>
+ <variable name="Toggle2">
+ <type>
+ <derived name="HMI_BOOL"/>
+ </type>
+ </variable>
+ <variable name="MultistateExt">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="Speed">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <block localId="4" typeName="PumpControl" instanceName="Pump0" executionOrderId="0" height="40" width="127">
+ <position x="595" y="50"/>
+ <inputVariables>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="5">
+ <position x="595" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
+ <position x="445" y="65"/>
+ <connectionPointOut>
+ <relPosition x="125" y="15"/>
+ </connectionPointOut>
+ <expression>TargetPressure</expression>
+ </inVariable>
+ <inVariable localId="6" executionOrderId="0" height="25" width="90" negated="false">
+ <position x="130" y="60"/>
+ <connectionPointOut>
+ <relPosition x="90" y="10"/>
+ </connectionPointOut>
+ <expression>TestButton</expression>
+ </inVariable>
+ <outVariable localId="7" executionOrderId="0" height="25" width="85" negated="false">
+ <position x="495" y="220"/>
+ <connectionPointIn>
+ <relPosition x="0" y="10"/>
+ <connection refLocalId="6">
+ <position x="495" y="230"/>
+ <position x="367" y="230"/>
+ <position x="367" y="70"/>
+ <position x="220" y="70"/>
+ </connection>
+ </connectionPointIn>
+ <expression>TestLocal</expression>
+ </outVariable>
+ <inVariable localId="1" executionOrderId="0" height="25" width="115" negated="false">
+ <position x="175" y="355"/>
+ <connectionPointOut>
+ <relPosition x="115" y="10"/>
+ </connectionPointOut>
+ <expression>Multistate</expression>
+ </inVariable>
+ <outVariable localId="8" executionOrderId="0" height="25" width="115" negated="false">
+ <position x="495" y="355"/>
+ <connectionPointIn>
+ <relPosition x="0" y="10"/>
+ <connection refLocalId="1">
+ <position x="495" y="365"/>
+ <position x="290" y="365"/>
+ </connection>
+ </connectionPointIn>
+ <expression>MultistateExt</expression>
+ </outVariable>
+ </FBD>
+ </body>
+ </pou>
+ <pou name="PumpControl" pouType="functionBlock">
+ <interface>
+ <localVars>
+ <variable name="Pump">
+ <type>
+ <derived name="HMI_NODE"/>
+ </type>
+ </variable>
+ <variable name="Pressure">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ </localVars>
+ <inputVars>
+ <variable name="TargetPressure">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ </inputVars>
+ <localVars>
+ <variable name="Sloth">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ <variable name="boolout">
+ <type>
+ <derived name="HMI_BOOL"/>
+ </type>
+ </variable>
+ <variable name="boolin">
+ <type>
+ <derived name="HMI_BOOL"/>
+ </type>
+ <initialValue>
+ <simpleValue value="True"/>
+ </initialValue>
+ </variable>
+ <variable name="strout">
+ <type>
+ <derived name="HMI_STRING"/>
+ </type>
+ </variable>
+ <variable name="strin">
+ <type>
+ <derived name="HMI_STRING"/>
+ </type>
+ <initialValue>
+ <simpleValue value="blup"/>
+ </initialValue>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
+ <position x="150" y="100"/>
+ <connectionPointOut>
+ <relPosition x="125" y="15"/>
+ </connectionPointOut>
+ <expression>TargetPressure</expression>
+ </inVariable>
+ <block localId="6" typeName="ADD" executionOrderId="0" height="60" width="65">
+ <position x="405" y="65"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="7" formalParameter="OUT">
+ <position x="405" y="115"/>
+ <position x="360" y="115"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="1" executionOrderId="0" height="30" width="75" negated="false">
+ <position x="150" y="135"/>
+ <connectionPointOut>
+ <relPosition x="75" y="15"/>
+ </connectionPointOut>
+ <expression>Pressure</expression>
+ </inVariable>
+ <block localId="7" typeName="SUB" executionOrderId="0" height="60" width="65">
+ <position x="295" y="85"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="5">
+ <position x="295" y="115"/>
+ <position x="275" y="115"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="1">
+ <position x="295" y="135"/>
+ <position x="285" y="135"/>
+ <position x="285" y="150"/>
+ <position x="225" y="150"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="2" executionOrderId="0" height="30" width="60" negated="false">
+ <position x="240" y="190"/>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>Sloth</expression>
+ </inVariable>
+ <outVariable localId="3" executionOrderId="0" height="30" width="75" negated="false">
+ <position x="435" y="205"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="8" formalParameter="OUT">
+ <position x="435" y="220"/>
+ <position x="410" y="220"/>
+ </connection>
+ </connectionPointIn>
+ <expression>Pressure</expression>
+ </outVariable>
+ <block localId="8" typeName="DIV" executionOrderId="0" height="60" width="65">
+ <position x="345" y="190"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="2">
+ <position x="345" y="220"/>
+ <position x="335" y="220"/>
+ <position x="335" y="205"/>
+ <position x="300" y="205"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="9">
+ <position x="345" y="240"/>
+ <position x="300" y="240"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="9" executionOrderId="0" height="30" width="60" negated="false">
+ <position x="240" y="225"/>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>100</expression>
+ </inVariable>
+ <block localId="10" typeName="CONCAT" executionOrderId="0" height="60" width="65">
+ <position x="360" y="345"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="13" formalParameter="OUT">
+ <position x="360" y="375"/>
+ <position x="330" y="375"/>
+ <position x="330" y="332"/>
+ <position x="440" y="332"/>
+ <position x="440" y="300"/>
+ <position x="430" y="300"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="14">
+ <position x="360" y="395"/>
+ <position x="322" y="395"/>
+ <position x="322" y="400"/>
+ <position x="285" y="400"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <outVariable localId="11" executionOrderId="0" height="30" width="58" negated="false">
+ <position x="495" y="355"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="10" formalParameter="OUT">
+ <position x="495" y="370"/>
+ <position x="450" y="370"/>
+ <position x="450" y="375"/>
+ <position x="425" y="375"/>
+ </connection>
+ </connectionPointIn>
+ <expression>strout</expression>
+ </outVariable>
+ <inVariable localId="12" executionOrderId="0" height="30" width="125" negated="false">
+ <position x="145" y="285"/>
+ <connectionPointOut>
+ <relPosition x="125" y="15"/>
+ </connectionPointOut>
+ <expression>TargetPressure</expression>
+ </inVariable>
+ <block localId="13" typeName="INT_TO_STRING" executionOrderId="0" height="40" width="115">
+ <position x="315" y="270"/>
+ <inputVariables>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="12">
+ <position x="315" y="300"/>
+ <position x="270" y="300"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="115" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="14" executionOrderId="0" height="30" width="50" negated="false">
+ <position x="235" y="385"/>
+ <connectionPointOut>
+ <relPosition x="50" y="15"/>
+ </connectionPointOut>
+ <expression>strin</expression>
+ </inVariable>
+ <inVariable localId="15" executionOrderId="0" height="30" width="60" negated="false">
+ <position x="690" y="210"/>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>boolin</expression>
+ </inVariable>
+ <outVariable localId="16" executionOrderId="0" height="30" width="70" negated="false">
+ <position x="915" y="240"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="17" formalParameter="OUT">
+ <position x="915" y="255"/>
+ <position x="880" y="255"/>
+ </connection>
+ </connectionPointIn>
+ <expression>boolout</expression>
+ </outVariable>
+ <block localId="17" typeName="AND" executionOrderId="0" height="60" width="65">
+ <position x="815" y="225"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="15">
+ <position x="815" y="255"/>
+ <position x="762" y="255"/>
+ <position x="762" y="225"/>
+ <position x="750" y="225"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="21" formalParameter="OUT">
+ <position x="815" y="275"/>
+ <position x="750" y="275"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="18" executionOrderId="0" height="30" width="75" negated="false">
+ <position x="455" y="260"/>
+ <connectionPointOut>
+ <relPosition x="75" y="15"/>
+ </connectionPointOut>
+ <expression>Pressure</expression>
+ </inVariable>
+ <block localId="19" typeName="MOD" executionOrderId="0" height="60" width="65">
+ <position x="585" y="245"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="18">
+ <position x="585" y="275"/>
+ <position x="530" y="275"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="20">
+ <position x="585" y="295"/>
+ <position x="555" y="295"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="20" executionOrderId="0" height="30" width="20" negated="false">
+ <position x="535" y="280"/>
+ <connectionPointOut>
+ <relPosition x="20" y="15"/>
+ </connectionPointOut>
+ <expression>2</expression>
+ </inVariable>
+ <block localId="21" typeName="EQ" executionOrderId="0" height="60" width="65">
+ <position x="685" y="245"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="19" formalParameter="OUT">
+ <position x="685" y="275"/>
+ <position x="650" y="275"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="22">
+ <position x="685" y="295"/>
+ <position x="670" y="295"/>
+ <position x="670" y="330"/>
+ <position x="650" y="330"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="22" executionOrderId="0" height="30" width="20" negated="false">
+ <position x="630" y="315"/>
+ <connectionPointOut>
+ <relPosition x="20" y="15"/>
+ </connectionPointOut>
+ <expression>0</expression>
+ </inVariable>
+ <inVariable localId="4" executionOrderId="0" height="30" width="60" negated="false">
+ <position x="510" y="80"/>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>Sloth</expression>
+ </inVariable>
+ </FBD>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="resource1">
+ <task name="task0" priority="0" interval="T#20ms">
+ <pouInstance name="instance0" typeName="MainStuff"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_v2/py_ext_0@py_ext/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="1" Name="py_ext_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_v2/py_ext_0@py_ext/pyfile.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,30 @@
+<?xml version='1.0' encoding='utf-8'?>
+<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+ <variables>
+ <variable name="SomePLCglobal" type="HMI_STRING" initial="'blaf'" onchange="MyOnChangeFunc"/>
+ </variables>
+ <globals>
+ <xhtml:p><![CDATA[
+
+def MyOnChangeFunc(changed_var_name):
+ print changed_var_name + ": " + getattr(PLCGlobals, changed_var_name)
+
+]]></xhtml:p>
+ </globals>
+ <init>
+ <xhtml:p><![CDATA[
+]]></xhtml:p>
+ </init>
+ <cleanup>
+ <xhtml:p><![CDATA[
+]]></xhtml:p>
+ </cleanup>
+ <start>
+ <xhtml:p><![CDATA[
+]]></xhtml:p>
+ </start>
+ <stop>
+ <xhtml:p><![CDATA[
+]]></xhtml:p>
+ </stop>
+</PyFile>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_v2/svghmi_0@svghmi/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="svghmi_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_v2/svghmi_0@svghmi/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<SVGHMI xmlns:xsd="http://www.w3.org/2001/XMLSchema" OnWatchdog="echo Watchdog for {name} !" OnStart="xdg-open http://127.0.0.1:{port}/{name}" OnStop="echo Closing {name}" WatchdogInitial="10" WatchdogInterval="5"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_v2/svghmi_0@svghmi/svghmi.svg Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,1619 @@
+<?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="1280"
+ height="720"
+ viewBox="0 0 1280 720"
+ version="1.1"
+ id="hmi0"
+ sodipodi:docname="svghmi.svg"
+ inkscape:version="0.92.5 (0.92.5+68)"
+ inkscape:label="Layer">
+ <metadata
+ id="metadata4542">
+ <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>
+ <defs
+ id="defs2">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-688.56326 : 510.71991 : 1"
+ inkscape:vp_y="0 : 1306.0642 : 0"
+ inkscape:vp_z="662.62627 : 323.72015 : 1"
+ inkscape:persp3d-origin="147.31778 : 353.99223 : 1"
+ id="perspective258" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-457.78124 : 416.79285 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="576.76945 : 273.61475 : 1"
+ inkscape:persp3d-origin="182.21876 : 296.79285 : 1"
+ id="perspective503" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-104 : 357 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1272 : 385 : 1"
+ inkscape:persp3d-origin="536 : 237 : 1"
+ id="perspective445" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient962">
+ <stop
+ style="stop-color:#ff3000;stop-opacity:1;"
+ offset="0"
+ id="stop958" />
+ <stop
+ style="stop-color:#0022ff;stop-opacity:1"
+ offset="1"
+ id="stop960" />
+ </linearGradient>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker926"
+ 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path924"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient962"
+ id="linearGradient1407"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.5,0,0,0.03945396,73.07865,3.7693345)"
+ x1="113.38908"
+ y1="-62.210247"
+ x2="113.38908"
+ y2="4.0725975" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="-470.06413 : 851.30353 : 1"
+ inkscape:vp_y="0 : 1319.7648 : 0"
+ inkscape:vp_z="895.29941 : 662.3421 : 1"
+ inkscape:persp3d-origin="374.58537 : 692.93174 : 1"
+ id="perspective503-6" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:document-units="px"
+ inkscape:current-layer="hmi0"
+ showgrid="false"
+ units="px"
+ inkscape:zoom="1"
+ inkscape:cx="379.07861"
+ inkscape:cy="265.09897"
+ inkscape:window-width="2503"
+ inkscape:window-height="1416"
+ inkscape:window-x="57"
+ inkscape:window-y="24"
+ inkscape:window-maximized="1"
+ showguides="true"
+ inkscape:guide-bbox="true" />
+ <rect
+ style="color:#000000;fill:#4d4d4d"
+ id="page0"
+ width="1280"
+ height="720"
+ x="0"
+ y="0"
+ inkscape:label="HMI:Page:Home"
+ sodipodi:insensitive="true" />
+ <g
+ inkscape:label="HMI:Slider@/SPEED"
+ transform="matrix(7.5590552,0,0,7.5590552,-780.78539,561.61779)"
+ id="g110-0">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:0.52916664;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="M 113.38908,2.2017068 V -62.210247"
+ id="path90-9"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ inkscape:label="range" />
+ <path
+ inkscape:label="handle"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path92-3"
+ d="m 113.32293,4.2048893 v -5.230241"
+ style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient1407);stroke-width:5.28146696;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="115.07632"
+ y="9.3424692"
+ id="text96-6"
+ inkscape:label="min"><tspan
+ sodipodi:role="line"
+ id="tspan94-0"
+ x="115.07632"
+ y="9.3424692"
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
+ <text
+ id="text100-6"
+ y="-64.195457"
+ x="113.27539"
+ style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="max"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="-64.195457"
+ x="113.27539"
+ sodipodi:role="line"
+ id="tspan1409">10</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="-24.72547"
+ y="-121.97556"
+ id="text104-6"
+ inkscape:label="value"
+ transform="rotate(90)"><tspan
+ sodipodi:role="line"
+ x="-24.72547"
+ y="-121.97556"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ id="tspan102-1">000</tspan></text>
+ </g>
+ <g
+ id="g4557"
+ inkscape:label="HMI:Input@/SOMEPLCGLOBAL">
+ <text
+ inkscape:label="value"
+ transform="scale(1.1201068,0.89277202)"
+ id="text2398"
+ y="479.46704"
+ x="247.53484"
+ style="font-style:normal;font-weight:normal;font-size:124.08008575px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.10200214px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:3.10200214px"
+ y="479.46704"
+ x="247.53484"
+ id="tspan2396"
+ sodipodi:role="line">Test</tspan></text>
+ <rect
+ style="opacity:0.18600003;fill:#de2cc9;fill-opacity:1;stroke:none;stroke-width:1.11699021"
+ id="rect4559"
+ width="323.85489"
+ height="132.93608"
+ x="257.10974"
+ y="328.97858"
+ inkscape:label="edit" />
+ <rect
+ style="opacity:0;fill:#de2cc9;fill-opacity:1;stroke:none;stroke-width:3.45667744"
+ id="rect4561"
+ width="580.42413"
+ height="339.91623"
+ x="699.57587"
+ y="380.08374"
+ inkscape:label="key_pos" />
+ </g>
+ <g
+ transform="matrix(1.5213157,0,0,1.4848913,-82.472173,789.79964)"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4278"
+ inkscape:label="HMI:Keypad:HMI_STRING">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="M 54.211084,1.2654702 H 435.7388 V 230.18209 H 54.211084 Z"
+ id="rect1006-3"
+ inkscape:connector-curvature="0"
+ inkscape:label="Background"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path185"
+ d="m 162,197 h -11 c -2,0 -3,1 -3,3 v 18 c 0,2 1,3 3,3 h 11 168 18 c 0,0 1,-1 1,-3 v -18 c 0,-2 -1,-3 -1,-3 h -18 z"
+ inkscape:connector-curvature="0"
+ inkscape:label="Space" />
+ <g
+ id="g4380"
+ inkscape:label="Keys"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-19.076386)">
+ <g
+ id="g4283"
+ inkscape:label="q Q"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path41"
+ d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="99.378708"
+ y="138.28395"
+ id="text203"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">Q</text>
+ </g>
+ <g
+ id="g4337"
+ inkscape:label="w W"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path43"
+ d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="127.0709"
+ y="138.28395"
+ id="text207"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">W</text>
+ </g>
+ <g
+ id="g4332"
+ inkscape:label="e E"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path45"
+ d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="159.70854"
+ y="138.28395"
+ id="text211"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">E</text>
+ </g>
+ <g
+ id="g4326"
+ inkscape:label="r R"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path47"
+ d="m 184,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="188.39003"
+ y="138.28395"
+ id="text215"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">R</text>
+ </g>
+ <g
+ id="g4321"
+ inkscape:label="t T"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path49"
+ d="m 213,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="219.04961"
+ y="138.28395"
+ id="text219"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">T</text>
+ </g>
+ <g
+ id="g4316"
+ inkscape:label="y Y"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path51"
+ d="m 243,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="248.72017"
+ y="138.28395"
+ id="text223"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">Y</text>
+ </g>
+ <g
+ id="g4311"
+ inkscape:label="u U"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path53"
+ d="m 273,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="278.39075"
+ y="138.28395"
+ id="text227"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">U</text>
+ </g>
+ <g
+ id="g4306"
+ inkscape:label="i I"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path55"
+ d="m 302,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="311.02859"
+ y="138.28395"
+ id="text231"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">I</text>
+ </g>
+ <g
+ id="g4301"
+ inkscape:label="o O"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path57"
+ d="m 332,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="336.74319"
+ y="138.28395"
+ id="text235"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">O</text>
+ </g>
+ <g
+ id="g4296"
+ inkscape:label="p P"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path59"
+ d="m 362,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="367.40256"
+ y="138.28395"
+ id="text239"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">P</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4511"
+ inkscape:label="a A">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 103,147 h 19 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path65"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text243"
+ y="163.99854"
+ x="107.29005"
+ transform="scale(1.0007154,0.99928514)">A</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4516"
+ inkscape:label="s S">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 132,147 h 20 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path67"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text247"
+ y="163.99854"
+ x="137.95012"
+ transform="scale(1.0007154,0.99928514)">S</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4521"
+ inkscape:label="d D">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 162,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path69"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text251"
+ y="163.99854"
+ x="166.63159"
+ transform="scale(1.0007154,0.99928514)">D</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4526"
+ inkscape:label="f F">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 192,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path71"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text255"
+ y="163.99854"
+ x="197.29166"
+ transform="scale(1.0007154,0.99928514)">F</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4531"
+ inkscape:label="g G">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 221,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path73"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text259"
+ y="163.99854"
+ x="225.97284"
+ transform="scale(1.0007154,0.99928514)">G</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4536"
+ inkscape:label="h H">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 251,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path75"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text263"
+ y="163.99854"
+ x="255.64342"
+ transform="scale(1.0007154,0.99928514)">H</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4541"
+ inkscape:label="j J">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 281,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path77"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text267"
+ y="163.99854"
+ x="287.29208"
+ transform="scale(1.0007154,0.99928514)">J</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4546"
+ inkscape:label="k K">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 310,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path79"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text271"
+ y="163.99854"
+ x="314.98465"
+ transform="scale(1.0007154,0.99928514)">K</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4551"
+ inkscape:label="l L">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 340,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path81"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text275"
+ y="163.99854"
+ x="345.64444"
+ transform="scale(1.0007154,0.99928514)">L</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4586"
+ inkscape:label="z Z"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 113,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
+ id="path87-3"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text279"
+ y="188.72411"
+ x="119.15855"
+ transform="scale(1.0007154,0.99928514)">Z</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4581"
+ inkscape:label="x X"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 143,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
+ id="path89-6"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text283"
+ y="188.72411"
+ x="148.82933"
+ transform="scale(1.0007154,0.99928514)">X</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4576"
+ inkscape:label="c C"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 173,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
+ id="path91-7"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text287"
+ y="188.72411"
+ x="178.50011"
+ transform="scale(1.0007154,0.99928514)">C</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4571"
+ inkscape:label="v V"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 202,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c 0,0 -1,-1 -1,-3 v -17 c 0,-1 1,-3 1,-3 z"
+ id="path195"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text291"
+ y="188.72411"
+ x="208.16988"
+ transform="scale(1.0007154,0.99928514)">V</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4566"
+ inkscape:label="b B"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 233,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path93"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text295"
+ y="188.72411"
+ x="237.84096"
+ transform="scale(1.0007154,0.99928514)">B</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4561"
+ inkscape:label="n N"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 263,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path95"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text299"
+ y="188.72411"
+ x="267.51193"
+ transform="scale(1.0007154,0.99928514)">N</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4556"
+ inkscape:label="m M"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 293,172 h 19 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -19 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path97"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text303"
+ y="188.72411"
+ x="296.1933"
+ transform="scale(1.0007154,0.99928514)">M</text>
+ </g>
+ <g
+ id="g4818"
+ inkscape:label=". :"
+ style="stroke-width:0.47631353"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 352,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path101"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928513)"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text719"
+ y="189.66107"
+ x="359.58276">.</text>
+ <text
+ x="359.58276"
+ y="181.64532"
+ id="text4834"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928512)">:</text>
+ </g>
+ <g
+ id="g4813"
+ inkscape:label=", ;"
+ style="stroke-width:0.47631353"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 322,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path99"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text727"
+ y="181.64532"
+ x="330.00806"
+ transform="scale(1.0007154,0.99928512)">;</text>
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ y="189.66107"
+ x="330.00806"
+ transform="scale(1.0007154,0.99928512)"
+ id="text4826">,</text>
+ </g>
+ <g
+ style="stroke-width:0.47631353"
+ inkscape:label="1"
+ id="g2845"
+ transform="translate(-13.353469,-45.783327)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path2839"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2841"
+ y="138.28395"
+ x="101.07153"
+ transform="scale(1.0007154,0.99928513)">1</text>
+ </g>
+ <g
+ style="stroke-width:0.47631353"
+ inkscape:label="2"
+ id="g2853"
+ transform="translate(-13.353469,-45.783327)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path2847"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2849"
+ y="138.28395"
+ x="130.18704"
+ transform="scale(1.0007154,0.99928513)">2</text>
+ </g>
+ <g
+ inkscape:label="3"
+ id="g2861"
+ style="stroke-width:0.47631353"
+ transform="translate(-13.353469,-45.783327)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path2855"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2857"
+ y="138.28395"
+ x="159.70854"
+ transform="scale(1.0007154,0.99928514)">3</text>
+ </g>
+ <g
+ id="g2957"
+ inkscape:label="4"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 170.64653,94.293059 h 19 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 V 97.293059 c 0,-2 2,-3 3,-3 z"
+ id="path2865"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2867"
+ y="111.55791"
+ x="176.39188"
+ transform="scale(1.0007154,0.99928514)">4</text>
+ </g>
+ <g
+ id="g2962"
+ inkscape:label="5"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 199.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2873"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2875"
+ y="111.55791"
+ x="205.70567"
+ transform="scale(1.0007154,0.99928514)">5</text>
+ </g>
+ <g
+ id="g2967"
+ inkscape:label="6"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 229.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2881"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2883"
+ y="111.55791"
+ x="236.15851"
+ transform="scale(1.0007154,0.99928514)">6</text>
+ </g>
+ <g
+ id="g2972"
+ inkscape:label="7"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 259.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2889"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2891"
+ y="111.55791"
+ x="266.06564"
+ transform="scale(1.0007154,0.99928514)">7</text>
+ </g>
+ <g
+ id="g2977"
+ inkscape:label="8"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 288.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2897"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2899"
+ y="111.55791"
+ x="295.08231"
+ transform="scale(1.0007154,0.99928514)">8</text>
+ </g>
+ <g
+ id="g2982"
+ inkscape:label="9 -"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 318.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2905"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2907"
+ y="111.55791"
+ x="325.05408"
+ transform="scale(1.0007154,0.99928514)">9</text>
+ <text
+ transform="scale(1.0007154,0.99928511)"
+ x="335.72681"
+ y="102.42173"
+ id="text806"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826">-</text>
+ </g>
+ <g
+ id="g2987"
+ inkscape:label="0 +"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 348.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2913"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2915"
+ y="111.55791"
+ x="355.05984"
+ transform="scale(1.0007154,0.99928514)">0</text>
+ <text
+ transform="scale(1.0007154,0.99928511)"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text804"
+ y="102.42173"
+ x="365.30151">+</text>
+ </g>
+ </g>
+ <g
+ transform="translate(335.89988,-58.934803)"
+ id="g3544"
+ inkscape:label="Esc"
+ style="stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path105"
+ d="m 47.948645,115.07509 h 39.076386 c 1,0 3,1 3,3 v 18 c 0,1 -2,3 -3,3 H 47.948645 c -2,0 -3,-2 -3,-3 v -18 c 0,-2 1,-3 3,-3 z"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ transform="scale(1.0007154,0.99928512)"
+ style="font-weight:normal;font-size:9.37966251px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text469"
+ y="130.02028"
+ x="59.288635">Esc</text>
+ </g>
+ <g
+ inkscape:label="Enter"
+ id="g4291"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-19.076386)">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path3616"
+ d="m 368.68274,170 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 54.24217 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -260.23633,1080.8125 v 15.7949 h -38.68555 v -3 l -6.91992,4 6.91992,4 v -3.0019 h 40.6836 v -17.793 z"
+ transform="matrix(0.47690966,0,0,0.47690966,531.12074,-361.18588)"
+ id="path6545"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:label="BackSpace"
+ id="g4287"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ transform="translate(2.3648311e-6,-28.614579)">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path3624"
+ d="m 391.97749,144 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 30.94742 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -268.72656,1011.1777 -6.91992,4 6.91992,4 v -3.0019 h 29.18945 v -1.9981 h -29.18945 z"
+ transform="matrix(0.47690966,0,0,0.47690966,531.12074,-351.64769)"
+ id="path11623-1-0"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g934"
+ inkscape:label="CapsLock">
+ <g
+ inkscape:label="inactive"
+ id="g942"
+ style="display:inline;fill-rule:evenodd;stroke-width:0.47631353"
+ transform="translate(0,-19.076386)">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path936-3"
+ d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="69.789322"
+ y="156.71973"
+ id="text938-5"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
+ transform="scale(1.0007154,0.99928515)">Caps</text>
+ <text
+ x="69.789322"
+ y="166.5585"
+ id="text940"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
+ transform="scale(1.0007154,0.99928515)">Lock</text>
+ </g>
+ <g
+ transform="translate(0,-19.076386)"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4429"
+ inkscape:label="active">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
+ id="path199"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ transform="scale(1.0007154,0.99928515)"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
+ id="text647"
+ y="156.71973"
+ x="69.789322">Caps</text>
+ <text
+ transform="scale(1.0007154,0.99928515)"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
+ id="text651"
+ y="166.5585"
+ x="69.789322">Lock</text>
+ </g>
+ </g>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect2130"
+ width="361.89996"
+ height="30.150299"
+ x="64.024956"
+ y="15.771065"
+ rx="3.8152773"
+ ry="3.8152773"
+ inkscape:label="Field" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="72.50132"
+ y="38.296417"
+ id="text1309"
+ inkscape:label="Value"><tspan
+ sodipodi:role="line"
+ id="tspan1307"
+ x="72.50132"
+ y="38.296417"
+ style="text-align:start;text-anchor:start;stroke-width:0.47690967px">text</tspan></text>
+ <g
+ id="g437"
+ inkscape:label="Shift">
+ <g
+ id="g421"
+ inkscape:label="inactive">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ id="path910"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text912"
+ y="177.90059"
+ x="392.55679"
+ transform="scale(1.0007154,0.99928513)">Shift</text>
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path856"
+ d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="75.85218"
+ y="177.90059"
+ id="text858"
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928513)">Shift</text>
+ </g>
+ <g
+ id="g413"
+ inkscape:label="active">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path551"
+ d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928513)"
+ x="392.55679"
+ y="177.90059"
+ id="text629"
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;stroke-width:0.36866826">Shift</text>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
+ id="path879"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ transform="scale(1.0007154,0.99928513)"
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text881"
+ y="177.90059"
+ x="75.85218">Shift</text>
+ </g>
+ </g>
+ <text
+ transform="scale(0.96824588,1.0327955)"
+ id="text471"
+ y="12.333657"
+ x="252.9579"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="Info"><tspan
+ style="stroke-width:0.30784383px"
+ y="12.333657"
+ x="252.9579"
+ id="tspan469"
+ sodipodi:role="line">information</tspan></text>
+ <rect
+ style="opacity:0.18600003;fill:#de2cc9;fill-opacity:1;stroke:none;stroke-width:0.31677353"
+ id="rect4563"
+ width="381.45959"
+ height="14.110301"
+ x="54.211086"
+ y="1.2654642"
+ inkscape:label="position" />
+ </g>
+ <g
+ inkscape:label="HMI:Slider@/PUMP0/SLOTH"
+ transform="matrix(7.5590552,0,0,7.5590552,-248.554,584.0829)"
+ id="g110-0-9">
+ <g
+ inkscape:label="setpoint"
+ style="opacity:0.5;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.76565915"
+ inkscape:corner7="-0.15304809 : -0.15652183 : 0.051043755 : 1"
+ inkscape:corner0="-0.13109479 : -0.13697746 : 0 : 1"
+ inkscape:perspectiveID="#perspective258"
+ id="g256"
+ sodipodi:type="inkscape:box3d">
+ <path
+ style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+ points="69.054145,5.4029493 71.910946,3.7246414 71.910946,0.053890203 69.054145,1.5165601 "
+ d="M 69.054145,1.5165601 V 5.4029493 L 71.910946,3.7246414 V 0.0538902 Z"
+ inkscape:box3dsidetype="6"
+ id="path244"
+ sodipodi:type="inkscape:box3dside" />
+ <path
+ style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+ points="72.352867,6.8282124 75.092002,5.0278603 71.910946,3.7246414 69.054145,5.4029493 "
+ d="M 69.054145,5.4029493 72.352867,6.8282124 75.092002,5.0278603 71.910946,3.7246414 Z"
+ inkscape:box3dsidetype="13"
+ id="path246"
+ sodipodi:type="inkscape:box3dside" />
+ <path
+ style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+ points="75.092002,1.2673703 75.092002,5.0278603 71.910946,3.7246414 71.910946,0.053890203 "
+ d="m 71.910946,0.0538902 3.181056,1.2134801 v 3.76049 L 71.910946,3.7246414 Z"
+ inkscape:box3dsidetype="11"
+ id="path248"
+ sodipodi:type="inkscape:box3dside" />
+ <path
+ style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+ points="72.352867,2.8410867 75.092002,1.2673703 71.910946,0.053890203 69.054145,1.5165601 "
+ d="M 69.054145,1.5165601 72.352867,2.8410867 75.092002,1.2673703 71.910946,0.0538902 Z"
+ inkscape:box3dsidetype="5"
+ id="path250"
+ sodipodi:type="inkscape:box3dside" />
+ <path
+ style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+ points="72.352867,6.8282124 75.092002,5.0278603 75.092002,1.2673703 72.352867,2.8410867 "
+ d="m 72.352867,2.8410867 v 3.9871257 l 2.739135,-1.8003521 v -3.76049 z"
+ inkscape:box3dsidetype="14"
+ id="path252"
+ sodipodi:type="inkscape:box3dside" />
+ <path
+ style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
+ points="72.352867,2.8410867 72.352867,6.8282124 69.054145,5.4029493 69.054145,1.5165601 "
+ d="m 69.054145,1.5165601 3.298722,1.3245266 V 6.8282124 L 69.054145,5.4029493 Z"
+ inkscape:box3dsidetype="3"
+ id="path254"
+ sodipodi:type="inkscape:box3dside" />
+ </g>
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:0.52375954;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 71.94894,3.6581855 79.3256,0.040092"
+ id="path90-9-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ inkscape:label="range" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="68.771873"
+ y="5.501111"
+ id="text96-6-0"
+ inkscape:label="min"><tspan
+ sodipodi:role="line"
+ id="tspan94-0-62"
+ x="68.771873"
+ y="5.501111"
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
+ <text
+ id="text100-6-6"
+ y="5.501111"
+ x="159.67337"
+ style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="max"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="5.501111"
+ x="159.67337"
+ sodipodi:role="line"
+ id="tspan1409-1">1000</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:7.78479624px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.19461991px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="-115.32294"
+ y="-9.0188799"
+ id="text104-6-8"
+ inkscape:label="value"
+ transform="scale(-1)"><tspan
+ sodipodi:role="line"
+ x="-115.32294"
+ y="-9.0188799"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.19461991px"
+ id="tspan102-1-7">000</tspan></text>
+ <g
+ sodipodi:type="inkscape:box3d"
+ id="g930"
+ inkscape:perspectiveID="#perspective503"
+ inkscape:corner0="-0.13109479 : -0.13697746 : 0 : 1"
+ inkscape:corner7="-0.15304809 : -0.15652183 : 0.051043755 : 1"
+ style="fill:#ff0000;fill-opacity:1;stroke:none"
+ inkscape:label="handle"
+ transform="translate(0.01,0.01)">
+ <path
+ sodipodi:type="inkscape:box3dside"
+ id="path932"
+ inkscape:box3dsidetype="6"
+ d="M 69.751604,1.9575481 V 4.9331975 L 71.93894,3.6481857 V 0.8376415 Z"
+ points="69.751604,4.9331975 71.93894,3.6481857 71.93894,0.8376415 69.751604,1.9575481 "
+ style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
+ <path
+ sodipodi:type="inkscape:box3dside"
+ id="path940"
+ inkscape:box3dsidetype="13"
+ d="M 69.751604,4.9331975 72.2773,6.0244633 74.374544,4.6460073 71.93894,3.6481857 Z"
+ points="72.2773,6.0244633 74.374544,4.6460073 71.93894,3.6481857 69.751604,4.9331975 "
+ style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
+ <path
+ sodipodi:type="inkscape:box3dside"
+ id="path942"
+ inkscape:box3dsidetype="11"
+ d="m 71.93894,0.8376415 2.435604,0.9291122 V 4.6460073 L 71.93894,3.6481857 Z"
+ points="74.374544,1.7667537 74.374544,4.6460073 71.93894,3.6481857 71.93894,0.8376415 "
+ style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
+ <path
+ sodipodi:type="inkscape:box3dside"
+ id="path934"
+ inkscape:box3dsidetype="5"
+ d="M 69.751604,1.9575481 72.2773,2.971684 74.374544,1.7667537 71.93894,0.8376415 Z"
+ points="72.2773,2.971684 74.374544,1.7667537 71.93894,0.8376415 69.751604,1.9575481 "
+ style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
+ <path
+ sodipodi:type="inkscape:box3dside"
+ id="path938"
+ inkscape:box3dsidetype="14"
+ d="m 72.2773,2.971684 v 3.0527793 l 2.097244,-1.378456 V 1.7667537 Z"
+ points="72.2773,6.0244633 74.374544,4.6460073 74.374544,1.7667537 72.2773,2.971684 "
+ style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
+ <path
+ sodipodi:type="inkscape:box3dside"
+ id="path936"
+ inkscape:box3dsidetype="3"
+ d="M 69.751604,1.9575481 72.2773,2.971684 V 6.0244633 L 69.751604,4.9331975 Z"
+ points="72.2773,2.971684 72.2773,6.0244633 69.751604,4.9331975 69.751604,1.9575481 "
+ style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ id="g1292-3"
+ inkscape:label="HMI:Input@/RADIOSTATE"
+ transform="matrix(0.94144976,0,0,1.7212489,176.35468,-2117.077)">
+ <g
+ id="g2530"
+ inkscape:label="=3">
+ <rect
+ style="display:inline;fill:#0009ff;fill-opacity:1;stroke:none;stroke-width:0.24259248"
+ id="rect1273-6-3"
+ width="57.391823"
+ height="24.148804"
+ x="230.03636"
+ y="1238.2637"
+ inkscape:label="3" />
+ <g
+ transform="translate(-213.152,55.750293)"
+ id="g2520-5"
+ inkscape:label="HMI:Switch@/RADIOSTATE"
+ style="fill:#0009ff;fill-opacity:1">
+ <rect
+ inkscape:label="3"
+ y="1206.6622"
+ x="443.18835"
+ height="24.148754"
+ width="57.39183"
+ id="rect1273-6-9-9-9"
+ style="display:inline;fill:#0009ff;fill-opacity:1;stroke:none;stroke-width:0.24259226" />
+ </g>
+ </g>
+ <g
+ id="g2527"
+ inkscape:label="=2">
+ <rect
+ style="display:inline;fill:#00ffed;fill-opacity:1;stroke:none;stroke-width:0.24259254"
+ id="rect1273-6-56"
+ width="57.391857"
+ height="24.148804"
+ x="313.84549"
+ y="1238.2637"
+ inkscape:label="2" />
+ <g
+ transform="translate(-303.62283,32.70105)"
+ id="g2520-2"
+ inkscape:label="HMI:Switch@/RADIOSTATE">
+ <rect
+ inkscape:label="2"
+ y="1229.7114"
+ x="617.46832"
+ height="24.148754"
+ width="57.39183"
+ id="rect1273-6-9-9-0"
+ style="display:inline;fill:#00ffed;fill-opacity:1;stroke:none;stroke-width:0.24259226" />
+ </g>
+ </g>
+ <g
+ id="g2524"
+ inkscape:label="=1">
+ <rect
+ style="display:inline;fill:#3eff00;fill-opacity:1;stroke:none;stroke-width:0.24182089"
+ id="rect1273-6-2"
+ width="57.027344"
+ height="24.148796"
+ x="146.22725"
+ y="1238.2637"
+ inkscape:label="1" />
+ <g
+ transform="translate(-213.152,55.750293)"
+ id="g2520-23"
+ inkscape:label="HMI:Switch@/RADIOSTATE">
+ <rect
+ inkscape:label="1"
+ y="1206.6622"
+ x="359.37924"
+ height="24.148754"
+ width="57.39183"
+ id="rect1273-6-9-9-7"
+ style="display:inline;fill:#3eff00;fill-opacity:1;stroke:none;stroke-width:0.24259226" />
+ </g>
+ </g>
+ <g
+ id="g2501"
+ inkscape:label="=0"
+ transform="translate(-260.62575)">
+ <rect
+ inkscape:label="0"
+ y="1238.2637"
+ x="323.04385"
+ height="24.148754"
+ width="57.39183"
+ id="rect1273-6-9"
+ style="display:inline;fill:#ffea00;fill-opacity:1;stroke:none;stroke-width:0.24259225" />
+ <g
+ id="g2520"
+ inkscape:label="HMI:Switch@/RADIOSTATE">
+ <rect
+ inkscape:label="0"
+ y="1262.4125"
+ x="323.04385"
+ height="24.148754"
+ width="57.39183"
+ id="rect1273-6-9-9"
+ style="display:inline;fill:#ffea00;fill-opacity:1;stroke:none;stroke-width:0.24259226" />
+ </g>
+ </g>
+ </g>
+ <g
+ id="g1047"
+ inkscape:label="HMI:CircularBar@/PUMP0/SLOTH"
+ transform="matrix(0.39840034,0,0,0.35920948,-97.955902,106.13488)">
+ <path
+ inkscape:label="range"
+ sodipodi:open="true"
+ d="M 1079.626,411.60913 A 184.25998,167.44942 0 0 1 874.51345,308.78336 184.25998,167.44942 0 0 1 946.20137,106.11681 184.25998,167.44942 0 0 1 1178.8257,131.16507"
+ sodipodi:end="5.5191826"
+ sodipodi:start="1.3860423"
+ sodipodi:ry="167.44942"
+ sodipodi:rx="184.25998"
+ sodipodi:cy="247.00946"
+ sodipodi:cx="1045.7766"
+ sodipodi:type="arc"
+ id="path1044"
+ style="opacity:1;fill:none;fill-opacity:1;stroke:#fe00dc;stroke-width:22.07197189;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:90.1384964px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff00ca;fill-opacity:1;stroke:none;stroke-width:2.25346255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1046.8701"
+ y="258.16129"
+ id="text1051"
+ transform="scale(0.91814752,1.0891496)"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1049"
+ x="1046.8701"
+ y="258.16129"
+ style="fill:#ff00ca;fill-opacity:1;stroke:none;stroke-width:2.25346255px;stroke-opacity:1">000</tspan></text>
+ <path
+ inkscape:label="path"
+ sodipodi:open="true"
+ d="M 1083.68,410.87778 A 184.25998,167.44942 0 0 1 875.42544,310.83196 184.25998,167.44942 0 0 1 945.58759,106.47662 184.25998,167.44942 0 0 1 1179.4956,131.8038"
+ sodipodi:end="5.524452"
+ sodipodi:start="1.3636114"
+ sodipodi:ry="167.44942"
+ sodipodi:rx="184.25998"
+ sodipodi:cy="247.00946"
+ sodipodi:cx="1045.7766"
+ sodipodi:type="arc"
+ id="path1044-3"
+ style="opacity:1;fill:none;fill-opacity:1;stroke:#00fff1;stroke-width:40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <g
+ id="g1047-6"
+ inkscape:label="HMI:CircularSlider@/PUMP0/SLOTH"
+ transform="matrix(0.45707797,0,0,0.45707797,33.744118,80.994747)">
+ <path
+ inkscape:label="range"
+ d="M 970.29569,399.76446 A 184.25998,167.44942 0 0 1 866.26395,284.77467 184.25998,167.44942 0 0 1 904.10823,139.93753"
+ sodipodi:end="3.8353474"
+ sodipodi:start="1.9928597"
+ sodipodi:ry="167.44942"
+ sodipodi:rx="184.25998"
+ sodipodi:cy="247.00946"
+ sodipodi:cx="1045.7766"
+ sodipodi:type="arc"
+ id="path1044-7"
+ style="opacity:1;fill:none;fill-opacity:1;stroke:#fe00dc;stroke-width:22.07197189;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ sodipodi:open="true" />
+ <g
+ sodipodi:type="inkscape:box3d"
+ id="g930-2"
+ inkscape:perspectiveID="#perspective503-6"
+ inkscape:corner0="-0.086129988 : -0.14445971 : 0 : 1"
+ inkscape:corner7="-0.10808329 : -0.16400408 : 0.051043755 : 1"
+ style="fill:#ff0000;fill-opacity:1;stroke:none"
+ inkscape:label="handle"
+ inkscape:transform-center-x="8"
+ inkscape:transform-center-y="98">
+ <path
+ sodipodi:type="inkscape:box3dside"
+ id="path932-9"
+ inkscape:box3dsidetype="6"
+ d="m 919.8592,371.09875 v 61.75093 l 51.05152,-25.59855 v -58.48432 z"
+ points="919.8592,432.84968 970.91072,407.25113 970.91072,348.76681 919.8592,371.09875 "
+ style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:21.82598114px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
+ <path
+ sodipodi:type="inkscape:box3dside"
+ id="path940-1"
+ inkscape:box3dsidetype="13"
+ d="m 919.8592,432.84968 49.77112,22.08624 49.54588,-27.39007 -48.26548,-20.29472 z"
+ points="969.63032,454.93592 1019.1762,427.54585 970.91072,407.25113 919.8592,432.84968 "
+ style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:21.82598114px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
+ <path
+ sodipodi:type="inkscape:box3dside"
+ id="path942-2"
+ inkscape:box3dsidetype="11"
+ d="m 970.91072,348.76681 48.26548,18.93313 v 59.84591 l -48.26548,-20.29472 z"
+ points="1019.1762,367.69994 1019.1762,427.54585 970.91072,407.25113 970.91072,348.76681 "
+ style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:21.82598114px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
+ <path
+ sodipodi:type="inkscape:box3dside"
+ id="path934-7"
+ inkscape:box3dsidetype="5"
+ d="m 919.8592,371.09875 49.77112,20.56633 49.54588,-23.96514 -48.26548,-18.93313 z"
+ points="969.63032,391.66508 1019.1762,367.69994 970.91072,348.76681 919.8592,371.09875 "
+ style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:21.82598114px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
+ <path
+ sodipodi:type="inkscape:box3dside"
+ id="path938-0"
+ inkscape:box3dsidetype="14"
+ d="m 969.63032,391.66508 v 63.27084 l 49.54588,-27.39007 v -59.84591 z"
+ points="969.63032,454.93592 1019.1762,427.54585 1019.1762,367.69994 969.63032,391.66508 "
+ style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:21.82598114px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
+ <path
+ sodipodi:type="inkscape:box3dside"
+ id="path936-9"
+ inkscape:box3dsidetype="3"
+ d="m 919.8592,371.09875 49.77112,20.56633 v 63.27084 L 919.8592,432.84968 Z"
+ points="969.63032,391.66508 969.63032,454.93592 919.8592,432.84968 919.8592,371.09875 "
+ style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:21.82598114px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:90.1384964px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff00ca;fill-opacity:1;stroke:none;stroke-width:2.25346255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1046.8701"
+ y="258.16129"
+ id="text1051-5"
+ transform="scale(0.91814752,1.0891496)"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1049-3"
+ x="1046.8701"
+ y="258.16129"
+ style="fill:#ff00ca;fill-opacity:1;stroke:none;stroke-width:2.25346255px;stroke-opacity:1">000</tspan></text>
+ </g>
+ <g
+ transform="translate(-289.17513,-33.060654)"
+ id="g4791-6"
+ inkscape:label="HMI:ToggleButton@/TOGGLE1">
+ <rect
+ inkscape:label="inactive"
+ y="47.187904"
+ x="906.51086"
+ height="44.547726"
+ width="45.254833"
+ id="rect4772-5"
+ style="opacity:1;fill:#ff0015;fill-opacity:1;stroke:none" />
+ <rect
+ inkscape:label="active"
+ y="47.187904"
+ x="906.51086"
+ height="44.547726"
+ width="45.254833"
+ id="rect4772-3-7"
+ style="opacity:1;fill:#00ff03;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ transform="translate(-287.05529,41.033314)"
+ id="g479hgjk"
+ inkscape:label="HMI:Button@/TOGGLE">
+ <rect
+ inkscape:label="active"
+ y="46.127251"
+ x="906.51086"
+ height="44.547726"
+ width="45.254833"
+ id="rect47fuzkj"
+ style="opacity:1;fill:#00ff03;fill-opacity:1;stroke:none" />
+ <rect
+ inkscape:label="inactive"
+ y="46.127251"
+ x="906.51086"
+ height="44.547726"
+ width="45.254833"
+ id="rect477hjoj"
+ style="opacity:1;fill:#ff0015;fill-opacity:1;stroke:none" />
+ </g>
+ <g
+ id="g1112"
+ inkscape:label="HMI:AnimateRotation@/SPEED">
+ <circle
+ r="32.057827"
+ cy="436.18585"
+ cx="747.05347"
+ id="path1380"
+ style="fill:#ececec;fill-opacity:1;stroke:#ff0000;stroke-width:2.95733476;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ y="286.18585"
+ x="597.05353"
+ height="300"
+ width="300"
+ id="rect1382"
+ style="opacity:0;fill:#ececec;fill-opacity:1;stroke:none;stroke-width:3.69000006;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="sssssss"
+ inkscape:connector-curvature="0"
+ id="path1388"
+ d="m 719.75481,403.83452 c 1.9692,9.54564 9.417,-4.37059 26.6751,-4.06174 27.2477,0.48762 30.0401,21.24497 35.5749,12.81174 6.6594,-10.14673 12.6699,-22.7446 14.75,-33.25 13.5509,-68.43783 -46.4736,-97.18589 -72,-91.49999 -40.88858,9.10778 -49.54078,47.21136 -31.99998,71.75 13.16428,18.41615 23.37448,26.67508 26.99998,44.24999 z"
+ style="fill:#fd0000;fill-opacity:1;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="sssssss"
+ inkscape:connector-curvature="0"
+ id="path1388-9"
+ d="m 789.45321,432.25975 c -8.9783,-3.79302 -1.7422,10.23457 -11.7862,24.27224 -15.8577,22.16324 -34.5364,12.68834 -30.7308,22.03024 4.5788,11.24 11.5443,23.3361 19.0162,31.0083 48.6752,49.9808 106.3992,16.8549 116.1963,-7.3926 15.6932,-38.84015 -10.7791,-67.57972 -40.9378,-67.05341 -22.634,0.39495 -35.2273,4.11873 -51.7577,-2.86477 z"
+ style="fill:#fd0000;fill-opacity:1;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ sodipodi:nodetypes="sssssss"
+ inkscape:connector-curvature="0"
+ id="path1388-9-8"
+ d="m 730.85671,475.85643 c 7.5732,-6.1355 -8.2092,-6.3552 -15.8654,-21.82523 -12.0882,-24.42445 5.0646,-36.44319 -4.9688,-37.48364 -12.07218,-1.25186 -26.02318,-0.80116 -36.30958,2.17903 -67.0109,19.41388 -64.9607,85.93594 -48.1806,105.99474 26.8787,32.1304 64.6969,22.3051 78.43058,-4.5502 10.3071,-20.1549 12.9505,-33.0184 26.8938,-44.3147 z"
+ style="fill:#fd0000;fill-opacity:1;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <animateTransform
+ attributeName="transform"
+ attributeType="XML"
+ type="rotate"
+ from="0 1049 278"
+ to="360 1049 278"
+ dur="1s"
+ repeatCount="indefinite" />
+ </g>
+ <g
+ id="g1093"
+ inkscape:label="HMI:CustomHtml">
+ <rect
+ inkscape:label="container"
+ y="12"
+ x="818"
+ height="323"
+ width="452"
+ id="rect1072"
+ style="opacity:0.29800002;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1.11057007" />
+ <text
+ inkscape:label="code"
+ transform="scale(0.57360572,1.7433578)"
+ id="text1076"
+ y="23.059681"
+ x="1433.04"
+ style="font-style:normal;font-weight:normal;font-size:9.29032898px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.87096828px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.87096828px"
+ id="tspan1078"
+ y="23.059681"
+ x="1433.04"
+ sodipodi:role="line"> <img xmlns="http://www.w3.org/1999/xhtml" id="img" src="https://thumbs.gfycat.com/ImpoliteSoupyKakapo-size_restricted.gif" width="100%" height="80%" /></tspan><tspan
+ style="stroke-width:0.87096828px"
+ id="tspan1080"
+ y="34.672592"
+ x="1433.04"
+ sodipodi:role="line"> <a xmlns="http://www.w3.org/1999/xhtml" href='www.gmail.com'>Gmail</a></tspan><tspan
+ style="stroke-width:0.87096828px"
+ id="tspan1082"
+ y="46.285503"
+ x="1433.04"
+ sodipodi:role="line"> <p xmlns="http://www.w3.org/1999/xhtml">Koj kurac to ne dela</p></tspan><tspan
+ style="stroke-width:0.87096828px"
+ id="tspan1084"
+ y="57.898415"
+ x="1433.04"
+ sodipodi:role="line" /></text>
+ </g>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_widgets/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,5 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="PYRO://127.0.0.1:61284">
+ <TargetType/>
+ <Libraries Enable_SVGHMI_Library="true"/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_widgets/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,922 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
+ <contentHeader name="Unnamed" modificationDateTime="2020-12-01T09:52:25">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="5" y="5"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="MainStuff" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="TargetPressure">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ <variable name="selection">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ <variable name="Pump0">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="Pump1">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="Pump2">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="Pump3">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="Pump4">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="Pump5">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="Pump6">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ <variable name="Pump7">
+ <type>
+ <derived name="PumpControl"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <block localId="4" typeName="PumpControl" instanceName="Pump0" executionOrderId="0" height="40" width="127">
+ <position x="595" y="50"/>
+ <inputVariables>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="5">
+ <position x="595" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
+ <position x="445" y="65"/>
+ <connectionPointOut>
+ <relPosition x="125" y="15"/>
+ </connectionPointOut>
+ <expression>TargetPressure</expression>
+ </inVariable>
+ <block localId="1" typeName="PumpControl" instanceName="Pump1" executionOrderId="0" height="40" width="127">
+ <position x="595" y="180"/>
+ <inputVariables>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="5">
+ <position x="595" y="210"/>
+ <position x="582" y="210"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <block localId="2" typeName="PumpControl" instanceName="Pump2" executionOrderId="0" height="40" width="127">
+ <position x="595" y="110"/>
+ <inputVariables>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="5">
+ <position x="595" y="140"/>
+ <position x="582" y="140"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <block localId="3" typeName="PumpControl" instanceName="Pump3" executionOrderId="0" height="40" width="127">
+ <position x="595" y="245"/>
+ <inputVariables>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="5">
+ <position x="595" y="275"/>
+ <position x="582" y="275"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <block localId="6" typeName="PumpControl" instanceName="Pump4" executionOrderId="0" height="40" width="127">
+ <position x="595" y="315"/>
+ <inputVariables>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="5">
+ <position x="595" y="345"/>
+ <position x="582" y="345"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <block localId="7" typeName="PumpControl" instanceName="Pump5" executionOrderId="0" height="40" width="127">
+ <position x="595" y="395"/>
+ <inputVariables>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="5">
+ <position x="595" y="425"/>
+ <position x="582" y="425"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <block localId="8" typeName="PumpControl" instanceName="Pump6" executionOrderId="0" height="40" width="127">
+ <position x="595" y="475"/>
+ <inputVariables>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="5">
+ <position x="595" y="505"/>
+ <position x="582" y="505"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ <block localId="9" typeName="PumpControl" instanceName="Pump7" executionOrderId="0" height="40" width="127">
+ <position x="595" y="545"/>
+ <inputVariables>
+ <variable formalParameter="TargetPressure">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="5">
+ <position x="595" y="575"/>
+ <position x="582" y="575"/>
+ <position x="582" y="80"/>
+ <position x="570" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables/>
+ </block>
+ </FBD>
+ </body>
+ </pou>
+ <pou name="PumpControl" pouType="functionBlock">
+ <interface>
+ <localVars>
+ <variable name="Pump">
+ <type>
+ <derived name="HMI_NODE"/>
+ </type>
+ </variable>
+ <variable name="Pressure">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ </localVars>
+ <inputVars>
+ <variable name="TargetPressure">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ </inputVars>
+ <localVars>
+ <variable name="Sloth">
+ <type>
+ <derived name="HMI_INT"/>
+ </type>
+ </variable>
+ <variable name="boolout">
+ <type>
+ <derived name="HMI_BOOL"/>
+ </type>
+ </variable>
+ <variable name="boolin">
+ <type>
+ <derived name="HMI_BOOL"/>
+ </type>
+ <initialValue>
+ <simpleValue value="True"/>
+ </initialValue>
+ </variable>
+ <variable name="strout">
+ <type>
+ <derived name="HMI_STRING"/>
+ </type>
+ </variable>
+ <variable name="strin">
+ <type>
+ <derived name="HMI_STRING"/>
+ </type>
+ <initialValue>
+ <simpleValue value="blup"/>
+ </initialValue>
+ </variable>
+ <variable name="floating">
+ <type>
+ <derived name="HMI_REAL"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
+ <position x="150" y="100"/>
+ <connectionPointOut>
+ <relPosition x="125" y="15"/>
+ </connectionPointOut>
+ <expression>TargetPressure</expression>
+ </inVariable>
+ <inOutVariable localId="4" executionOrderId="0" height="30" width="60" negatedOut="false" negatedIn="false">
+ <position x="510" y="80"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="6" formalParameter="OUT">
+ <position x="510" y="95"/>
+ <position x="470" y="95"/>
+ </connection>
+ </connectionPointIn>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>Sloth</expression>
+ </inOutVariable>
+ <block localId="6" typeName="ADD" executionOrderId="0" height="60" width="65">
+ <position x="405" y="65"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="4">
+ <position x="405" y="95"/>
+ <position x="385" y="95"/>
+ <position x="385" y="50"/>
+ <position x="580" y="50"/>
+ <position x="580" y="95"/>
+ <position x="570" y="95"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="7" formalParameter="OUT">
+ <position x="405" y="115"/>
+ <position x="360" y="115"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="1" executionOrderId="0" height="30" width="75" negated="false">
+ <position x="150" y="135"/>
+ <connectionPointOut>
+ <relPosition x="75" y="15"/>
+ </connectionPointOut>
+ <expression>Pressure</expression>
+ </inVariable>
+ <block localId="7" typeName="SUB" executionOrderId="0" height="60" width="65">
+ <position x="295" y="85"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="5">
+ <position x="295" y="115"/>
+ <position x="275" y="115"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="1">
+ <position x="295" y="135"/>
+ <position x="285" y="135"/>
+ <position x="285" y="150"/>
+ <position x="225" y="150"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="2" executionOrderId="0" height="30" width="60" negated="false">
+ <position x="240" y="190"/>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>Sloth</expression>
+ </inVariable>
+ <outVariable localId="3" executionOrderId="0" height="30" width="75" negated="false">
+ <position x="435" y="205"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="8" formalParameter="OUT">
+ <position x="435" y="220"/>
+ <position x="410" y="220"/>
+ </connection>
+ </connectionPointIn>
+ <expression>Pressure</expression>
+ </outVariable>
+ <block localId="8" typeName="DIV" executionOrderId="0" height="60" width="65">
+ <position x="345" y="190"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="2">
+ <position x="345" y="220"/>
+ <position x="335" y="220"/>
+ <position x="335" y="205"/>
+ <position x="300" y="205"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="9">
+ <position x="345" y="240"/>
+ <position x="300" y="240"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="9" executionOrderId="0" height="30" width="60" negated="false">
+ <position x="240" y="225"/>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>100</expression>
+ </inVariable>
+ <block localId="10" typeName="CONCAT" executionOrderId="0" height="60" width="65">
+ <position x="360" y="345"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="13" formalParameter="OUT">
+ <position x="360" y="375"/>
+ <position x="330" y="375"/>
+ <position x="330" y="332"/>
+ <position x="440" y="332"/>
+ <position x="440" y="300"/>
+ <position x="430" y="300"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="14">
+ <position x="360" y="395"/>
+ <position x="322" y="395"/>
+ <position x="322" y="400"/>
+ <position x="285" y="400"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <outVariable localId="11" executionOrderId="0" height="30" width="58" negated="false">
+ <position x="495" y="355"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="10" formalParameter="OUT">
+ <position x="495" y="370"/>
+ <position x="450" y="370"/>
+ <position x="450" y="375"/>
+ <position x="425" y="375"/>
+ </connection>
+ </connectionPointIn>
+ <expression>strout</expression>
+ </outVariable>
+ <inVariable localId="12" executionOrderId="0" height="30" width="125" negated="false">
+ <position x="145" y="285"/>
+ <connectionPointOut>
+ <relPosition x="125" y="15"/>
+ </connectionPointOut>
+ <expression>TargetPressure</expression>
+ </inVariable>
+ <block localId="13" typeName="INT_TO_STRING" executionOrderId="0" height="40" width="115">
+ <position x="315" y="270"/>
+ <inputVariables>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="12">
+ <position x="315" y="300"/>
+ <position x="270" y="300"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="115" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="14" executionOrderId="0" height="30" width="50" negated="false">
+ <position x="235" y="385"/>
+ <connectionPointOut>
+ <relPosition x="50" y="15"/>
+ </connectionPointOut>
+ <expression>strin</expression>
+ </inVariable>
+ <inVariable localId="15" executionOrderId="0" height="30" width="60" negated="false">
+ <position x="690" y="210"/>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>boolin</expression>
+ </inVariable>
+ <outVariable localId="16" executionOrderId="0" height="30" width="70" negated="false">
+ <position x="915" y="240"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="17" formalParameter="OUT">
+ <position x="915" y="255"/>
+ <position x="880" y="255"/>
+ </connection>
+ </connectionPointIn>
+ <expression>boolout</expression>
+ </outVariable>
+ <block localId="17" typeName="AND" executionOrderId="0" height="60" width="65">
+ <position x="815" y="225"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="15">
+ <position x="815" y="255"/>
+ <position x="762" y="255"/>
+ <position x="762" y="225"/>
+ <position x="750" y="225"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="21" formalParameter="OUT">
+ <position x="815" y="275"/>
+ <position x="750" y="275"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="18" executionOrderId="0" height="30" width="75" negated="false">
+ <position x="455" y="260"/>
+ <connectionPointOut>
+ <relPosition x="75" y="15"/>
+ </connectionPointOut>
+ <expression>Pressure</expression>
+ </inVariable>
+ <block localId="19" typeName="MOD" executionOrderId="0" height="60" width="65">
+ <position x="585" y="245"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="18">
+ <position x="585" y="275"/>
+ <position x="530" y="275"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="20">
+ <position x="585" y="295"/>
+ <position x="555" y="295"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="20" executionOrderId="0" height="30" width="20" negated="false">
+ <position x="535" y="280"/>
+ <connectionPointOut>
+ <relPosition x="20" y="15"/>
+ </connectionPointOut>
+ <expression>2</expression>
+ </inVariable>
+ <block localId="21" typeName="EQ" executionOrderId="0" height="60" width="65">
+ <position x="685" y="245"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="19" formalParameter="OUT">
+ <position x="685" y="275"/>
+ <position x="650" y="275"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="22">
+ <position x="685" y="295"/>
+ <position x="670" y="295"/>
+ <position x="670" y="330"/>
+ <position x="650" y="330"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="22" executionOrderId="0" height="30" width="20" negated="false">
+ <position x="630" y="315"/>
+ <connectionPointOut>
+ <relPosition x="20" y="15"/>
+ </connectionPointOut>
+ <expression>0</expression>
+ </inVariable>
+ <outVariable localId="23" executionOrderId="0" height="25" width="75" negated="false">
+ <position x="935" y="120"/>
+ <connectionPointIn>
+ <relPosition x="0" y="10"/>
+ <connection refLocalId="25" formalParameter="OUT">
+ <position x="935" y="130"/>
+ <position x="922" y="130"/>
+ <position x="922" y="110"/>
+ <position x="910" y="110"/>
+ </connection>
+ </connectionPointIn>
+ <expression>floating</expression>
+ </outVariable>
+ <inVariable localId="24" executionOrderId="0" height="30" width="60" negated="false">
+ <position x="615" y="65"/>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>Sloth</expression>
+ </inVariable>
+ <block localId="25" typeName="DIV" executionOrderId="0" height="60" width="65">
+ <position x="845" y="80"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="27" formalParameter="OUT">
+ <position x="845" y="110"/>
+ <position x="822" y="110"/>
+ <position x="822" y="80"/>
+ <position x="800" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="26">
+ <position x="845" y="130"/>
+ <position x="810" y="130"/>
+ <position x="810" y="135"/>
+ <position x="800" y="135"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="26" executionOrderId="0" height="30" width="90" negated="false">
+ <position x="710" y="120"/>
+ <connectionPointOut>
+ <relPosition x="90" y="15"/>
+ </connectionPointOut>
+ <expression>REAL#100.0</expression>
+ </inVariable>
+ <block localId="27" typeName="INT_TO_REAL" executionOrderId="0" height="40" width="100">
+ <position x="700" y="50"/>
+ <inputVariables>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="24">
+ <position x="700" y="80"/>
+ <position x="675" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="100" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <block localId="28" typeName="EQ" executionOrderId="0" height="60" width="65">
+ <position x="410" y="430"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="36">
+ <position x="418" y="460"/>
+ <position x="401" y="460"/>
+ <position x="401" y="435"/>
+ <position x="380" y="435"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="29">
+ <position x="410" y="480"/>
+ <position x="367" y="480"/>
+ <position x="367" y="475"/>
+ <position x="325" y="475"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="29" executionOrderId="0" height="30" width="20" negated="false">
+ <position x="305" y="460"/>
+ <connectionPointOut>
+ <relPosition x="20" y="15"/>
+ </connectionPointOut>
+ <expression>0</expression>
+ </inVariable>
+ <inVariable localId="32" executionOrderId="0" height="30" width="20" negated="false">
+ <position x="765" y="505"/>
+ <connectionPointOut>
+ <relPosition x="20" y="15"/>
+ </connectionPointOut>
+ <expression>0</expression>
+ </inVariable>
+ <outVariable localId="31" executionOrderId="0" height="30" width="75" negated="false">
+ <position x="925" y="460"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="33" formalParameter="OUT">
+ <position x="925" y="475"/>
+ <position x="890" y="475"/>
+ </connection>
+ </connectionPointIn>
+ <expression>Sloth</expression>
+ </outVariable>
+ <block localId="33" typeName="MUX" executionOrderId="0" height="80" width="65">
+ <position x="825" y="445"/>
+ <inputVariables>
+ <variable formalParameter="K">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="34" formalParameter="OUT">
+ <position x="825" y="475"/>
+ <position x="685" y="475"/>
+ <position x="685" y="465"/>
+ <position x="675" y="465"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN0">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="30">
+ <position x="825" y="495"/>
+ <position x="800" y="495"/>
+ <position x="800" y="485"/>
+ <position x="790" y="485"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="70"/>
+ <connection refLocalId="32">
+ <position x="825" y="515"/>
+ <position x="795" y="515"/>
+ <position x="795" y="520"/>
+ <position x="785" y="520"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="65" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="30" executionOrderId="0" height="30" width="75" negated="false">
+ <position x="715" y="470"/>
+ <connectionPointOut>
+ <relPosition x="75" y="15"/>
+ </connectionPointOut>
+ <expression>Sloth</expression>
+ </inVariable>
+ <block localId="34" typeName="BOOL_TO_SINT" executionOrderId="0" height="40" width="110">
+ <position x="565" y="435"/>
+ <inputVariables>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="28" formalParameter="OUT">
+ <position x="565" y="465"/>
+ <position x="520" y="465"/>
+ <position x="520" y="460"/>
+ <position x="475" y="460"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="110" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <connector name="Connection0" localId="35" height="25" width="125">
+ <position x="400" y="140"/>
+ <connectionPointIn>
+ <relPosition x="0" y="10"/>
+ <connection refLocalId="7" formalParameter="OUT">
+ <position x="400" y="150"/>
+ <position x="375" y="150"/>
+ <position x="375" y="115"/>
+ <position x="360" y="115"/>
+ </connection>
+ </connectionPointIn>
+ </connector>
+ <continuation name="Connection0" localId="36" height="25" width="125">
+ <position x="255" y="425"/>
+ <connectionPointOut>
+ <relPosition x="125" y="10"/>
+ </connectionPointOut>
+ </continuation>
+ </FBD>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="resource1">
+ <task name="task0" priority="0" interval="T#20ms">
+ <pouInstance name="instance0" typeName="MainStuff"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_widgets/py_ext_0@py_ext/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="1" Name="py_ext_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_widgets/py_ext_0@py_ext/pyfile.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,93 @@
+<?xml version='1.0' encoding='utf-8'?>
+<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+ <variables>
+ <variable name="AlarmNotify" type="HMI_INT"/>
+ <variable name="SendAlarm" type="HMI_INT" onchange="TriggerAlarm"/>
+ <variable name="AlarmText" type="HMI_STRING" initial="'POS'"/>
+ <variable name="AlarmStatus" type="HMI_STRING" initial="'alarm'"/>
+ </variables>
+ <globals>
+ <xhtml:p><![CDATA[
+from twisted.web.resource import Resource
+import json, time, random, collections
+
+Alarms = []
+AlarmIndex = {}
+lastid = 0
+
+def TriggerAlarm(changed_var_name):
+ global Alarms, lastid
+ new_entry = [time.time(), PLCGlobals.AlarmText, PLCGlobals.AlarmStatus, lastid]
+ Alarms.append(new_entry)
+ AlarmIndex[lastid] = new_entry
+ lastid = lastid + 1
+ PLCGlobals.AlarmNotify = random.randint(0, 4294967296)
+
+class AlarmJsonResource(Resource):
+ def render_GET(self, request):
+ return ''
+
+ def render_POST(self, request):
+ newstr = request.content.getvalue()
+ newdata = json.loads(newstr)
+ args = newdata[u'args']
+ range_feedback = newdata[u'range']
+ slider_position = newdata[u'position']
+ visible = newdata[u'visible']
+ extra = newdata[u'extra']
+ options = newdata[u'options']
+
+ if len(options) == 2 :
+ action, alarmid = options
+ if action == "onClick[acknowledge]":
+ AlarmIndex[int(alarmid)][2] = "ack"
+
+ answer = self.renderTable(range_feedback, slider_position, visible, extra)
+ janswer = json.dumps(answer)
+ return janswer
+
+ def renderTable(self, old_range, old_position, visible, extra):
+ if len(extra) > 0 and extra[0] != "":
+ fAlarms = [alrm for alrm in Alarms if alrm[1].find(extra[0])!=-1]
+ else:
+ fAlarms = Alarms
+ new_range = len(fAlarms)
+ delta = new_range - visible
+ new_position = 0 if delta <= 0 else delta if old_position > delta else old_position
+ new_visible = new_range if delta <= 0 else visible
+
+ visible_alarms = []
+ for ts, text, status, alarmid in fAlarms[new_position:new_position + new_visible]:
+ visible_alarms.append({
+ "time": time.ctime(ts),
+ "text": text, # TODO translate text
+ "status": status,
+ "alarmid": alarmid
+ })
+
+ return new_range, new_position, visible_alarms
+
+
+]]></xhtml:p>
+ </globals>
+ <init>
+ <xhtml:p><![CDATA[
+]]></xhtml:p>
+ </init>
+ <cleanup>
+ <xhtml:p><![CDATA[
+]]></xhtml:p>
+ </cleanup>
+ <start>
+ <xhtml:p><![CDATA[
+
+svghmi_root.putChild("alarms", AlarmJsonResource())
+
+
+]]></xhtml:p>
+ </start>
+ <stop>
+ <xhtml:p><![CDATA[
+]]></xhtml:p>
+ </stop>
+</PyFile>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_widgets/svghmi_0@svghmi/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="svghmi_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_widgets/svghmi_0@svghmi/confnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<SVGHMI xmlns:xsd="http://www.w3.org/2001/XMLSchema" OnWatchdog="echo Watchdog for {name} !" OnStart="chromium http://127.0.0.1:{port}/{name}" OnStop="echo Closing {name}" WatchdogInitial="10" WatchdogInterval="5"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/svghmi_widgets/svghmi_0@svghmi/svghmi.svg Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,13525 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
+ sodipodi:docname="svghmi.svg"
+ id="hmi0"
+ version="1.1"
+ viewBox="0 0 1280 720"
+ height="720"
+ width="1280">
+ <metadata
+ id="metadata4542">
+ <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>
+ <defs
+ id="defs2">
+ <linearGradient
+ id="linearGradient48067"
+ inkscape:collect="always">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0"
+ id="stop48065" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="1"
+ id="stop48063" />
+ </linearGradient>
+ <marker
+ style="overflow:visible"
+ id="marker47537"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#464646;fill-opacity:1;fill-rule:evenodd;stroke:#464646;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path47535" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="marker35048"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path35046" />
+ </marker>
+ <linearGradient
+ id="linearGradient34303"
+ osb:paint="solid">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop34301" />
+ </linearGradient>
+ <marker
+ style="overflow:visible"
+ id="marker33393"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path33391" />
+ </marker>
+ <pattern
+ inkscape:collect="always"
+ xlink:href="#pattern33040"
+ id="pattern33045"
+ patternTransform="matrix(0.3402725,0,0,0.3402725,3541.9168,2783.1968)" />
+ <pattern
+ inkscape:collect="always"
+ xlink:href="#pattern32315"
+ id="pattern33036"
+ patternTransform="matrix(0.3402725,0,0,0.3402725,2860.2482,2779.1427)" />
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker30413"
+ style="overflow:visible">
+ <path
+ id="path30411"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker27950"
+ style="overflow:visible">
+ <path
+ id="path27948"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="marker26128"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path26126" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker25626"
+ style="overflow:visible"
+ inkscape:collect="always">
+ <path
+ id="path25624"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="marker25174"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path25172" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker22786"
+ style="overflow:visible"
+ inkscape:collect="always">
+ <path
+ id="path22784"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker21366"
+ style="overflow:visible">
+ <path
+ id="path21364"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="marker20902"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path20900" />
+ </marker>
+ <linearGradient
+ id="linearGradient20537"
+ osb:paint="solid">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop20535" />
+ </linearGradient>
+ <marker
+ style="overflow:visible"
+ id="marker15089"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path15087" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker14681"
+ style="overflow:visible"
+ inkscape:collect="always">
+ <path
+ id="path14679"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="marker14281"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path14279" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker13869"
+ style="overflow:visible"
+ inkscape:collect="always">
+ <path
+ id="path13867"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker13481"
+ style="overflow:visible">
+ <path
+ id="path13479"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker13093"
+ style="overflow:visible">
+ <path
+ id="path13091"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker12717"
+ style="overflow:visible"
+ inkscape:collect="always">
+ <path
+ id="path12715"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker30978"
+ style="overflow:visible;"
+ inkscape:isstock="true">
+ <path
+ id="path30976"
+ 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:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
+ transform="scale(0.4) rotate(180) translate(10,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="DotM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker30668"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ id="path30666"
+ 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 "
+ style="fill-rule:evenodd;stroke:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
+ transform="scale(0.4) translate(7.4, 1)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible;"
+ id="marker30310"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend"
+ inkscape:collect="always">
+ <path
+ transform="scale(0.4) rotate(180) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
+ 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="path30308" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker30012"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="DotM"
+ inkscape:collect="always">
+ <path
+ transform="scale(0.4) translate(7.4, 1)"
+ style="fill-rule:evenodd;stroke:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
+ d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+ id="path30010" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible;"
+ id="marker29562"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend">
+ <path
+ transform="scale(0.4) rotate(180) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ 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="path29560" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker29276"
+ style="overflow:visible;"
+ inkscape:isstock="true">
+ <path
+ id="path29274"
+ 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:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ transform="scale(0.4) rotate(180) translate(10,0)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible;"
+ id="marker28710"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend">
+ <path
+ transform="scale(0.4) rotate(180) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ 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="path28708" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker28436"
+ style="overflow:visible;"
+ inkscape:isstock="true">
+ <path
+ id="path28434"
+ 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:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ transform="scale(0.4) rotate(180) translate(10,0)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible;"
+ id="marker27764"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend">
+ <path
+ transform="scale(0.4) rotate(180) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
+ 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="path27762" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker27514"
+ 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:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
+ d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
+ id="path27512" />
+ </marker>
+ <marker
+ inkscape:stockid="DotM"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="DotM"
+ style="overflow:visible"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ id="path8269"
+ 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 "
+ style="fill-rule:evenodd;stroke:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
+ transform="scale(0.4) translate(7.4, 1)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker26099"
+ style="overflow:visible;"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ id="path26097"
+ 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:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
+ transform="scale(0.4) rotate(180) translate(10,0)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker25879"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="SquareL">
+ <path
+ transform="scale(0.8)"
+ style="fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M -5,-5 V 5 H 5 V -5 Z"
+ id="path25877"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker25117"
+ style="overflow:visible;"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ id="path25115"
+ 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:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ transform="scale(0.4) rotate(180) translate(10,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker24867"
+ style="overflow:visible;"
+ inkscape:isstock="true">
+ <path
+ id="path8226"
+ style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#3ee800;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ 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:isstock="true"
+ style="overflow:visible;"
+ id="marker23223"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend"
+ inkscape:collect="always">
+ <path
+ transform="scale(0.4) rotate(180) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
+ 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="path23221" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker22799"
+ style="overflow:visible;"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ id="path22797"
+ 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:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
+ transform="scale(0.4) rotate(180) translate(10,0)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible;"
+ id="marker22543"
+ 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="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
+ id="path22541" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker21870"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend">
+ <path
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path21868"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker21674"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="SquareL">
+ <path
+ transform="scale(0.8)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M -5,-5 V 5 H 5 V -5 Z"
+ id="path21672"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="SquareL"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker20566"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ id="path20564"
+ d="M -5.0,-5.0 L -5.0,5.0 L 5.0,5.0 L 5.0,-5.0 L -5.0,-5.0 z "
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
+ transform="scale(0.8)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker20382"
+ style="overflow:visible;"
+ inkscape:isstock="true">
+ <path
+ id="path20380"
+ 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:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
+ transform="scale(0.8) rotate(180) translate(12.5,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="SquareL"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="SquareL"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ id="path8275"
+ d="M -5.0,-5.0 L -5.0,5.0 L 5.0,5.0 L 5.0,-5.0 L -5.0,-5.0 z "
+ style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
+ transform="scale(0.8)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Lstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="marker19998"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ id="path19996"
+ 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:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
+ transform="scale(0.8) translate(12.5,0)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible;"
+ id="marker19820"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend"
+ inkscape:collect="always">
+ <path
+ transform="scale(0.4) rotate(180) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ 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="path19818" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker19672"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mstart">
+ <path
+ transform="scale(0.4) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
+ 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="path19670" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker19488"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="DiamondMend">
+ <path
+ transform="scale(0.4) translate(-6.5,0)"
+ style="fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1;fill:none;fill-opacity:1"
+ d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
+ id="path19486" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker19352"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="DiamondMend">
+ <path
+ transform="scale(0.4) translate(-6.5,0)"
+ style="fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1;fill:none;fill-opacity:1"
+ d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
+ id="path19350" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible;"
+ id="marker17321"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend">
+ <path
+ transform="scale(0.4) rotate(180) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
+ 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="path17319" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker17197"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mstart">
+ <path
+ transform="scale(0.4) translate(10,0)"
+ style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
+ 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="path17195" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker16921"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="DiamondMend">
+ <path
+ transform="scale(0.4) translate(-6.5,0)"
+ style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
+ id="path16919" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker16821"
+ refX="0.0"
+ refY="0.0"
+ orient="auto"
+ inkscape:stockid="DiamondMend">
+ <path
+ transform="scale(0.4) translate(-6.5,0)"
+ style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
+ d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
+ id="path16819" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Lstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow1Lstart"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ id="path8205"
+ 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:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
+ transform="scale(0.8) translate(12.5,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow2Lstart"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow2Lstart"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ id="path8223"
+ style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff3000;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
+ 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) translate(1,0)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker10905"
+ 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path10903"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0.0"
+ refX="0.0"
+ id="Arrow1Lend"
+ style="overflow:visible;"
+ inkscape:isstock="true">
+ <path
+ id="path8208"
+ 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:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
+ transform="scale(0.8) rotate(180) translate(12.5,0)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker1971"
+ 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path1969"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker1536"
+ 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path1534"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker1656"
+ 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path1654"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="1454.3019 : 921.18786 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="2782.3019 : 507.18786 : 1"
+ inkscape:persp3d-origin="2094.3019 : 801.18786 : 1"
+ id="perspective1372" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="1424.3019 : 863.18786 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="2800.3019 : 891.18786 : 1"
+ inkscape:persp3d-origin="2064.3019 : 743.18786 : 1"
+ id="perspective1370" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="73.983557 : 377.52255 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1401.9836 : -36.477445 : 1"
+ inkscape:persp3d-origin="713.98356 : 257.52255 : 1"
+ id="perspective503" />
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="43.983597 : 319.52255 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="1419.9836 : 347.52255 : 1"
+ inkscape:persp3d-origin="683.98356 : 199.52255 : 1"
+ id="perspective445" />
+ <inkscape:tag
+ id="Set 1"
+ inkscape:label="HMI:AccessList@Admin"
+ inkscape:expanded="true">
+ <inkscape:tagref
+ xlink:href="#text995"
+ id="tagref192" />
+ <inkscape:tagref
+ xlink:href="#g991"
+ id="tagref194" />
+ </inkscape:tag>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient962">
+ <stop
+ style="stop-color:#ff3000;stop-opacity:1;"
+ offset="0"
+ id="stop958" />
+ <stop
+ style="stop-color:#0022ff;stop-opacity:1"
+ offset="1"
+ id="stop960" />
+ </linearGradient>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker926"
+ 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ id="path924"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <inkscape:tag
+ id="Set 3"
+ inkscape:expanded="true"
+ inkscape:label="HMI:Translate">
+ <inkscape:tagref
+ xlink:href="#text831"
+ id="tagref1085" />
+ <inkscape:tagref
+ xlink:href="#text827"
+ id="tagref1087" />
+ <inkscape:tagref
+ xlink:href="#text4497"
+ id="tagref1089" />
+ <inkscape:tagref
+ xlink:href="#home_jmp"
+ id="tagref1091" />
+ <inkscape:tagref
+ xlink:href="#setting_jmp"
+ id="tagref1093" />
+ </inkscape:tag>
+ <marker
+ inkscape:stockid="Arrow2Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow2Lend"
+ style="overflow:visible"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ inkscape:connector-curvature="0"
+ id="path895"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+ d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+ transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
+ </marker>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient962"
+ id="linearGradient964"
+ x1="113.38908"
+ y1="-62.210247"
+ x2="113.38908"
+ y2="4.0725975"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.5,0,0,0.5,73.144796,-1.4471993)" />
+ <linearGradient
+ id="linearGradient4428"
+ y2="315.91"
+ gradientUnits="userSpaceOnUse"
+ x2="486.78"
+ y1="279.85001"
+ x1="452.26001"
+ inkscape:collect="always"
+ gradientTransform="matrix(2.1333334,0,0,2.1333334,-3540.3373,-2618.8351)">
+ <stop
+ id="stop3842"
+ style="stop-color:#5e5e5e"
+ offset="0" />
+ <stop
+ id="stop3844"
+ style="stop-color:#5e5e5e;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3919"
+ inkscape:collect="always">
+ <stop
+ id="stop3921"
+ style="stop-color:#ffffff"
+ offset="0" />
+ <stop
+ id="stop3923"
+ style="stop-color:#ffffff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3862">
+ <stop
+ id="stop3864"
+ style="stop-color:#414141"
+ offset="0" />
+ <stop
+ id="stop3868"
+ style="stop-color:#41433f"
+ offset=".15789" />
+ <stop
+ id="stop3866"
+ style="stop-color:#000000"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient4436"
+ gradientUnits="userSpaceOnUse"
+ cy="336.42001"
+ cx="491.09"
+ gradientTransform="matrix(1.1429,0,0,1.1429,-73.994,-53.898)"
+ r="42.073002"
+ inkscape:collect="always">
+ <stop
+ id="stop3894"
+ style="stop-color:#ddcf1b"
+ offset="0" />
+ <stop
+ id="stop3898"
+ style="stop-color:#ccd21b"
+ offset=".5" />
+ <stop
+ id="stop3896"
+ style="stop-color:#2bb733"
+ offset="1" />
+ </radialGradient>
+ <radialGradient
+ id="radialGradient4440"
+ gradientUnits="userSpaceOnUse"
+ cy="325.29001"
+ cx="477.91"
+ gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
+ r="26.870001"
+ inkscape:collect="always">
+ <stop
+ id="stop3876"
+ style="stop-color:#333333"
+ offset="0" />
+ <stop
+ id="stop3878"
+ style="stop-color:#333333;stop-opacity:0"
+ offset="1" />
+ </radialGradient>
+ <linearGradient
+ id="linearGradient4442"
+ y2="364.53"
+ gradientUnits="userSpaceOnUse"
+ x2="510.54001"
+ y1="300.89001"
+ x1="460.44"
+ inkscape:collect="always"
+ gradientTransform="matrix(2.1333334,0,0,2.1333334,1460.1239,1204.5844)">
+ <stop
+ id="stop3911"
+ style="stop-color:#ffffff"
+ offset="0" />
+ <stop
+ id="stop3913"
+ style="stop-color:#ffffff;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient4401"
+ xlink:href="#linearGradient3862"
+ gradientUnits="userSpaceOnUse"
+ cy="271.12"
+ cx="488.75"
+ gradientTransform="matrix(1.2669,-2.1673e-7,1.919e-7,1.0468,-130.57,-2.7383)"
+ r="57.629002"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient4403"
+ y2="274.60001"
+ xlink:href="#linearGradient3994"
+ gradientUnits="userSpaceOnUse"
+ x2="461.51001"
+ y1="378.48001"
+ x1="460.51001"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3994">
+ <stop
+ id="stop3996"
+ style="stop-color:#626262"
+ offset="0" />
+ <stop
+ id="stop4000"
+ style="stop-color:#919191"
+ offset=".74085" />
+ <stop
+ id="stop3998"
+ style="stop-color:#ceced2"
+ offset="1" />
+ </linearGradient>
+ <filter
+ id="filter4030"
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur4032"
+ stdDeviation="3.9987611"
+ inkscape:collect="always" />
+ </filter>
+ <radialGradient
+ id="radialGradient4405"
+ gradientUnits="userSpaceOnUse"
+ cy="276.20999"
+ cx="489.59"
+ gradientTransform="matrix(1.8965,-0.037037,0.020439,1.0466,-444.48,15.45)"
+ r="57.629002"
+ inkscape:collect="always">
+ <stop
+ id="stop4044"
+ style="stop-color:#414141"
+ offset="0" />
+ <stop
+ id="stop4046"
+ style="stop-color:#41433f"
+ offset=".17350" />
+ <stop
+ id="stop4048"
+ style="stop-color:#000000"
+ offset="1" />
+ </radialGradient>
+ <linearGradient
+ id="linearGradient4407"
+ y2="274.60001"
+ gradientUnits="userSpaceOnUse"
+ x2="461.51001"
+ y1="378.48001"
+ x1="460.51001"
+ inkscape:collect="always">
+ <stop
+ id="stop4036"
+ style="stop-color:#1b1b1d"
+ offset="0" />
+ <stop
+ id="stop4038"
+ style="stop-color:#262828"
+ offset=".54558" />
+ <stop
+ id="stop4040"
+ style="stop-color:#ceced2"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4108">
+ <stop
+ id="stop4110"
+ style="stop-color:#ddcf1b"
+ offset="0" />
+ <stop
+ id="stop4112"
+ style="stop-color:#ccd21b"
+ offset="0.28542241" />
+ <stop
+ id="stop4114"
+ style="stop-color:#2bb733"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ id="radialGradient4372"
+ xlink:href="#linearGradient3862"
+ gradientUnits="userSpaceOnUse"
+ cy="271.12"
+ cx="488.75"
+ gradientTransform="matrix(-1.1814,2.021e-7,-1.7895e-7,-0.97615,1072.1,866.87)"
+ r="57.629002"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient4374"
+ y2="274.60001"
+ xlink:href="#linearGradient3994"
+ gradientUnits="userSpaceOnUse"
+ x2="461.51001"
+ gradientTransform="matrix(-0.93252,0,0,-0.93252,950.38,864.32)"
+ y1="378.48001"
+ x1="460.51001"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient4376"
+ y2="603.70001"
+ xlink:href="#linearGradient4292"
+ gradientUnits="userSpaceOnUse"
+ x2="505.57999"
+ y1="526.63"
+ x1="504.87"
+ inkscape:collect="always"
+ gradientTransform="matrix(2.1333334,0,0,2.1333334,893.33419,706.77548)" />
+ <linearGradient
+ id="linearGradient4292">
+ <stop
+ id="stop4294"
+ style="stop-color:#666666"
+ offset="0" />
+ <stop
+ id="stop4296"
+ style="stop-color:#c3c3c5"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4378"
+ y2="585.34003"
+ xlink:href="#linearGradient3919"
+ gradientUnits="userSpaceOnUse"
+ x2="493.29999"
+ y1="596.53003"
+ x1="486.85001"
+ inkscape:collect="always"
+ gradientTransform="matrix(3.5063468,0,0,3.5063468,198.4947,-3883.2624)" />
+ <radialGradient
+ id="radialGradient9759"
+ xlink:href="#linearGradient3862"
+ gradientUnits="userSpaceOnUse"
+ cy="271.12"
+ cx="488.75"
+ gradientTransform="matrix(-1.1814,2.021e-7,-1.7895e-7,-0.97615,1072.1,866.87)"
+ r="57.629002"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4292"
+ id="linearGradient10071"
+ gradientUnits="userSpaceOnUse"
+ x1="504.87"
+ y1="526.63"
+ x2="505.57999"
+ y2="603.70001"
+ gradientTransform="matrix(3.5063468,0,0,3.5063468,198.4947,-3883.2624)" />
+ <marker
+ inkscape:stockid="DiamondMend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="DiamondMend-9"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path8305-2"
+ d="M 0,-7.0710768 -7.0710894,0 0,7.0710589 7.0710462,0 Z"
+ style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(0.4,0,0,0.4,-2.6,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="DiamondMend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker16719"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path16717"
+ d="M 0,-7.0710768 -7.0710894,0 0,7.0710589 7.0710462,0 Z"
+ style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(0.4,0,0,0.4,-2.6,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mstart"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow1Mstart-2"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path8211-3"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(0.4,0,0,0.4,4,0)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow1Mend-7"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path8214-5"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+ </marker>
+ <filter
+ id="filter5708"
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur5710"
+ stdDeviation="28.132071"
+ inkscape:collect="always" />
+ </filter>
+ <linearGradient
+ id="linearGradient7109"
+ y2="276.98999"
+ xlink:href="#linearGradient5712"
+ gradientUnits="userSpaceOnUse"
+ x2="298.10999"
+ gradientTransform="translate(1979.8,858.86)"
+ y1="-906.90997"
+ x1="-914.59003"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient5712">
+ <stop
+ id="stop5714"
+ style="stop-color:#cccccc"
+ offset="0" />
+ <stop
+ id="stop5716"
+ style="stop-color:#ffffff;stop-opacity:0"
+ offset=".12299" />
+ <stop
+ id="stop5718"
+ style="stop-color:#999999;stop-opacity:.63813"
+ offset="1" />
+ </linearGradient>
+ <marker
+ inkscape:stockid="SquareL"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker20566-2"
+ style="overflow:visible"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ inkscape:connector-curvature="0"
+ id="path20564-8"
+ d="M -5,-5 V 5 H 5 V -5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="scale(0.8)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker23223-1"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.4,0,0,-0.4,-4,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path23221-2" />
+ </marker>
+ <marker
+ inkscape:stockid="DotM"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="DotM-2"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path8269-0"
+ 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"
+ style="fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(0.4,0,0,0.4,2.96,0.4)" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker26099-6"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path26097-1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ style="overflow:visible"
+ id="marker19820-5"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Mend">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.4,0,0,-0.4,-4,0)"
+ style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path19818-4" />
+ </marker>
+ <marker
+ inkscape:stockid="Arrow1Mend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker25117-7"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path25115-6"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.4,0,0,-0.4,-4,0)" />
+ </marker>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4436"
+ id="linearGradient31386"
+ x1="1094.1289"
+ y1="489.64468"
+ x2="1008.9722"
+ y2="209.67311"
+ gradientUnits="userSpaceOnUse" />
+ <filter
+ inkscape:collect="always"
+ style="color-interpolation-filters:sRGB"
+ id="filter31680"
+ x="-0.066705994"
+ width="1.133412"
+ y="-0.075436398"
+ height="1.1508728">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="10.428525"
+ id="feGaussianBlur31682" />
+ </filter>
+ <marker
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow1Lend-3"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path8208-5"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#fffffc;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+ </marker>
+ <radialGradient
+ id="radialGradient4432-9"
+ xlink:href="#linearGradient3862"
+ gradientUnits="userSpaceOnUse"
+ cy="331.47"
+ cx="487.54999"
+ gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
+ r="57.629002"
+ inkscape:collect="always" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4436-7"
+ id="radialGradient2918-3"
+ cx="1043.1659"
+ cy="285.35944"
+ fx="1043.1659"
+ fy="285.35944"
+ r="192.22134"
+ gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ id="radialGradient4436-7"
+ gradientUnits="userSpaceOnUse"
+ cy="336.42001"
+ cx="491.09"
+ gradientTransform="matrix(1.1429,0,0,1.1429,-73.994,-53.898)"
+ r="42.073002"
+ inkscape:collect="always">
+ <stop
+ id="stop3894-5"
+ style="stop-color:#ddcf1b"
+ offset="0" />
+ <stop
+ id="stop3898-9"
+ style="stop-color:#ccd21b"
+ offset=".5" />
+ <stop
+ id="stop3896-2"
+ style="stop-color:#2bb733"
+ offset="1" />
+ </radialGradient>
+ <radialGradient
+ id="radialGradient4438-2"
+ xlink:href="#linearGradient3919"
+ gradientUnits="userSpaceOnUse"
+ cy="379.03"
+ cx="520.47998"
+ gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
+ r="57.629002"
+ inkscape:collect="always" />
+ <radialGradient
+ id="radialGradient5322"
+ xlink:href="#linearGradient3862"
+ gradientUnits="userSpaceOnUse"
+ cy="331.47"
+ cx="487.54999"
+ gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
+ r="57.629002"
+ inkscape:collect="always" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4436-7"
+ id="radialGradient5340"
+ cx="1043.1659"
+ cy="285.35944"
+ fx="1043.1659"
+ fy="285.35944"
+ r="192.22134"
+ gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ id="radialGradient5350"
+ xlink:href="#linearGradient3919"
+ gradientUnits="userSpaceOnUse"
+ cy="379.03"
+ cx="520.47998"
+ gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
+ r="57.629002"
+ inkscape:collect="always" />
+ <marker
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow1Lend-3-9"
+ style="overflow:visible"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ id="path8208-5-3"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#fffffc;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+ </marker>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3862"
+ id="radialGradient8154-3"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
+ cx="487.54999"
+ cy="331.47"
+ r="57.629002" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4436-5"
+ id="radialGradient8158-1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
+ cx="1043.1659"
+ cy="285.35944"
+ fx="1043.1659"
+ fy="285.35944"
+ r="192.22134" />
+ <radialGradient
+ id="radialGradient4436-5"
+ gradientUnits="userSpaceOnUse"
+ cy="336.42001"
+ cx="491.09"
+ gradientTransform="matrix(1.1429,0,0,1.1429,-73.994,-53.898)"
+ r="42.073002"
+ inkscape:collect="always">
+ <stop
+ id="stop3894-54"
+ style="stop-color:#ddcf1b"
+ offset="0" />
+ <stop
+ id="stop3898-7"
+ style="stop-color:#ccd21b"
+ offset=".5" />
+ <stop
+ id="stop3896-6"
+ style="stop-color:#2bb733"
+ offset="1" />
+ </radialGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3919"
+ id="radialGradient8160-5"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
+ cx="520.47998"
+ cy="379.03"
+ r="57.629002" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4440-9"
+ id="radialGradient8162-6"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
+ cx="477.91"
+ cy="325.29001"
+ r="26.870001" />
+ <radialGradient
+ id="radialGradient4440-9"
+ gradientUnits="userSpaceOnUse"
+ cy="325.29001"
+ cx="477.91"
+ gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
+ r="26.870001"
+ inkscape:collect="always">
+ <stop
+ id="stop3876-3"
+ style="stop-color:#333333"
+ offset="0" />
+ <stop
+ id="stop3878-7"
+ style="stop-color:#333333;stop-opacity:0"
+ offset="1" />
+ </radialGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3862"
+ id="radialGradient8996"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
+ cx="487.54999"
+ cy="331.47"
+ r="57.629002" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4436-5"
+ id="radialGradient9014"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
+ cx="1043.1659"
+ cy="285.35944"
+ fx="1043.1659"
+ fy="285.35944"
+ r="192.22134" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3919"
+ id="radialGradient9024"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
+ cx="520.47998"
+ cy="379.03"
+ r="57.629002" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4440-9"
+ id="radialGradient9032"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
+ cx="477.91"
+ cy="325.29001"
+ r="26.870001" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4436"
+ id="linearGradient10485"
+ gradientUnits="userSpaceOnUse"
+ x1="1094.1289"
+ y1="489.64468"
+ x2="1008.9722"
+ y2="209.67311" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4428"
+ id="linearGradient10487"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.1333334,0,0,2.1333334,-3540.3373,-2618.8351)"
+ x1="452.26001"
+ y1="279.85001"
+ x2="486.78"
+ y2="315.91" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3919"
+ id="linearGradient10489"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.1333334,0,0,2.1333334,1460.1239,1202.4511)"
+ x1="462.14999"
+ y1="275.60999"
+ x2="493.85001"
+ y2="326.51999" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3862"
+ id="radialGradient10491"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
+ cx="487.54999"
+ cy="331.47"
+ r="57.629002" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3919"
+ id="linearGradient10493"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.8846721,0,0,1.9108481,-3418.46,-2542.9311)"
+ x1="452.26001"
+ y1="279.85001"
+ x2="486.78"
+ y2="315.91" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4436"
+ id="radialGradient10495"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
+ cx="1043.1659"
+ cy="285.35944"
+ fx="1043.1659"
+ fy="285.35944"
+ r="192.22134" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3919"
+ id="radialGradient10497"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
+ cx="520.47998"
+ cy="379.03"
+ r="57.629002" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#radialGradient4440"
+ id="radialGradient10499"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
+ cx="477.91"
+ cy="325.29001"
+ r="26.870001" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4442"
+ id="linearGradient10501"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.1333334,0,0,2.1333334,1460.1239,1204.5844)"
+ x1="460.44"
+ y1="300.89001"
+ x2="510.54001"
+ y2="364.53" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5712"
+ id="linearGradient10503"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-266.78,858.86)"
+ x1="-914.59003"
+ y1="-906.90997"
+ x2="298.10999"
+ y2="276.98999" />
+ <marker
+ style="overflow:visible"
+ id="marker1197"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path1195" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="marker1207"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path1205" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="marker1187"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path1185" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="marker1177"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path1175" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="marker1167"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path1165" />
+ </marker>
+ <marker
+ style="overflow:visible"
+ id="marker1157"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true"
+ inkscape:collect="always">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path1155" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker22786-9"
+ style="overflow:visible">
+ <path
+ id="path22784-6"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker22786-3"
+ style="overflow:visible">
+ <path
+ id="path22784-3"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <marker
+ inkscape:isstock="true"
+ inkscape:stockid="Arrow1Lend"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="marker22786-8"
+ style="overflow:visible">
+ <path
+ id="path22784-60"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <pattern
+ patternUnits="userSpaceOnUse"
+ width="1280"
+ height="720"
+ patternTransform="translate(-120,1560)"
+ id="pattern32315">
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(4.4804112e-6,-1560)"
+ id="use32313"
+ xlink:href="#g4278"
+ y="0"
+ x="0" />
+ </pattern>
+ <pattern
+ patternUnits="userSpaceOnUse"
+ width="1280"
+ height="720"
+ patternTransform="translate(4.5843587e-5,2340)"
+ id="pattern33040">
+ <use
+ id="use33038"
+ xlink:href="#g2432"
+ y="0"
+ x="0"
+ transform="translate(-4.5843587e-5,-2340)"
+ width="100%"
+ height="100%" />
+ </pattern>
+ <marker
+ style="overflow:visible"
+ id="marker33393-6"
+ refX="0"
+ refY="0"
+ orient="auto"
+ inkscape:stockid="Arrow1Lend"
+ inkscape:isstock="true">
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-opacity:1"
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
+ id="path33391-4" />
+ </marker>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4108"
+ id="linearGradient35598"
+ x1="3282.1479"
+ y1="3490.5305"
+ x2="3302.1479"
+ y2="3565.5305"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4108"
+ id="linearGradient35602"
+ gradientUnits="userSpaceOnUse"
+ x1="3282.1479"
+ y1="3530.5305"
+ x2="3302.1479"
+ y2="3565.5305"
+ gradientTransform="translate(0,-246)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4108"
+ id="linearGradient35607"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,-1,0,7302.061)"
+ x1="3282.1479"
+ y1="3565.5305"
+ x2="3302.1479"
+ y2="3530.5305" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient48067"
+ id="radialGradient48061"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.01927641,3.0508146,-1.339822,0.00867105,4122.7241,-10076.708)"
+ cx="4437.8638"
+ cy="432.34897"
+ fx="4437.8638"
+ fy="432.34897"
+ r="35.250397" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient48067"
+ id="radialGradient48061-9"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.02836882,4.436331,-1.9717971,0.01260898,731.53273,-19692.285)"
+ cx="4437.6318"
+ cy="434.84348"
+ fx="4437.6318"
+ fy="434.84348"
+ r="35.250397" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient48067"
+ id="radialGradient48094"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.6218841e-6,-15.394244,1.33985,-0.00103654,3136.5425,73759.406)"
+ cx="4544.9692"
+ cy="400.71506"
+ fx="4544.9692"
+ fy="400.71506"
+ r="35.250397" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:document-units="px"
+ inkscape:current-layer="hmi0"
+ showgrid="false"
+ units="px"
+ inkscape:zoom="0.29824219"
+ inkscape:cx="6031.6643"
+ inkscape:cy="-3206.0412"
+ inkscape:window-width="3840"
+ inkscape:window-height="2123"
+ inkscape:window-x="1600"
+ inkscape:window-y="0"
+ inkscape:window-maximized="1"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:snap-global="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true">
+ <sodipodi:guide
+ position="2769.4073,-860.03335"
+ orientation="0,1"
+ id="guide6495"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ <sodipodi:guide
+ position="5344.8616,-2420"
+ orientation="0,1"
+ id="guide6497"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ <sodipodi:guide
+ position="2760,-1640"
+ orientation="0,1"
+ id="guide6501"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g7994"
+ id="use7996"
+ transform="translate(1480,800)"
+ width="100%"
+ height="100%"
+ inkscape:label="HMI:Page:RelativePageTest@/PUMP0" />
+ <rect
+ sodipodi:insensitive="true"
+ inkscape:label="HMI:Page:Conf"
+ y="780"
+ x="0"
+ height="720"
+ width="1280"
+ id="rect1016"
+ style="color:#000000;fill:#000000" />
+ <g
+ id="g1082"
+ inkscape:label="HMI:Jump:Home"
+ transform="translate(-940,-558)">
+ <g
+ id="g1152"
+ inkscape:label="button">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
+ id="rect1022"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cssssccc" />
+ </g>
+ <g
+ id="g1149"
+ inkscape:label="text">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="1436.9814"
+ id="home_jmp"
+ inkscape:label="home_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan1028"
+ x="1090.7626"
+ y="1436.9814"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
+ </g>
+ </g>
+ <rect
+ style="color:#000000;fill:#4d4d4d"
+ id="page0"
+ width="1280"
+ height="720"
+ x="0"
+ y="0"
+ inkscape:label="HMI:Page:Home" />
+ <g
+ id="g1077"
+ inkscape:label="HMI:Jump:Conf"
+ transform="matrix(0.57180538,0,0,0.57180538,-373.64055,248.51305)">
+ <g
+ id="g1159"
+ inkscape:label="button">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1020"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ id="g1156"
+ inkscape:label="text">
+ <text
+ inkscape:label="setting_jmp"
+ id="setting_jmp"
+ y="656.98151"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="656.98151"
+ x="1090.7626"
+ id="tspan1024"
+ sodipodi:role="line">Settings</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g84"
+ inkscape:label="HMI:Input@/TARGETPRESSURE,0,100"
+ transform="matrix(0.35865594,0,0,0.35865594,22.072155,63.074421)">
+ <text
+ inkscape:label="value"
+ id="text5151"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan5149"
+ sodipodi:role="line">8888</tspan></text>
+ <path
+ transform="scale(1,-1)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path89"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="14.956363"
+ inkscape:label="-100" />
+ <path
+ inkscape:label="-10"
+ inkscape:transform-center-y="7.4781812"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path88"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="scale(1,-1)" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect85"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <path
+ inkscape:label="+100"
+ inkscape:transform-center-y="-14.956361"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path87"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path86"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-7.4781804"
+ inkscape:label="+10" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path91"
+ sodipodi:sides="4"
+ sodipodi:cx="80.740723"
+ sodipodi:cy="165.17262"
+ sodipodi:r1="57.015106"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.77793027"
+ sodipodi:arg2="1.5633284"
+ inkscape:flatsided="true"
+ inkscape:rounded="-0.65084865"
+ inkscape:randomized="0"
+ d="M 121.35644,205.1862 C 158.18649,167.80191 3.342862,168.95829 40.72715,205.78834 78.111437,242.61839 76.95506,87.774762 40.125008,125.15905 3.2949549,162.54334 158.13858,161.38696 120.7543,124.55691 83.370008,87.726855 84.526385,242.57048 121.35644,205.1862 Z"
+ inkscape:transform-center-y="-14.956361"
+ inkscape:label="=0" />
+ </g>
+ <text
+ inkscape:label="HMI:Display@/PUMP0/PRESSURE"
+ id="text823"
+ y="141.34827"
+ x="293.33374"
+ style="font-style:normal;font-weight:normal;font-size:57.38494873px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.35865593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.35865593px"
+ y="141.34827"
+ x="293.33374"
+ id="tspan821"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ id="g4523"
+ transform="matrix(2.1611542,0,0,2.1611542,142.76714,468.92423)"
+ inkscape:label="HMI:Meter@/PUMP0/SLOTH">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3ee800;stroke-width:26.45833397;stroke-miterlimit:4;stroke-dasharray:2.64583333, 2.64583333;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path4499"
+ sodipodi:type="arc"
+ sodipodi:cx="128.02208"
+ sodipodi:cy="2.2017097"
+ sodipodi:rx="64.411957"
+ sodipodi:ry="64.411957"
+ sodipodi:start="3.1415927"
+ sodipodi:end="4.712389"
+ d="M 63.610123,2.2017068 A 64.411957,64.411957 0 0 1 128.02208,-62.210247"
+ sodipodi:open="true"
+ inkscape:label="range" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#ff3000;stroke-width:2.96333337;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0, 32.59666667;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-end:url(#Arrow2Lend)"
+ d="M 130.96206,4.0725977 79.111776,-41.363223"
+ id="path4501"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ inkscape:label="needle" />
+ <text
+ inkscape:label="min"
+ id="text4505"
+ y="4.9187088"
+ x="49.132977"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px"
+ y="4.9187088"
+ x="49.132977"
+ id="tspan4503"
+ sodipodi:role="line">0</tspan></text>
+ <text
+ inkscape:label="max"
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="127.48073"
+ y="-78.144218"
+ id="text4509"><tspan
+ sodipodi:role="line"
+ id="tspan4507"
+ x="127.48073"
+ y="-78.144218"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px">10000</tspan></text>
+ <text
+ inkscape:label="value"
+ id="text4517"
+ y="-6.1937833"
+ x="113.53007"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan4515"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="-6.1937833"
+ x="113.53007"
+ sodipodi:role="line">000</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="124.77896"
+ y="1.1408259"
+ id="text4521"
+ inkscape:label="unit"><tspan
+ sodipodi:role="line"
+ x="124.77896"
+ y="1.1408259"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ id="tspan4519">bar</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:14.34623718px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.35865593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="114.11434"
+ y="90.742165"
+ id="text827"
+ inkscape:label="setpoint_label"><tspan
+ sodipodi:role="line"
+ id="tspan825"
+ x="114.11434"
+ y="90.742165"
+ style="stroke-width:0.35865593px">SetPoint</tspan></text>
+ <text
+ id="text831"
+ y="90.742165"
+ x="344.50876"
+ style="font-style:normal;font-weight:normal;font-size:14.34623718px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.35865593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="actual_label"><tspan
+ y="90.742165"
+ x="344.50876"
+ id="tspan829"
+ sodipodi:role="line"
+ style="stroke-width:0.35865593px">Actual</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.57180536px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="206.73413"
+ y="336.90073"
+ id="text4497"
+ inkscape:label="pressure_label"><tspan
+ sodipodi:role="line"
+ id="tspan4495"
+ x="206.73413"
+ y="336.90073"
+ style="fill:#ff6600;stroke-width:0.57180536px">Pressure</tspan></text>
+ <g
+ id="layer4"
+ inkscape:label="HMI:Lang:cn"
+ style="display:none"
+ inkscape:groupmode="layer">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:80px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:vertical-lr;text-anchor:middle;display:inline;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="83.669571"
+ y="136.78285"
+ id="text948-6"
+ inkscape:label="setpoint_label"><tspan
+ sodipodi:role="line"
+ id="tspan946-2"
+ x="136.78285"
+ y="83.669571"
+ style="stroke-width:1px">设定值</tspan></text>
+ <text
+ id="text952-9"
+ y="137.16286"
+ x="703.711"
+ style="font-style:normal;font-weight:normal;font-size:80px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:vertical-lr;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="actual_label"><tspan
+ y="703.711"
+ x="137.16286"
+ id="tspan950-1"
+ sodipodi:role="line"
+ style="text-align:center;writing-mode:vertical-lr;text-anchor:middle;stroke-width:1px">当前值</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:80px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:vertical-lr;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="480.61847"
+ y="278.37503"
+ id="text956-2"
+ inkscape:label="pressure_label"><tspan
+ sodipodi:role="line"
+ id="tspan954-7"
+ x="278.37503"
+ y="480.61847"
+ style="writing-mode:vertical-lr;fill:#ff6600;stroke-width:0.99999994px">压力</tspan></text>
+ <text
+ inkscape:label="setting_jmp"
+ id="text1097"
+ y="656.98151"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="656.98151"
+ x="1090.7626"
+ id="tspan1095"
+ sodipodi:role="line">设置</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="1436.9814"
+ id="text1101"
+ inkscape:label="home_jmp"><tspan
+ sodipodi:role="line"
+ x="1090.7626"
+ y="1436.9814"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ id="tspan1107">家</tspan></text>
+ </g>
+ <g
+ id="layer2"
+ inkscape:label="HMI:Lang:fr"
+ style="display:none"
+ inkscape:groupmode="layer">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="340.9082"
+ y="77.142853"
+ id="text948"
+ inkscape:label="setpoint_label"><tspan
+ sodipodi:role="line"
+ id="tspan946"
+ x="340.9082"
+ y="77.142853">Valeur de consigne</tspan></text>
+ <text
+ id="text952"
+ y="77.142853"
+ x="960.9082"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="actual_label"><tspan
+ y="77.142853"
+ x="960.9082"
+ id="tspan950"
+ sodipodi:role="line"
+ style="text-align:center;text-anchor:middle">Valeur courante</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="420.37848"
+ y="399.41504"
+ id="text956"
+ inkscape:label="pressure_label"><tspan
+ sodipodi:role="line"
+ id="tspan954"
+ x="420.37848"
+ y="399.41504"
+ style="fill:#ff6600;stroke-width:0.99999994px">Pression</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="setting_jmp-0"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan1024-9"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Settings</tspan></text>
+ <text
+ inkscape:label="home_jmp"
+ id="home_jmp-3"
+ y="1436.9814"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="1436.9814"
+ x="1090.7626"
+ id="tspan1028-6"
+ sodipodi:role="line">Home</tspan></text>
+ </g>
+ <g
+ id="layer3"
+ inkscape:label="HMI:Lang:si"
+ style="display:inline"
+ inkscape:groupmode="layer">
+ <text
+ id="text930"
+ y="77.142853"
+ x="338.67188"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="setpoint_label"><tspan
+ y="77.142853"
+ x="338.67188"
+ id="tspan928"
+ sodipodi:role="line">nastavljena vrednost</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="959.38477"
+ y="77.142853"
+ id="text934"
+ inkscape:label="actual_label"><tspan
+ sodipodi:role="line"
+ id="tspan932"
+ x="959.38477"
+ y="77.142853">dejanska vrednost</tspan></text>
+ <text
+ id="text938"
+ y="399.41504"
+ x="420.37848"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="pressure_label"><tspan
+ style="fill:#ff6600;stroke-width:0.99999994px"
+ y="399.41504"
+ x="420.37848"
+ id="tspan936"
+ sodipodi:role="line">pritisk</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="setting_jmp-06"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan1024-2"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Settings</tspan></text>
+ <text
+ inkscape:label="home_jmp"
+ id="home_jmp-6"
+ y="1436.9814"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="1436.9814"
+ x="1090.7626"
+ id="tspan1028-1"
+ sodipodi:role="line">Home</tspan></text>
+ </g>
+ <g
+ inkscape:label="HMI:Meter@/PUMP0/SLOTH"
+ transform="matrix(7.5590552,0,0,7.5590552,-244.3956,1321.2434)"
+ id="g110">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="M 113.38908,2.2017068 V -62.210247"
+ id="path90"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ inkscape:label="range" />
+ <path
+ inkscape:label="needle"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path92"
+ d="M 113.38908,4.0725977 V -62.210247"
+ style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient964);stroke-width:13.22916698;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="115.07632"
+ y="9.3424692"
+ id="text96"
+ inkscape:label="min"><tspan
+ sodipodi:role="line"
+ id="tspan94"
+ x="115.07632"
+ y="9.3424692"
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
+ <text
+ id="text100"
+ y="-64.195457"
+ x="113.27539"
+ style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="max"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="-64.195457"
+ x="113.27539"
+ id="tspan98"
+ sodipodi:role="line">10000</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="-20.624428"
+ y="-109.67243"
+ id="text104"
+ inkscape:label="value"
+ transform="rotate(90)"><tspan
+ sodipodi:role="line"
+ x="-20.624428"
+ y="-109.67243"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ id="tspan102">000</tspan></text>
+ <text
+ inkscape:label="unit"
+ id="text108"
+ y="-9.4425077"
+ x="140.65398"
+ style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan106"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="-9.4425077"
+ x="140.65398"
+ sodipodi:role="line">€£$¥</tspan></text>
+ </g>
+ <g
+ inkscape:label="HMI:Input@/TARGETPRESSURE"
+ id="g991"
+ transform="matrix(0.5,0,0,0.5,230.11026,885.7162)"
+ style="stroke-width:2">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text977"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan975"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:2px">8888</tspan></text>
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect983"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ id="g1086"
+ inkscape:label="=0"
+ transform="translate(-416.52022,170.47452)"
+ style="stroke-width:2">
+ <path
+ inkscape:connector-curvature="0"
+ id="path989"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1048"
+ y="111.05016"
+ x="733.58197"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="733.58197"
+ id="tspan1046"
+ sodipodi:role="line">→0←</tspan></text>
+ </g>
+ <g
+ id="g1091"
+ inkscape:label="-10"
+ transform="translate(-416.52022,170.47452)"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-x="14.956371"
+ inkscape:transform-center-y="-3.6154501e-05"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path981"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="633.09552"
+ y="111.05016"
+ id="text1059"><tspan
+ sodipodi:role="line"
+ id="tspan1057"
+ x="633.09552"
+ y="111.05016"
+ style="stroke-width:1px">-10</tspan></text>
+ </g>
+ <g
+ id="g1096"
+ inkscape:label="-100"
+ transform="translate(-416.52022,170.47452)"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-x="14.956364"
+ transform="rotate(-90,746.45698,-44.543641)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path979"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="-5.9989963e-06" />
+ <text
+ id="text1063"
+ y="111.05016"
+ x="537.25018"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="537.25018"
+ id="tspan1061"
+ sodipodi:role="line">-100</tspan></text>
+ </g>
+ <g
+ id="g1076"
+ inkscape:label="+100"
+ transform="translate(-416.52022,170.47452)"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-x="-14.956365"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-y="-5.5023185e-06"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path985"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <text
+ id="text1067"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan1065"
+ sodipodi:role="line">+100</tspan></text>
+ </g>
+ <g
+ id="g1081"
+ inkscape:label="+10"
+ transform="translate(-416.52022,170.47452)"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-x="-14.956349"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path987"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.3040441e-05" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="842.71497"
+ y="111.05016"
+ id="text1071"><tspan
+ sodipodi:role="line"
+ id="tspan1069"
+ x="842.71497"
+ y="111.05016"
+ style="stroke-width:1px">+10</tspan></text>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#82ff77;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
+ x="736.32812"
+ y="1478.2422"
+ id="text995"
+ inkscape:label="HMI:Display@/PUMP0/PRESSURE"><tspan
+ sodipodi:role="line"
+ id="tspan993"
+ x="736.32812"
+ y="1478.2422"
+ style="fill:#82ff77;fill-opacity:1;stroke-width:1px;">8888</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="28.181862"
+ y="365.32291"
+ id="text134"
+ inkscape:label="HMI:Display@/PUMP0/STROUT"><tspan
+ sodipodi:role="line"
+ id="tspan132"
+ x="28.181862"
+ y="365.32291"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ <text
+ inkscape:label="HMI:Display@/PUMP0/BOOLOUT"
+ id="text138"
+ y="422.50345"
+ x="28.181862"
+ style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
+ y="422.50345"
+ x="28.181862"
+ id="tspan136"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ transform="matrix(0.28590269,0,0,0.28590269,0.70444171,226.1427)"
+ id="g208-1"
+ inkscape:label="HMI:Input@/PUMP0/STRIN"
+ style="stroke-width:2">
+ <text
+ inkscape:label="value"
+ id="text164"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan162"
+ sodipodi:role="line">8888</tspan></text>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect166"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="+"dhu""
+ id="g174"
+ style="stroke-width:2">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:transform-center-y="-14.956361"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ id="path168"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="733.58197"
+ y="111.05016"
+ id="text172"><tspan
+ sodipodi:role="line"
+ id="tspan170"
+ x="733.58197"
+ y="111.05016"
+ style="stroke-width:1px">dhu</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="plop""
+ id="g182"
+ style="stroke-width:2">
+ <path
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path176"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-184.98808"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.6154501e-05"
+ inkscape:transform-center-x="14.956371" />
+ <text
+ id="text180"
+ y="111.05016"
+ x="633.09552"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="633.09552"
+ id="tspan178"
+ sodipodi:role="line">plop</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhoo""
+ id="g190"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-y="-5.9989963e-06"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-216.2599"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path184"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="rotate(-90,746.45698,-44.543641)"
+ inkscape:transform-center-x="14.956364" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="537.25018"
+ y="111.05016"
+ id="text188"><tspan
+ sodipodi:role="line"
+ id="tspan186"
+ x="537.25018"
+ y="111.05016"
+ style="stroke-width:1px">mhoo</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="yodl""
+ id="g198"
+ style="stroke-width:2">
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path192"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="105.17262"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:transform-center-y="-5.5023185e-06"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-x="-14.956365" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="925.82605"
+ y="111.05016"
+ id="text196"><tspan
+ sodipodi:role="line"
+ id="tspan194"
+ x="925.82605"
+ y="111.05016"
+ style="stroke-width:1px">yodl</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhe""
+ id="g206-1"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-y="-3.3040441e-05"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="136.44444"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path200"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ inkscape:transform-center-x="-14.956349" />
+ <text
+ id="text204"
+ y="111.05016"
+ x="842.71497"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="842.71497"
+ id="tspan202"
+ sodipodi:role="line">mhe</tspan></text>
+ </g>
+ </g>
+ <g
+ inkscape:label="HMI:Keypad:HMI_INT:HMI_REAL"
+ id="g2432"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ transform="matrix(3.3549332,0,0,3.14525,-181.87457,2336.0198)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:label="Background"
+ inkscape:connector-curvature="0"
+ id="path2136"
+ d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <rect
+ ry="3.8152773"
+ rx="3.8152773"
+ y="15.77106"
+ x="64.024963"
+ height="30.150299"
+ width="361.89996"
+ id="rect2426"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:label="Field" />
+ <text
+ id="text2430"
+ y="37.408375"
+ x="72.50132"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="Value"><tspan
+ style="text-align:start;text-anchor:start;stroke-width:0.47690967px"
+ y="37.408375"
+ x="72.50132"
+ id="tspan2428"
+ sodipodi:role="line">number</tspan></text>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ inkscape:label="Enter"
+ id="g4947"
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.10074362;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path193"
+ d="m 750,175 c 0,-2 -1,-3 -3,-3 h -20 c -1,0 -3,1 -3,3 v 43 c 0,1 2,2 3,2 h 20 c 2,0 3,-1 3,-2 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -1244.2949,1166.5938 v 15.791 h -38.6875 v -2.9981 l -6.9199,4 6.9199,4 v -2.998 h 40.6836 v -17.7949 z"
+ transform="matrix(0.28557246,0,0,0.28557246,1098.7155,-140.51013)"
+ id="path6545-4"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ inkscape:label="Keys"
+ id="g4993"
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="7"
+ id="g4892">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path163"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text331"
+ y="129.38269"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">7</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="4"
+ id="g4907">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path169"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text335"
+ y="154.10822"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">4</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="1"
+ id="g4922">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path175"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text339"
+ y="179.82285"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">1</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="8"
+ id="g4897">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,120 h 19 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path165"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text347"
+ y="129.38269"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">8</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="5"
+ id="g4912">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,146 h 19 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path171"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text351"
+ y="154.10822"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">5</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="2"
+ id="g4927">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 668,172 h 19 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path177"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text355"
+ y="179.82285"
+ x="667.07562"
+ transform="scale(1.0007154,0.99928514)">2</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="9"
+ id="g4902">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ id="path167"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text363"
+ y="129.38269"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">9</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="6"
+ id="g4917">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path173"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text367"
+ y="154.10822"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">6</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="3"
+ id="g4932">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
+ id="path179"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text371"
+ y="179.82285"
+ x="695.75708"
+ transform="scale(1.0007154,0.99928514)">3</text>
+ </g>
+ <g
+ style="stroke-width:0.13585199"
+ inkscape:label="0"
+ id="g4937">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 638,220 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 h 49 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 z"
+ id="path373"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text377"
+ y="205.53712"
+ x="636.4165"
+ transform="scale(1.0007154,0.99928514)">0</text>
+ </g>
+ </g>
+ <g
+ id="g3113"
+ inkscape:label="Esc"
+ transform="translate(-318.22576)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path167-3"
+ d="m 387.26079,54.792986 h 33.40019 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -33.40019 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="394.42801"
+ y="78.632088"
+ id="text469-4"
+ style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928511)">Esc</text>
+ </g>
+ <g
+ id="g3109"
+ inkscape:label="BackSpace"
+ transform="translate(0,-43.420332)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path173-1"
+ d="m 387.26079,98.213318 h 33.40019 c 3.34,0 5.01006,1.670013 5.01006,5.010032 v 30.06024 c 0,3.34002 -1.67006,5.01003 -5.01006,5.01003 h -33.40019 c -1.67006,0 -5.01007,-1.67001 -5.01007,-5.01003 v -30.06024 c 0,-3.340019 3.34001,-5.010032 5.01007,-5.010032 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -1278.9668,1041.3047 -6.9199,4 6.9199,4 v -3 h 33.416 v -1.9981 h -33.416 z"
+ transform="matrix(0.47690966,0,0,0.47690966,1008.0304,-380.26227)"
+ id="path11623-1-0-2"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g787"
+ inkscape:label="Sign"
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ transform="matrix(1.6700128,0,0,1.6700128,-678.20742,-102.18822)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path781"
+ d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="642.1239"
+ y="135.09822"
+ id="text783"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ transform="scale(1.0007154,0.99928514)">+/-</text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="252.9579"
+ y="12.333653"
+ id="text509"
+ transform="scale(0.96824589,1.0327955)"
+ inkscape:label="Info"><tspan
+ sodipodi:role="line"
+ id="tspan507"
+ x="252.9579"
+ y="12.333653"
+ style="stroke-width:0.30784383px">information</tspan></text>
+ <g
+ transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60856)"
+ style="fill-rule:evenodd;stroke-width:0.13585199"
+ id="g4942"
+ inkscape:label="NumDot">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 697,197 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path181"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:6.96602964px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
+ id="text771"
+ y="204.54802"
+ x="696.7464"
+ transform="scale(1.0007154,0.99928514)">.</text>
+ </g>
+ </g>
+ <g
+ transform="matrix(3.3549332,0,0,3.14525,-181.87457,1556.0198)"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4278"
+ inkscape:label="HMI:Keypad:HMI_STRING:HMI_LOCAL:PAGE_LOCAL">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="M 54.211084,1.2654702 H 435.7388 V 230.18209 H 54.211084 Z"
+ id="rect1006-3"
+ inkscape:connector-curvature="0"
+ inkscape:label="Background"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path185"
+ d="m 162,197 h -11 c -2,0 -3,1 -3,3 v 18 c 0,2 1,3 3,3 h 11 168 18 c 0,0 1,-1 1,-3 v -18 c 0,-2 -1,-3 -1,-3 h -18 z"
+ inkscape:connector-curvature="0"
+ inkscape:label="Space" />
+ <g
+ id="g4380"
+ inkscape:label="Keys"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-19.076386)">
+ <g
+ id="g4283"
+ inkscape:label="q Q"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path41"
+ d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="99.378708"
+ y="138.28395"
+ id="text203"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">Q</text>
+ </g>
+ <g
+ id="g4337"
+ inkscape:label="w W"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path43"
+ d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="127.0709"
+ y="138.28395"
+ id="text207"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">W</text>
+ </g>
+ <g
+ id="g4332"
+ inkscape:label="e E"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path45"
+ d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="159.70854"
+ y="138.28395"
+ id="text211"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">E</text>
+ </g>
+ <g
+ id="g4326"
+ inkscape:label="r R"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path47"
+ d="m 184,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="188.39003"
+ y="138.28395"
+ id="text215"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">R</text>
+ </g>
+ <g
+ id="g4321"
+ inkscape:label="t T"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path49"
+ d="m 213,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="219.04961"
+ y="138.28395"
+ id="text219"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">T</text>
+ </g>
+ <g
+ id="g4316"
+ inkscape:label="y Y"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path51"
+ d="m 243,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="248.72017"
+ y="138.28395"
+ id="text223"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">Y</text>
+ </g>
+ <g
+ id="g4311"
+ inkscape:label="u U"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path53"
+ d="m 273,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="278.39075"
+ y="138.28395"
+ id="text227"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">U</text>
+ </g>
+ <g
+ id="g4306"
+ inkscape:label="i I"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path55"
+ d="m 302,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="311.02859"
+ y="138.28395"
+ id="text231"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">I</text>
+ </g>
+ <g
+ id="g4301"
+ inkscape:label="o O"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path57"
+ d="m 332,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="336.74319"
+ y="138.28395"
+ id="text235"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">O</text>
+ </g>
+ <g
+ id="g4296"
+ inkscape:label="p P"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-9.5381931)">
+ <path
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path59"
+ d="m 362,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="367.40256"
+ y="138.28395"
+ id="text239"
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928514)">P</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4511"
+ inkscape:label="a A">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 103,147 h 19 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path65"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text243"
+ y="163.99854"
+ x="107.29005"
+ transform="scale(1.0007154,0.99928514)">A</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4516"
+ inkscape:label="s S">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 132,147 h 20 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path67"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text247"
+ y="163.99854"
+ x="137.95012"
+ transform="scale(1.0007154,0.99928514)">S</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4521"
+ inkscape:label="d D">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 162,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path69"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text251"
+ y="163.99854"
+ x="166.63159"
+ transform="scale(1.0007154,0.99928514)">D</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4526"
+ inkscape:label="f F">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 192,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path71"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text255"
+ y="163.99854"
+ x="197.29166"
+ transform="scale(1.0007154,0.99928514)">F</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4531"
+ inkscape:label="g G">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 221,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
+ id="path73"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text259"
+ y="163.99854"
+ x="225.97284"
+ transform="scale(1.0007154,0.99928514)">G</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4536"
+ inkscape:label="h H">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 251,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path75"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text263"
+ y="163.99854"
+ x="255.64342"
+ transform="scale(1.0007154,0.99928514)">H</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4541"
+ inkscape:label="j J">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 281,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path77"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text267"
+ y="163.99854"
+ x="287.29208"
+ transform="scale(1.0007154,0.99928514)">J</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4546"
+ inkscape:label="k K">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 310,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path79"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text271"
+ y="163.99854"
+ x="314.98465"
+ transform="scale(1.0007154,0.99928514)">K</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4551"
+ inkscape:label="l L">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 340,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
+ id="path81"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text275"
+ y="163.99854"
+ x="345.64444"
+ transform="scale(1.0007154,0.99928514)">L</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4586"
+ inkscape:label="z Z"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 113,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
+ id="path87-3"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text279"
+ y="188.72411"
+ x="119.15855"
+ transform="scale(1.0007154,0.99928514)">Z</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4581"
+ inkscape:label="x X"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 143,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
+ id="path89-6"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text283"
+ y="188.72411"
+ x="148.82933"
+ transform="scale(1.0007154,0.99928514)">X</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4576"
+ inkscape:label="c C"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 173,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
+ id="path91-7"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text287"
+ y="188.72411"
+ x="178.50011"
+ transform="scale(1.0007154,0.99928514)">C</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4571"
+ inkscape:label="v V"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 202,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c 0,0 -1,-1 -1,-3 v -17 c 0,-1 1,-3 1,-3 z"
+ id="path195"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text291"
+ y="188.72411"
+ x="208.16988"
+ transform="scale(1.0007154,0.99928514)">V</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4566"
+ inkscape:label="b B"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 233,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path93"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text295"
+ y="188.72411"
+ x="237.84096"
+ transform="scale(1.0007154,0.99928514)">B</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4561"
+ inkscape:label="n N"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 263,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path95"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text299"
+ y="188.72411"
+ x="267.51193"
+ transform="scale(1.0007154,0.99928514)">N</text>
+ </g>
+ <g
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4556"
+ inkscape:label="m M"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 293,172 h 19 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -19 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path97"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text303"
+ y="188.72411"
+ x="296.1933"
+ transform="scale(1.0007154,0.99928514)">M</text>
+ </g>
+ <g
+ id="g4818"
+ inkscape:label=". :"
+ style="stroke-width:0.47631353"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 352,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path101"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ transform="scale(1.0007154,0.99928513)"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text719"
+ y="189.66107"
+ x="359.58276">.</text>
+ <text
+ x="359.58276"
+ y="181.64532"
+ id="text4834"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928512)">:</text>
+ </g>
+ <g
+ id="g4813"
+ inkscape:label=", ;"
+ style="stroke-width:0.47631353"
+ transform="translate(0,9.5381929)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 322,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
+ id="path99"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text727"
+ y="181.64532"
+ x="330.00806"
+ transform="scale(1.0007154,0.99928512)">;</text>
+ <text
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ y="189.66107"
+ x="330.00806"
+ transform="scale(1.0007154,0.99928512)"
+ id="text4826">,</text>
+ </g>
+ <g
+ style="stroke-width:0.47631353"
+ inkscape:label="1"
+ id="g2845"
+ transform="translate(-13.353469,-45.783327)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path2839"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2841"
+ y="138.28395"
+ x="101.07153"
+ transform="scale(1.0007154,0.99928513)">1</text>
+ </g>
+ <g
+ style="stroke-width:0.47631353"
+ inkscape:label="2"
+ id="g2853"
+ transform="translate(-13.353469,-45.783327)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path2847"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2849"
+ y="138.28395"
+ x="130.18704"
+ transform="scale(1.0007154,0.99928513)">2</text>
+ </g>
+ <g
+ inkscape:label="3"
+ id="g2861"
+ style="stroke-width:0.47631353"
+ transform="translate(-13.353469,-45.783327)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
+ id="path2855"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2857"
+ y="138.28395"
+ x="159.70854"
+ transform="scale(1.0007154,0.99928514)">3</text>
+ </g>
+ <g
+ id="g2957"
+ inkscape:label="4"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 170.64653,94.293059 h 19 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 V 97.293059 c 0,-2 2,-3 3,-3 z"
+ id="path2865"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2867"
+ y="111.55791"
+ x="176.39188"
+ transform="scale(1.0007154,0.99928514)">4</text>
+ </g>
+ <g
+ id="g2962"
+ inkscape:label="5"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 199.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2873"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2875"
+ y="111.55791"
+ x="205.70567"
+ transform="scale(1.0007154,0.99928514)">5</text>
+ </g>
+ <g
+ id="g2967"
+ inkscape:label="6"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 229.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2881"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2883"
+ y="111.55791"
+ x="236.15851"
+ transform="scale(1.0007154,0.99928514)">6</text>
+ </g>
+ <g
+ id="g2972"
+ inkscape:label="7"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 259.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2889"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2891"
+ y="111.55791"
+ x="266.06564"
+ transform="scale(1.0007154,0.99928514)">7</text>
+ </g>
+ <g
+ id="g2977"
+ inkscape:label="8"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 288.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2897"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2899"
+ y="111.55791"
+ x="295.08231"
+ transform="scale(1.0007154,0.99928514)">8</text>
+ </g>
+ <g
+ id="g2982"
+ inkscape:label="9 -"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 318.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2905"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2907"
+ y="111.55791"
+ x="325.05408"
+ transform="scale(1.0007154,0.99928514)">9</text>
+ <text
+ transform="scale(1.0007154,0.99928511)"
+ x="335.72681"
+ y="102.42173"
+ id="text806"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826">-</text>
+ </g>
+ <g
+ id="g2987"
+ inkscape:label="0 +"
+ transform="translate(0,-19.076386)">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 348.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
+ id="path2913"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text2915"
+ y="111.55791"
+ x="355.05984"
+ transform="scale(1.0007154,0.99928514)">0</text>
+ <text
+ transform="scale(1.0007154,0.99928511)"
+ style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text804"
+ y="102.42173"
+ x="365.30151">+</text>
+ </g>
+ </g>
+ <g
+ transform="translate(335.89988,-58.934803)"
+ id="g3544"
+ inkscape:label="Esc"
+ style="stroke-width:0.47631353">
+ <path
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path105"
+ d="m 47.948645,115.07509 h 39.076386 c 1,0 3,1 3,3 v 18 c 0,1 -2,3 -3,3 H 47.948645 c -2,0 -3,-2 -3,-3 v -18 c 0,-2 1,-3 3,-3 z"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ transform="scale(1.0007154,0.99928512)"
+ style="font-weight:normal;font-size:9.37966251px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text469"
+ y="130.02028"
+ x="59.288635">Esc</text>
+ </g>
+ <g
+ inkscape:label="Enter"
+ id="g4291"
+ style="stroke-width:0.47631353"
+ transform="translate(0,-19.076386)">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path3616"
+ d="m 368.68274,170 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 54.24217 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -260.23633,1080.8125 v 15.7949 h -38.68555 v -3 l -6.91992,4 6.91992,4 v -3.0019 h 40.6836 v -17.793 z"
+ transform="matrix(0.47690966,0,0,0.47690966,531.12074,-361.18588)"
+ id="path6545"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:label="BackSpace"
+ id="g4287"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ transform="translate(2.3648311e-6,-28.614579)">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path3624"
+ d="m 391.97749,144 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 30.94742 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m -268.72656,1011.1777 -6.91992,4 6.91992,4 v -3.0019 h 29.18945 v -1.9981 h -29.18945 z"
+ transform="matrix(0.47690966,0,0,0.47690966,531.12074,-351.64769)"
+ id="path11623-1-0"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g934"
+ inkscape:label="CapsLock">
+ <g
+ inkscape:label="inactive"
+ id="g942"
+ style="display:inline;fill-rule:evenodd;stroke-width:0.47631353"
+ transform="translate(0,-19.076386)">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path936"
+ d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="69.789322"
+ y="156.71973"
+ id="text938-5"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
+ transform="scale(1.0007154,0.99928515)">Caps</text>
+ <text
+ x="69.789322"
+ y="166.5585"
+ id="text940"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
+ transform="scale(1.0007154,0.99928515)">Lock</text>
+ </g>
+ <g
+ transform="translate(0,-19.076386)"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g4429"
+ inkscape:label="active">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
+ id="path199"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ transform="scale(1.0007154,0.99928515)"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
+ id="text647"
+ y="156.71973"
+ x="69.789322">Caps</text>
+ <text
+ transform="scale(1.0007154,0.99928515)"
+ style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
+ id="text651"
+ y="166.5585"
+ x="69.789322">Lock</text>
+ </g>
+ </g>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect2130"
+ width="361.89996"
+ height="30.150299"
+ x="64.024956"
+ y="15.771065"
+ rx="3.8152773"
+ ry="3.8152773"
+ inkscape:label="Field" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="72.50132"
+ y="38.296417"
+ id="text1309"
+ inkscape:label="Value"><tspan
+ sodipodi:role="line"
+ id="tspan1307"
+ x="72.50132"
+ y="38.296417"
+ style="text-align:start;text-anchor:start;stroke-width:0.47690967px">text</tspan></text>
+ <g
+ id="g437"
+ inkscape:label="Shift">
+ <g
+ id="g421"
+ inkscape:label="inactive">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ id="path910"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ id="text912"
+ y="177.90059"
+ x="392.55679"
+ transform="scale(1.0007154,0.99928513)">Shift</text>
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path856"
+ d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ x="75.85218"
+ y="177.90059"
+ id="text858"
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
+ transform="scale(1.0007154,0.99928513)">Shift</text>
+ </g>
+ <g
+ id="g413"
+ inkscape:label="active">
+ <path
+ sodipodi:nodetypes="sssssssss"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path551"
+ d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
+ inkscape:connector-curvature="0" />
+ <text
+ transform="scale(1.0007154,0.99928513)"
+ x="392.55679"
+ y="177.90059"
+ id="text629"
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;stroke-width:0.36866826">Shift</text>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
+ id="path879"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ transform="scale(1.0007154,0.99928513)"
+ style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text881"
+ y="177.90059"
+ x="75.85218">Shift</text>
+ </g>
+ </g>
+ <text
+ transform="scale(0.96824588,1.0327955)"
+ id="text471"
+ y="12.333657"
+ x="252.9579"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="Info"><tspan
+ style="stroke-width:0.30784383px"
+ y="12.333657"
+ x="252.9579"
+ id="tspan469"
+ sodipodi:role="line">information</tspan></text>
+ </g>
+ <g
+ id="g14237"
+ inkscape:label="HMI:DropDown:1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:16:17:18:19:20:21:22:23:24:25:26:27@/SELECTION"
+ transform="matrix(0.81491208,0,0,0.81491208,243.6641,-510.30491)"
+ style="stroke-width:0.35083869">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#53676c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect14212"
+ width="391.99988"
+ height="130.9433"
+ x="864.00842"
+ y="923.98993"
+ rx="2.4558709"
+ ry="2.4558709"
+ inkscape:label="box" />
+ <rect
+ inkscape:label="highlight"
+ ry="2.4558709"
+ rx="2.4558709"
+ y="943.10553"
+ x="864.00842"
+ height="92.71212"
+ width="391.99988"
+ id="rect5497"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419331;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text14183"
+ y="1011.9975"
+ x="881.44226"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d42aff;fill-opacity:1;stroke:none;stroke-width:0.35083869px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="text"><tspan
+ style="text-align:start;text-anchor:start;fill:#d42aff;stroke-width:0.35083869px"
+ y="1011.9975"
+ x="881.44226"
+ sodipodi:role="line"
+ id="tspan421">sel_0</tspan></text>
+ <path
+ sodipodi:type="star"
+ style="opacity:1;vector-effect:none;fill:#a7a5a6;fill-opacity:1;stroke:none;stroke-width:0.12376806;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path424"
+ sodipodi:sides="3"
+ sodipodi:cx="1200.5"
+ sodipodi:cy="975"
+ sodipodi:r1="43.683521"
+ sodipodi:r2="21.841761"
+ sodipodi:arg1="1.5707963"
+ sodipodi:arg2="2.6179939"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 1200.5,1018.6835 -18.9155,-32.76262 -18.9155,-32.76264 37.831,0 37.831,0 -18.9155,32.76264 z"
+ inkscape:transform-center-y="10.92088"
+ inkscape:label="button" />
+ </g>
+ <g
+ id="g14274"
+ inkscape:label="HMI:List:HoodNames:ForEach:HOOD:NAME@/" />
+ <g
+ inkscape:label="HMI:Input@/SELECTION"
+ id="g446"
+ transform="matrix(0.28590269,0,0,0.28590269,85.246911,560.98603)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="216.32812"
+ y="218.24219"
+ id="text432"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan430"
+ x="216.32812"
+ y="218.24219"
+ style="text-align:end;text-anchor:end;stroke-width:1px">8</tspan></text>
+ <path
+ transform="scale(1,-1)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path436"
+ sodipodi:sides="3"
+ sodipodi:cx="276.74072"
+ sodipodi:cy="-224.98808"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 302.6459,-210.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="7.4781812"
+ inkscape:label="-1" />
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="-174.94055"
+ height="128"
+ width="407.7037"
+ id="rect438"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:label="+1"
+ inkscape:transform-center-y="-7.4781804"
+ d="m 302.6459,111.4008 -51.81035,0 25.90517,-44.869079 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="96.444443"
+ sodipodi:cx="276.74072"
+ sodipodi:sides="3"
+ id="path442"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <path
+ inkscape:label="=0"
+ inkscape:transform-center-y="-10.828983"
+ d="m 306.14807,189.68763 -58.37872,0.43598 -0.43597,-58.37872 58.37871,-0.43597 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5633284"
+ sodipodi:arg1="0.77793027"
+ sodipodi:r2="21.657967"
+ sodipodi:r1="41.281136"
+ sodipodi:cy="160.71626"
+ sodipodi:cx="276.74072"
+ sodipodi:sides="4"
+ id="path444"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ inkscape:transform-center-x="1.0089177e-06" />
+ </g>
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,-522.96165,161.69266)"
+ id="g443"
+ inkscape:label="HMI:Button@/SELECTION"
+ style="stroke-width:1">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect5492"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="23.930969"
+ inkscape:label="inactive"
+ rx="23.930969" />
+ <rect
+ rx="23.930969"
+ inkscape:label="active"
+ ry="23.930969"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect433"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fdfdfd;fill-opacity:1;fill-rule:nonzero;stroke:#ffd0b2;stroke-width:28.60938263;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:1"
+ inkscape:label="text"
+ id="g952">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text950"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan948"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">up</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g5053"
+ inkscape:label="HMI:Switch@/PUMP0/BOOLOUT"
+ transform="translate(43.983597,40.477445)">
+ <g
+ id="g473"
+ style="fill:#ff0000;stroke:#ff00ff"
+ inkscape:label="true">
+ <path
+ d="M 825.90067,963.24473 V 1105.042 L 960.08282,916.47893 V 809.26931 Z"
+ style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3451"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 825.90067,1105.042 90.50966,81.6485 121.15167,-225.30346 -77.47918,-44.90811 z"
+ style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3453"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 960.08282,809.26931 77.47918,36.25625 v 115.86148 l -77.47918,-44.90811 z"
+ style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3455"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 825.90067,963.24473 916.41033,1029.3537 1037.562,845.52556 960.08282,809.26931 Z"
+ style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3457"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 916.41033,1029.3537 v 157.3368 L 1037.562,961.38704 V 845.52556 Z"
+ style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3459"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 825.90067,963.24473 90.50966,66.10897 v 157.3368 l -90.50966,-81.6485 z"
+ style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3461"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g501"
+ style="fill:#ff0000;stroke:#ff00ff"
+ inkscape:label="false">
+ <path
+ d="M 855.90069,905.24473 V 1047.042 L 978.3745,966.29311 V 859.0835 Z"
+ style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3437"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 855.90069,1047.042 90.50966,81.6485 108.49845,-108.7886 -76.5343,-53.60879 z"
+ style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3439"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 978.3745,859.0835 76.5343,44.95689 v 115.86151 l -76.5343,-53.60879 z"
+ style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3441"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 855.90069,905.24473 90.50966,66.10901 108.49845,-67.31335 -76.5343,-44.95689 z"
+ style="fill:#4d389f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3443"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 946.41035,971.35374 V 1128.6905 L 1054.9088,1019.9019 V 904.04039 Z"
+ style="fill:#d78bff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3445"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 855.90069,905.24473 90.50966,66.10901 v 157.33676 l -90.50966,-81.6485 z"
+ style="fill:#8667bf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3447"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ transform="matrix(3.3549332,0,0,3.14525,-181.87457,3116.0198)"
+ style="fill-rule:evenodd;stroke-width:0.47631353"
+ id="g1490"
+ inkscape:label="HMI:ModalOKDialog">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
+ id="path1386"
+ inkscape:connector-curvature="0"
+ inkscape:label="Background"
+ sodipodi:nodetypes="ccccc" />
+ <rect
+ inkscape:label="Field"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1388"
+ width="314.68832"
+ height="68.369255"
+ x="87.630791"
+ y="56.041908"
+ rx="3.8152773"
+ ry="3.8152773" />
+ <text
+ inkscape:label="Message"
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="243.24242"
+ y="94.637527"
+ id="text1392"><tspan
+ sodipodi:role="line"
+ id="tspan1390"
+ x="243.24242"
+ y="94.637527"
+ style="text-align:center;text-anchor:middle;stroke-width:0.47690967px">message</tspan></text>
+ <g
+ transform="translate(-158.98593,95.381925)"
+ inkscape:label="OK"
+ id="g1466">
+ <path
+ inkscape:connector-curvature="0"
+ d="m 363.41531,54.792986 h 81.09115 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -81.09115 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
+ id="path1462"
+ style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:nodetypes="sssssssss" />
+ <text
+ transform="scale(1.0007154,0.99928511)"
+ style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
+ id="text1464"
+ y="78.632088"
+ x="402.71881">
+ <tspan
+ style="text-align:center;text-anchor:middle"
+ id="tspan5195">OK</tspan>
+ </text>
+ </g>
+ <text
+ inkscape:label="Info"
+ transform="scale(0.96824589,1.0327955)"
+ id="text1482"
+ y="12.333653"
+ x="252.9579"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.30784383px"
+ y="12.333653"
+ x="252.9579"
+ id="tspan1480"
+ sodipodi:role="line">information</tspan></text>
+ </g>
+ <g
+ inkscape:label="HMI:Meter@/PUMP0/SLOTH"
+ transform="matrix(3.7795276,0,0,3.7795276,1628.51,630.30393)"
+ id="g1338">
+ <path
+ inkscape:label="range"
+ sodipodi:open="true"
+ d="M 63.610123,2.2017068 A 64.411957,64.411957 0 0 1 128.02208,-62.210247"
+ sodipodi:end="4.712389"
+ sodipodi:start="3.1415927"
+ sodipodi:ry="64.411957"
+ sodipodi:rx="64.411957"
+ sodipodi:cy="2.2017097"
+ sodipodi:cx="128.02208"
+ sodipodi:type="arc"
+ id="path1318"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3ee800;stroke-width:26.45833397;stroke-miterlimit:4;stroke-dasharray:2.64583333, 2.64583333;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:label="needle"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path1320"
+ d="M 130.96206,4.0725977 79.111776,-41.363223"
+ style="fill:none;fill-rule:evenodd;stroke:#ff3000;stroke-width:2.96333337;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-end:url(#marker1656)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="49.132977"
+ y="4.9187088"
+ id="text1324"
+ inkscape:label="min"><tspan
+ sodipodi:role="line"
+ id="tspan1322"
+ x="49.132977"
+ y="4.9187088"
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
+ <text
+ id="text1328"
+ y="-78.144218"
+ x="127.48073"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="max"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="-78.144218"
+ x="127.48073"
+ id="tspan1326"
+ sodipodi:role="line">10000</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="113.53007"
+ y="-6.1937833"
+ id="text1332"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ x="113.53007"
+ y="-6.1937833"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ id="tspan1330">000</tspan></text>
+ <text
+ inkscape:label="unit"
+ id="text1336"
+ y="1.1408259"
+ x="124.77896"
+ style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan1334"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="1.1408259"
+ x="124.77896"
+ sodipodi:role="line">bar</tspan></text>
+ </g>
+ <g
+ inkscape:label="HMI:Switch@/PUMP0/BOOLOUT"
+ id="g1368"
+ transform="translate(1424.3019,-503.18786)">
+ <g
+ id="g1352"
+ style="fill:#ff0000;stroke:#ff00ff"
+ inkscape:label="true">
+ <path
+ d="M 825.90072,963.24473 V 1105.042 L 960.08286,916.47892 V 809.26931 Z"
+ style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3479"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 825.90072,1105.042 90.50967,81.6485 121.15161,-225.30347 -77.47914,-44.90811 z"
+ style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3481"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 960.08286,809.26931 77.47914,36.25624 v 115.86148 l -77.47914,-44.90811 z"
+ style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3483"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 825.90072,963.24473 916.41039,1029.3537 1037.562,845.52555 960.08286,809.26931 Z"
+ style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3485"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 916.41039,1029.3537 v 157.3368 L 1037.562,961.38703 V 845.52555 Z"
+ style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3487"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 825.90072,963.24473 90.50967,66.10897 v 157.3368 l -90.50967,-81.6485 z"
+ style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3489"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g1366"
+ style="fill:#ff0000;stroke:#ff00ff"
+ inkscape:label="false">
+ <path
+ d="M 855.90072,905.24473 V 1047.042 L 978.37453,966.29311 V 859.08349 Z"
+ style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3465"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 855.90072,1047.042 90.50967,81.6485 108.49841,-108.7886 -76.53427,-53.60879 z"
+ style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3467"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 978.37453,859.08349 76.53427,44.9569 v 115.86151 l -76.53427,-53.60879 z"
+ style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3469"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 855.90072,905.24473 90.50967,66.109 108.49841,-67.31334 -76.53427,-44.9569 z"
+ style="fill:#4d389f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3471"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 946.41039,971.35373 V 1128.6905 L 1054.9088,1019.9019 V 904.04039 Z"
+ style="fill:#d78bff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3473"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 855.90072,905.24473 90.50967,66.109 v 157.33677 l -90.50967,-81.6485 z"
+ style="fill:#8667bf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
+ id="path3475"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ transform="matrix(0.63690435,0,0,0.63690435,1576.4961,80.355376)"
+ inkscape:label="HMI:Input@/PUMP0/PRESSURE"
+ id="g1394">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text1380"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1378"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:1px">8888</tspan></text>
+ <path
+ inkscape:label="-100"
+ inkscape:transform-center-y="14.956363"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-216.2599"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1382"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="scale(1,-1)" />
+ <path
+ transform="scale(1,-1)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1384"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-184.98808"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="7.4781812"
+ inkscape:label="-10" />
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect1386"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1388"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="105.17262"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:transform-center-y="-14.956361"
+ inkscape:label="+100" />
+ <path
+ inkscape:label="+10"
+ inkscape:transform-center-y="-7.4781804"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="136.44444"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1390"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <path
+ inkscape:label="=0"
+ inkscape:transform-center-y="-14.956361"
+ d="M 121.35644,205.1862 C 158.18649,167.80191 3.342862,168.95829 40.72715,205.78834 78.111437,242.61839 76.95506,87.774762 40.125008,125.15905 3.2949549,162.54334 158.13858,161.38696 120.7543,124.55691 83.370008,87.726855 84.526385,242.57048 121.35644,205.1862 Z"
+ inkscape:randomized="0"
+ inkscape:rounded="-0.65084865"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5633284"
+ sodipodi:arg1="0.77793027"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="57.015106"
+ sodipodi:cy="165.17262"
+ sodipodi:cx="80.740723"
+ sodipodi:sides="4"
+ id="path1392"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ </g>
+ <g
+ style="stroke-width:2"
+ inkscape:label="HMI:Input@/PUMP0/STRIN"
+ id="g1442"
+ transform="matrix(0.5,0,0,0.5,1470.1103,205.71623)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text1398"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1396"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:2px">8888</tspan></text>
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect1400"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:2"
+ id="g1408"
+ inkscape:label="+"dhu""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1402"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1406"
+ y="111.05016"
+ x="733.58197"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="733.58197"
+ id="tspan1404"
+ sodipodi:role="line">dhu</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1416"
+ inkscape:label="="plop""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956371"
+ inkscape:transform-center-y="-3.6154501e-05"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1410"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="633.09552"
+ y="111.05016"
+ id="text1414"><tspan
+ sodipodi:role="line"
+ id="tspan1412"
+ x="633.09552"
+ y="111.05016"
+ style="stroke-width:1px">plop</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1424"
+ inkscape:label="="mhoo""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956364"
+ transform="rotate(-90,746.45698,-44.543641)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1418"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="-5.9989963e-06" />
+ <text
+ id="text1422"
+ y="111.05016"
+ x="537.25018"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="537.25018"
+ id="tspan1420"
+ sodipodi:role="line">mhoo</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1432"
+ inkscape:label="="yodl""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956365"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-y="-5.5023185e-06"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1426"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <text
+ id="text1430"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan1428"
+ sodipodi:role="line">yodl</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1440"
+ inkscape:label="="mhe""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956349"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1434"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.3040441e-05" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="842.71497"
+ y="111.05016"
+ id="text1438"><tspan
+ sodipodi:role="line"
+ id="tspan1436"
+ x="842.71497"
+ y="111.05016"
+ style="stroke-width:1px">mhe</tspan></text>
+ </g>
+ </g>
+ <text
+ inkscape:label="HMI:Display@/PUMP0/STROUT"
+ id="text1446"
+ y="469.12109"
+ x="1578.1641"
+ style="font-style:normal;font-weight:normal;font-size:80px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.5px"
+ y="469.12109"
+ x="1578.1641"
+ id="tspan1444"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,-153.64055,248.51305)"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP0"
+ id="g1458">
+ <g
+ inkscape:label="button"
+ id="g1450">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1448"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1456">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text1454"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ id="tspan1460">Pump 0</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g1475"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP1"
+ transform="matrix(0.57180538,0,0,0.57180538,6.35945,248.51305)">
+ <g
+ id="g1467"
+ inkscape:label="button">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1464"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ id="g1473"
+ inkscape:label="text">
+ <text
+ inkscape:label="setting_jmp"
+ id="text1471"
+ y="656.98151"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan1469"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="656.98151"
+ x="1090.7626"
+ sodipodi:role="line">Pump 1</tspan><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="706.98151"
+ x="1090.7626"
+ sodipodi:role="line"
+ id="tspan1477" /></text>
+ </g>
+ </g>
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,166.35945,248.51305)"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP2"
+ id="g1491">
+ <g
+ inkscape:label="button"
+ id="g1481">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1479"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1489">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text1487"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ id="tspan1493">Pump 2</tspan><tspan
+ id="tspan1485"
+ sodipodi:role="line"
+ x="1090.7626"
+ y="706.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px" /></text>
+ </g>
+ </g>
+ <g
+ id="g1509"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP3"
+ transform="matrix(0.57180538,0,0,0.57180538,326.35945,248.51305)">
+ <g
+ id="g1499"
+ inkscape:label="button">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1497"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ id="g1507"
+ inkscape:label="text">
+ <text
+ inkscape:label="setting_jmp"
+ id="text1505"
+ y="656.98151"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="656.98151"
+ x="1090.7626"
+ sodipodi:role="line"
+ id="tspan1511">Pump 3</tspan><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="706.98151"
+ x="1090.7626"
+ sodipodi:role="line"
+ id="tspan1503" /></text>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="403.8551"
+ y="700.05371"
+ id="text1517"
+ inkscape:label="HMI:Display@/PUMP0/STROUT"><tspan
+ sodipodi:role="line"
+ id="tspan1515"
+ x="403.8551"
+ y="700.05371"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px">8888</tspan></text>
+ <text
+ inkscape:label="HMI:Display@/PUMP1/STROUT"
+ id="text1521"
+ y="700.05371"
+ x="563.8551"
+ style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px"
+ y="700.05371"
+ x="563.8551"
+ id="tspan1519"
+ sodipodi:role="line">8888</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="723.8551"
+ y="700.05371"
+ id="text1525"
+ inkscape:label="HMI:Display@/PUMP2/STROUT"><tspan
+ sodipodi:role="line"
+ id="tspan1523"
+ x="723.8551"
+ y="700.05371"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px">8888</tspan></text>
+ <text
+ inkscape:label="HMI:Display@/PUMP3/STROUT"
+ id="text1529"
+ y="700.05371"
+ x="883.8551"
+ style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px"
+ y="700.05371"
+ x="883.8551"
+ id="tspan1527"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ id="g6077"
+ inkscape:label="HMI:ForEach:PUMP@/">
+ <g
+ id="g6130"
+ inkscape:label="PUMP:1">
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,1024.0513,-317.49049)"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP0"
+ id="g1458-8">
+ <g
+ inkscape:label="button"
+ id="g1450-4">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1448-8"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1456-1">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1038.2972"
+ y="635.99542"
+ id="text1454-0"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ x="1038.2972"
+ y="635.99542"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ id="tspan1460-3">Pump</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="992.45087"
+ y="674.76117"
+ id="text1517-8"
+ inkscape:label="HMI:Display@/PUMP0/STROUT"><tspan
+ sodipodi:role="line"
+ id="tspan1515-5"
+ x="992.45087"
+ y="674.76117"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.24579209px">8888</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ id="g6122"
+ inkscape:label="PUMP:2">
+ <g
+ id="g1475-0"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP1"
+ transform="matrix(0.57180538,0,0,0.57180538,1184.0513,-317.49049)">
+ <g
+ id="g1467-4"
+ inkscape:label="button">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1464-4"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ id="g1473-4"
+ inkscape:label="text">
+ <text
+ inkscape:label="setting_jmp"
+ id="text1471-4"
+ y="635.99542"
+ x="1038.2972"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="635.99542"
+ x="1038.2972"
+ sodipodi:role="line"
+ id="tspan1477-6">Pump</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579208px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="992.8111"
+ y="674.76117"
+ id="text1517-8-5"
+ inkscape:label="HMI:Display@/PUMP1/STROUT"><tspan
+ sodipodi:role="line"
+ id="tspan1515-5-3"
+ x="992.8111"
+ y="674.76117"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.24579208px">8888</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ id="g6113"
+ inkscape:label="PUMP:3">
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,1344.0513,-317.49049)"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP2"
+ id="g1491-3">
+ <g
+ inkscape:label="button"
+ id="g1481-1">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect1479-7"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g1489-5">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1038.2972"
+ y="635.99542"
+ id="text1487-9"
+ inkscape:label="setting_jmp"><tspan
+ id="tspan1485-2"
+ sodipodi:role="line"
+ x="1038.2972"
+ y="635.99542"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Pump</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579208px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="993.17108"
+ y="674.76117"
+ id="text1517-8-8"
+ inkscape:label="HMI:Display@/PUMP2/STROUT"><tspan
+ sodipodi:role="line"
+ id="tspan1515-5-8"
+ x="993.17108"
+ y="674.76117"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.24579208px">8888</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ id="g6104"
+ inkscape:label="PUMP:4">
+ <g
+ id="g1509-1"
+ inkscape:label="HMI:Jump:RelativePageTest@/PUMP3"
+ transform="matrix(0.57180538,0,0,0.57180538,1504.0513,-317.49049)">
+ <g
+ id="g1499-7"
+ inkscape:label="button">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1497-8"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="35.579063"
+ inkscape:label="button" />
+ </g>
+ <g
+ id="g1507-5"
+ inkscape:label="text">
+ <text
+ inkscape:label="setting_jmp"
+ id="text1505-7"
+ y="635.99542"
+ x="1038.2972"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="635.99542"
+ x="1038.2972"
+ sodipodi:role="line"
+ id="tspan1511-4">Pump</tspan><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ y="685.99542"
+ x="1038.2972"
+ sodipodi:role="line"
+ id="tspan1503-1" /></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579208px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="993.53101"
+ y="674.76117"
+ id="text1517-8-3"
+ inkscape:label="HMI:Display@/PUMP3/STROUT"><tspan
+ sodipodi:role="line"
+ id="tspan1515-5-1"
+ x="993.53101"
+ y="674.76117"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.24579208px">8888</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ inkscape:label="PUMP:+1"
+ id="g6241"
+ transform="matrix(0.57180538,0,0,0.57180538,1461.2541,-321.48847)">
+ <rect
+ style="fill:#000000;fill-opacity:1;stroke:#ff0000;stroke-width:1.74884677"
+ id="rect6235"
+ width="89.036743"
+ height="79.143768"
+ x="1326.8333"
+ y="612.41589"
+ rx="22.385239"
+ ry="20.986162" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:42.81540298px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.0703851"
+ x="1340.5292"
+ y="663.73657"
+ id="text6239"><tspan
+ sodipodi:role="line"
+ id="tspan6237"
+ x="1340.5292"
+ y="663.73657"
+ style="fill:#ffffff;stroke-width:1.0703851">+1</tspan></text>
+ </g>
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,752.02604,-322.19558)"
+ id="g6209"
+ inkscape:label="PUMP:-1">
+ <rect
+ ry="20.986162"
+ rx="22.385239"
+ y="612.41589"
+ x="1326.8333"
+ height="79.143768"
+ width="89.036743"
+ id="rect6200"
+ style="fill:#000000;fill-opacity:1;stroke:#ff0000;stroke-width:1.74884677" />
+ <text
+ id="text6204"
+ y="663.73657"
+ x="1340.5292"
+ style="font-style:normal;font-weight:normal;font-size:42.81540298px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.0703851"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;stroke-width:1.0703851"
+ y="663.73657"
+ x="1340.5292"
+ id="tspan6202"
+ sodipodi:role="line">-1</tspan></text>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:59.01374435px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#82ff77;fill-opacity:1;stroke:none;stroke-width:0.3688359px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="689.9715"
+ y="539.24927"
+ id="text995-6"
+ inkscape:label="HMI:Display:Ploc %d (%d) grmbl !@/PUMP0/PRESSURE@/PUMP0/SLOTH"><tspan
+ sodipodi:role="line"
+ id="tspan993-3"
+ x="689.9715"
+ y="539.24927"
+ style="text-align:center;text-anchor:middle;fill:#82ff77;fill-opacity:1;stroke-width:0.3688359px">8888</tspan></text>
+ <text
+ id="text831-1"
+ y="477.76758"
+ x="581.62634"
+ style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="actual_label"><tspan
+ y="477.76758"
+ x="581.62634"
+ id="tspan829-7"
+ sodipodi:role="line"
+ style="stroke-width:0.63690436px">Multiple variables</tspan></text>
+ <text
+ inkscape:label="HMI:Display@paff"
+ id="text1457"
+ y="68.844757"
+ x="750.28473"
+ style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
+ y="68.844757"
+ x="750.28473"
+ id="tspan1455"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ style="stroke-width:4"
+ inkscape:label="HMI:Input@paff"
+ id="g1505"
+ transform="matrix(0.14295135,0,0,0.14295135,589.21833,37.615184)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text1461"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1459"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:4px">8888</tspan></text>
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect1463"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:4"
+ id="g1471"
+ inkscape:label="+"dhu""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1465"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1469"
+ y="111.05016"
+ x="733.58197"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="733.58197"
+ id="tspan1467"
+ sodipodi:role="line">dhu</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g1479"
+ inkscape:label="="plop""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956371"
+ inkscape:transform-center-y="-3.6154501e-05"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1473"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="633.09552"
+ y="111.05016"
+ id="text1477"><tspan
+ sodipodi:role="line"
+ id="tspan1475"
+ x="633.09552"
+ y="111.05016"
+ style="stroke-width:2px">plop</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g1487"
+ inkscape:label="="mhoo""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956364"
+ transform="rotate(-90,746.45698,-44.543641)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1481"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="-5.9989963e-06" />
+ <text
+ id="text1485"
+ y="111.05016"
+ x="537.25018"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="537.25018"
+ id="tspan1483"
+ sodipodi:role="line">mhoo</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g1495"
+ inkscape:label="="yodl""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956365"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-y="-5.5023185e-06"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1489"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <text
+ id="text1493"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan1491"
+ sodipodi:role="line">yodl</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g1503"
+ inkscape:label="="mhe""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956349"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1497"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.3040441e-05" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="842.71497"
+ y="111.05016"
+ id="text1501"><tspan
+ sodipodi:role="line"
+ id="tspan1499"
+ x="842.71497"
+ y="111.05016"
+ style="stroke-width:2px">mhe</tspan></text>
+ </g>
+ </g>
+ <text
+ inkscape:label="actual_label"
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:12.7380867px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="509.67926"
+ y="43.42762"
+ id="text1527"><tspan
+ style="stroke-width:0.63690436px"
+ sodipodi:role="line"
+ id="tspan1525"
+ x="509.67926"
+ y="43.42762">HMI_LOCAL variables</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="750.28473"
+ y="128.84476"
+ id="text1557"
+ inkscape:label="HMI:Display@.piff"><tspan
+ sodipodi:role="line"
+ id="tspan1555"
+ x="750.28473"
+ y="128.84476"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ <g
+ transform="matrix(0.14295135,0,0,0.14295135,589.21833,97.61518)"
+ id="g1605"
+ inkscape:label="HMI:Input@.piff"
+ style="stroke-width:4">
+ <text
+ inkscape:label="value"
+ id="text1561"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:4px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan1559"
+ sodipodi:role="line">8888</tspan></text>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1563"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="+"dhu""
+ id="g1571"
+ style="stroke-width:4">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:transform-center-y="-14.956361"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ id="path1565"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="733.58197"
+ y="111.05016"
+ id="text1569"><tspan
+ sodipodi:role="line"
+ id="tspan1567"
+ x="733.58197"
+ y="111.05016"
+ style="stroke-width:2px">dhu</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="plop""
+ id="g1579"
+ style="stroke-width:4">
+ <path
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1573"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-184.98808"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.6154501e-05"
+ inkscape:transform-center-x="14.956371" />
+ <text
+ id="text1577"
+ y="111.05016"
+ x="633.09552"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="633.09552"
+ id="tspan1575"
+ sodipodi:role="line">plop</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhoo""
+ id="g1587"
+ style="stroke-width:4">
+ <path
+ inkscape:transform-center-y="-5.9989963e-06"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-216.2599"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1581"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="rotate(-90,746.45698,-44.543641)"
+ inkscape:transform-center-x="14.956364" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="537.25018"
+ y="111.05016"
+ id="text1585"><tspan
+ sodipodi:role="line"
+ id="tspan1583"
+ x="537.25018"
+ y="111.05016"
+ style="stroke-width:2px">mhoo</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="yodl""
+ id="g1595"
+ style="stroke-width:4">
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1589"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="105.17262"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:transform-center-y="-5.5023185e-06"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-x="-14.956365" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="925.82605"
+ y="111.05016"
+ id="text1593"><tspan
+ sodipodi:role="line"
+ id="tspan1591"
+ x="925.82605"
+ y="111.05016"
+ style="stroke-width:2px">yodl</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhe""
+ id="g1603"
+ style="stroke-width:4">
+ <path
+ inkscape:transform-center-y="-3.3040441e-05"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="136.44444"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1597"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ inkscape:transform-center-x="-14.956349" />
+ <text
+ id="text1601"
+ y="111.05016"
+ x="842.71497"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="842.71497"
+ id="tspan1599"
+ sodipodi:role="line">mhe</tspan></text>
+ </g>
+ </g>
+ <text
+ id="text1609"
+ y="103.42763"
+ x="509.67926"
+ style="font-style:normal;font-weight:normal;font-size:12.7380867px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="actual_label"><tspan
+ y="103.42763"
+ x="509.67926"
+ sodipodi:role="line"
+ style="stroke-width:0.63690436px"
+ id="tspan1611">PAGE_LOCAL variables</tspan></text>
+ <g
+ inkscape:label="HMI:Meter@level"
+ transform="matrix(2.1611542,0,0,2.1611542,602.76714,428.92423)"
+ id="g709">
+ <path
+ inkscape:label="range"
+ sodipodi:open="true"
+ d="M 63.610123,2.2017068 A 64.411957,64.411957 0 0 1 128.02208,-62.210247"
+ sodipodi:end="4.712389"
+ sodipodi:start="3.1415927"
+ sodipodi:ry="64.411957"
+ sodipodi:rx="64.411957"
+ sodipodi:cy="2.2017097"
+ sodipodi:cx="128.02208"
+ sodipodi:type="arc"
+ id="path689"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff7f2a;stroke-width:26.45833397;stroke-miterlimit:4;stroke-dasharray:2.64583333, 2.64583333;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:label="needle"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path691"
+ d="M 130.96206,4.0725977 79.111776,-41.363223"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:2.96333337;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0, 32.59666667;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-end:url(#marker1971)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="49.132977"
+ y="4.9187088"
+ id="text695"
+ inkscape:label="min"><tspan
+ sodipodi:role="line"
+ id="tspan693"
+ x="49.132977"
+ y="4.9187088"
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
+ <text
+ id="text699"
+ y="-78.144218"
+ x="127.48073"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="max"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="-78.144218"
+ x="127.48073"
+ id="tspan697"
+ sodipodi:role="line">10000</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="113.53007"
+ y="-6.1937833"
+ id="text703"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ x="113.53007"
+ y="-6.1937833"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ id="tspan701">000</tspan></text>
+ <text
+ inkscape:label="unit"
+ id="text707"
+ y="1.1408259"
+ x="124.77896"
+ style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan705"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="1.1408259"
+ x="124.77896"
+ sodipodi:role="line">bar</tspan></text>
+ </g>
+ <g
+ id="g84-3"
+ inkscape:label="HMI:Input@level"
+ transform="matrix(0.35865594,0,0,0.35865594,458.57767,253.49106)">
+ <text
+ inkscape:label="value"
+ id="text5151-6"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan5149-7"
+ sodipodi:role="line">8888</tspan></text>
+ <path
+ transform="scale(1,-1)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path89-5"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="14.956363"
+ inkscape:label="-100" />
+ <path
+ inkscape:label="-10"
+ inkscape:transform-center-y="7.4781812"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path88-3"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="scale(1,-1)" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect85-5"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <path
+ inkscape:label="+100"
+ inkscape:transform-center-y="-14.956361"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path87-6"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path86-2"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-7.4781804"
+ inkscape:label="+10" />
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path91-9"
+ sodipodi:sides="4"
+ sodipodi:cx="80.740723"
+ sodipodi:cy="165.17262"
+ sodipodi:r1="57.015106"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.77793027"
+ sodipodi:arg2="1.5633284"
+ inkscape:flatsided="true"
+ inkscape:rounded="-0.65084865"
+ inkscape:randomized="0"
+ d="M 121.35644,205.1862 C 158.18649,167.80191 3.342862,168.95829 40.72715,205.78834 78.111437,242.61839 76.95506,87.774762 40.125008,125.15905 3.2949549,162.54334 158.13858,161.38696 120.7543,124.55691 83.370008,87.726855 84.526385,242.57048 121.35644,205.1862 Z"
+ inkscape:transform-center-y="-14.956361"
+ inkscape:label="=0" />
+ </g>
+ <text
+ inkscape:label="HMI:Display@paff"
+ id="text1457-1"
+ y="215.65211"
+ x="2632.9148"
+ style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
+ y="215.65211"
+ x="2632.9148"
+ id="tspan1455-2"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ style="stroke-width:2"
+ inkscape:label="HMI:Input@paff"
+ id="g1505-7"
+ transform="matrix(0.28590269,0,0,0.28590269,2430.782,153.19299)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text1461-0"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1459-9"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:2px">8888</tspan></text>
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect1463-3"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:2"
+ id="g1471-6"
+ inkscape:label="+"dhu""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1465-0"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1469-6"
+ y="111.05016"
+ x="733.58197"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="733.58197"
+ id="tspan1467-2"
+ sodipodi:role="line">dhu</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1479-6"
+ inkscape:label="="plop""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956371"
+ inkscape:transform-center-y="-3.6154501e-05"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1473-1"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="633.09552"
+ y="111.05016"
+ id="text1477-8"><tspan
+ sodipodi:role="line"
+ id="tspan1475-7"
+ x="633.09552"
+ y="111.05016"
+ style="stroke-width:1px">plop</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1487-9"
+ inkscape:label="="mhoo""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956364"
+ transform="rotate(-90,746.45698,-44.543641)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1481-2"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="-5.9989963e-06" />
+ <text
+ id="text1485-0"
+ y="111.05016"
+ x="537.25018"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="537.25018"
+ id="tspan1483-2"
+ sodipodi:role="line">mhoo</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1495-3"
+ inkscape:label="="yodl""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956365"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-y="-5.5023185e-06"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1489-7"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <text
+ id="text1493-5"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan1491-9"
+ sodipodi:role="line">yodl</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1503-2"
+ inkscape:label="="mhe""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956349"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1497-2"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.3040441e-05" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="842.71497"
+ y="111.05016"
+ id="text1501-8"><tspan
+ sodipodi:role="line"
+ id="tspan1499-9"
+ x="842.71497"
+ y="111.05016"
+ style="stroke-width:1px">mhe</tspan></text>
+ </g>
+ </g>
+ <text
+ inkscape:label="actual_label"
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="2471.7039"
+ y="164.81787"
+ id="text1527-7"><tspan
+ style="stroke-width:0.63690436px"
+ sodipodi:role="line"
+ id="tspan1525-3"
+ x="2471.7039"
+ y="164.81787">HMI_LOCAL variables</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="2632.9148"
+ y="335.65213"
+ id="text1557-6"
+ inkscape:label="HMI:Display@.piff"><tspan
+ sodipodi:role="line"
+ id="tspan1555-1"
+ x="2632.9148"
+ y="335.65213"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ <g
+ transform="matrix(0.28590269,0,0,0.28590269,2430.782,273.19298)"
+ id="g1605-2"
+ inkscape:label="HMI:Input@.piff"
+ style="stroke-width:2">
+ <text
+ inkscape:label="value"
+ id="text1561-9"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan1559-3"
+ sodipodi:role="line">8888</tspan></text>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1563-1"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="+"dhu""
+ id="g1571-9"
+ style="stroke-width:2">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:transform-center-y="-14.956361"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ id="path1565-4"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="733.58197"
+ y="111.05016"
+ id="text1569-7"><tspan
+ sodipodi:role="line"
+ id="tspan1567-8"
+ x="733.58197"
+ y="111.05016"
+ style="stroke-width:1px">dhu</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="plop""
+ id="g1579-4"
+ style="stroke-width:2">
+ <path
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1573-5"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-184.98808"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.6154501e-05"
+ inkscape:transform-center-x="14.956371" />
+ <text
+ id="text1577-0"
+ y="111.05016"
+ x="633.09552"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="633.09552"
+ id="tspan1575-3"
+ sodipodi:role="line">plop</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhoo""
+ id="g1587-6"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-y="-5.9989963e-06"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-216.2599"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1581-1"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="rotate(-90,746.45698,-44.543641)"
+ inkscape:transform-center-x="14.956364" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="537.25018"
+ y="111.05016"
+ id="text1585-0"><tspan
+ sodipodi:role="line"
+ id="tspan1583-6"
+ x="537.25018"
+ y="111.05016"
+ style="stroke-width:1px">mhoo</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="yodl""
+ id="g1595-3"
+ style="stroke-width:2">
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1589-2"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="105.17262"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:transform-center-y="-5.5023185e-06"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-x="-14.956365" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="925.82605"
+ y="111.05016"
+ id="text1593-0"><tspan
+ sodipodi:role="line"
+ id="tspan1591-6"
+ x="925.82605"
+ y="111.05016"
+ style="stroke-width:1px">yodl</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhe""
+ id="g1603-1"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-y="-3.3040441e-05"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="136.44444"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1597-5"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ inkscape:transform-center-x="-14.956349" />
+ <text
+ id="text1601-5"
+ y="111.05016"
+ x="842.71497"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="842.71497"
+ id="tspan1599-4"
+ sodipodi:role="line">mhe</tspan></text>
+ </g>
+ </g>
+ <text
+ id="text1609-7"
+ y="284.81787"
+ x="2471.7039"
+ style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="actual_label"><tspan
+ y="284.81787"
+ x="2471.7039"
+ sodipodi:role="line"
+ style="stroke-width:0.63690436px"
+ id="tspan1611-6">PAGE_LOCAL variables</tspan></text>
+ <text
+ inkscape:label="HMI:Display@paff"
+ id="text1457-5"
+ y="1208.4301"
+ x="276.83508"
+ style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
+ y="1208.4301"
+ x="276.83508"
+ id="tspan1455-6"
+ sodipodi:role="line">8888</tspan></text>
+ <g
+ style="stroke-width:2"
+ inkscape:label="HMI:Input@paff"
+ id="g1505-9"
+ transform="matrix(0.28590269,0,0,0.28590269,74.702238,1145.9709)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text1461-3"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1459-7"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:2px">8888</tspan></text>
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect1463-4"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:2"
+ id="g1471-5"
+ inkscape:label="+"dhu""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1465-2"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1469-5"
+ y="111.05016"
+ x="733.58197"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="733.58197"
+ id="tspan1467-4"
+ sodipodi:role="line">dhu</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1479-7"
+ inkscape:label="="plop""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956371"
+ inkscape:transform-center-y="-3.6154501e-05"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1473-4"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="633.09552"
+ y="111.05016"
+ id="text1477-4"><tspan
+ sodipodi:role="line"
+ id="tspan1475-3"
+ x="633.09552"
+ y="111.05016"
+ style="stroke-width:1px">plop</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1487-0"
+ inkscape:label="="mhoo""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956364"
+ transform="rotate(-90,746.45698,-44.543641)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1481-7"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="-5.9989963e-06" />
+ <text
+ id="text1485-8"
+ y="111.05016"
+ x="537.25018"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="537.25018"
+ id="tspan1483-6"
+ sodipodi:role="line">mhoo</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1495-8"
+ inkscape:label="="yodl""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956365"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-y="-5.5023185e-06"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1489-8"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <text
+ id="text1493-4"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan1491-3"
+ sodipodi:role="line">yodl</tspan></text>
+ </g>
+ <g
+ style="stroke-width:2"
+ id="g1503-1"
+ inkscape:label="="mhe""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956349"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1497-4"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.3040441e-05" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="842.71497"
+ y="111.05016"
+ id="text1501-9"><tspan
+ sodipodi:role="line"
+ id="tspan1499-2"
+ x="842.71497"
+ y="111.05016"
+ style="stroke-width:1px">mhe</tspan></text>
+ </g>
+ </g>
+ <text
+ inkscape:label="actual_label"
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="115.62414"
+ y="1157.5958"
+ id="text1527-0"><tspan
+ style="stroke-width:0.63690436px"
+ sodipodi:role="line"
+ id="tspan1525-6"
+ x="115.62414"
+ y="1157.5958">HMI_LOCAL variables</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="276.83508"
+ y="1328.4301"
+ id="text1557-8"
+ inkscape:label="HMI:Display@.piff"><tspan
+ sodipodi:role="line"
+ id="tspan1555-9"
+ x="276.83508"
+ y="1328.4301"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ <g
+ transform="matrix(0.28590269,0,0,0.28590269,74.702238,1265.9709)"
+ id="g1605-26"
+ inkscape:label="HMI:Input@.piff"
+ style="stroke-width:2">
+ <text
+ inkscape:label="value"
+ id="text1561-6"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan1559-4"
+ sodipodi:role="line">8888</tspan></text>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1563-9"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="+"dhu""
+ id="g1571-5"
+ style="stroke-width:2">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:transform-center-y="-14.956361"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ id="path1565-0"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="733.58197"
+ y="111.05016"
+ id="text1569-4"><tspan
+ sodipodi:role="line"
+ id="tspan1567-87"
+ x="733.58197"
+ y="111.05016"
+ style="stroke-width:1px">dhu</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="plop""
+ id="g1579-1"
+ style="stroke-width:2">
+ <path
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1573-7"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-184.98808"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.6154501e-05"
+ inkscape:transform-center-x="14.956371" />
+ <text
+ id="text1577-2"
+ y="111.05016"
+ x="633.09552"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="633.09552"
+ id="tspan1575-7"
+ sodipodi:role="line">plop</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhoo""
+ id="g1587-2"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-y="-5.9989963e-06"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-216.2599"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1581-2"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="rotate(-90,746.45698,-44.543641)"
+ inkscape:transform-center-x="14.956364" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="537.25018"
+ y="111.05016"
+ id="text1585-6"><tspan
+ sodipodi:role="line"
+ id="tspan1583-1"
+ x="537.25018"
+ y="111.05016"
+ style="stroke-width:1px">mhoo</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="yodl""
+ id="g1595-0"
+ style="stroke-width:2">
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path1589-6"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="105.17262"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:transform-center-y="-5.5023185e-06"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-x="-14.956365" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="925.82605"
+ y="111.05016"
+ id="text1593-1"><tspan
+ sodipodi:role="line"
+ id="tspan1591-5"
+ x="925.82605"
+ y="111.05016"
+ style="stroke-width:1px">yodl</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhe""
+ id="g1603-9"
+ style="stroke-width:2">
+ <path
+ inkscape:transform-center-y="-3.3040441e-05"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="136.44444"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path1597-4"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ inkscape:transform-center-x="-14.956349" />
+ <text
+ id="text1601-9"
+ y="111.05016"
+ x="842.71497"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:1px"
+ y="111.05016"
+ x="842.71497"
+ id="tspan1599-0"
+ sodipodi:role="line">mhe</tspan></text>
+ </g>
+ </g>
+ <text
+ id="text1609-9"
+ y="1277.5958"
+ x="115.62414"
+ style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="actual_label"><tspan
+ y="1277.5958"
+ x="115.62414"
+ sodipodi:role="line"
+ style="stroke-width:0.63690436px"
+ id="tspan1611-1">PAGE_LOCAL variables</tspan></text>
+ <g
+ id="g2387"
+ inkscape:label="HMI:VarInit:42@level" />
+ <g
+ inkscape:label="HMI:VarInit:"a string"@paff"
+ id="g2389" />
+ <g
+ id="g825"
+ inkscape:label="HMI:VarInit:"a page string"@.piff" />
+ <g
+ inkscape:label="HMI:VarInit:50@.position"
+ id="g906" />
+ <g
+ id="g908"
+ inkscape:label="HMI:VarInit:100@.range" />
+ <g
+ inkscape:label="HMI:VarInit:7@.visibleAlarms"
+ id="g906-3" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g7994"
+ id="use8000"
+ transform="translate(-1380,800)"
+ width="100%"
+ height="100%"
+ inkscape:label="HMI:Page:AlarmPage" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="-738.18359"
+ y="86.260696"
+ id="text2019"><tspan
+ sodipodi:role="line"
+ id="tspan2017"
+ x="-738.18359"
+ y="86.260696"
+ style="fill:#ffffff;stroke-width:1px">Alarm Page</tspan></text>
+ <g
+ id="g1289"
+ inkscape:label="HMI:JsonTable:/alarms@/ALARMNOTIFY@.range@.position@.visibleAlarms@.filter"
+ transform="matrix(0.5,0,0,0.5,-1757.3465,454.4367)">
+ <g
+ id="g5231"
+ inkscape:label="data">
+ <g
+ id="g1384"
+ inkscape:label="[0]"
+ transform="translate(52.326002,240.30067)">
+ <g
+ id="g901"
+ inkscape:label="# commented group"
+ transform="translate(419.716,-441.73566)">
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="m 528.62458,486.07049 23.69122,21.00809"
+ id="path903"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc" />
+ </g>
+ <use
+ x="0"
+ y="0"
+ xlink:href="#use1297"
+ inkscape:transform-center-x="0.11123312"
+ inkscape:transform-center-y="2.2824109"
+ id="use1378"
+ width="100%"
+ height="100%"
+ transform="matrix(0.7609336,0,0,0.7609336,199.15217,164.3798)"
+ inkscape:label=".status onClick[acknowledge]=.alarmid" />
+ <use
+ transform="matrix(1.3019536,0,0,1.3019536,39.582906,238.73392)"
+ x="0"
+ y="0"
+ xlink:href="#use913"
+ id="use966"
+ width="100%"
+ height="100%"
+ inkscape:label=".status textContent=.time"
+ style="stroke-width:1.53615308" />
+ <use
+ inkscape:label=".status textContent=.text"
+ height="100%"
+ width="100%"
+ id="use1832"
+ xlink:href="#use913"
+ y="0"
+ x="0"
+ transform="matrix(2,0,0,2,85.95394,349.02524)" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 972.0318,65.34292 H 2780.6604"
+ id="path2238"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ inkscape:label="# separation line" />
+ </g>
+ <use
+ inkscape:label="[1]"
+ transform="translate(0,-62.914773)"
+ height="100%"
+ width="100%"
+ id="use5200"
+ xlink:href="#g1384"
+ y="0"
+ x="0" />
+ <use
+ inkscape:label="[2]"
+ x="0"
+ y="0"
+ xlink:href="#g1384"
+ id="use5202"
+ width="100%"
+ height="100%"
+ transform="translate(0,-125.82955)" />
+ <use
+ inkscape:label="[3]"
+ transform="translate(0,-188.74432)"
+ height="100%"
+ width="100%"
+ id="use5204"
+ xlink:href="#g1384"
+ y="0"
+ x="0" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g1384"
+ id="use2176"
+ width="100%"
+ height="100%"
+ transform="translate(0,-251.65909)"
+ inkscape:label="[4]" />
+ <use
+ inkscape:label="[5]"
+ transform="translate(0,-314.57387)"
+ height="100%"
+ width="100%"
+ id="use2178"
+ xlink:href="#g1384"
+ y="0"
+ x="0" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g1384"
+ id="use2180"
+ width="100%"
+ height="100%"
+ transform="translate(0,-377.48864)"
+ inkscape:label="[6]" />
+ </g>
+ </g>
+ <g
+ id="g1332"
+ inkscape:label="polygons"
+ transform="translate(-1556.6506,114.93627)">
+ <path
+ inkscape:transform-center-y="2.9995242"
+ inkscape:transform-center-x="0.14620371"
+ d="m 1081.9632,-246.81598 -27.9274,5.51725 -27.9273,5.51724 9.1856,-26.94439 9.1856,-26.94439 18.7417,21.42715 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.3757507"
+ sodipodi:arg1="0.32855317"
+ sodipodi:r2="16.43548"
+ sodipodi:r1="32.87096"
+ sodipodi:cy="-257.42258"
+ sodipodi:cx="1050.8505"
+ sodipodi:sides="3"
+ id="path1298"
+ style="fill:#8fbc8f;fill-opacity:1;stroke:#ff0000"
+ sodipodi:type="star"
+ inkscape:label="three" />
+ <path
+ sodipodi:type="star"
+ style="fill:#ff8c00;fill-opacity:1;stroke:#ff0000"
+ id="path1308"
+ sodipodi:sides="4"
+ sodipodi:cx="1110.8505"
+ sodipodi:cy="-257.42258"
+ sodipodi:r1="32.87096"
+ sodipodi:r2="16.43548"
+ sodipodi:arg1="0.32855317"
+ sodipodi:arg2="1.1139513"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 1141.9632,-246.81598 -23.8627,4.1434 -17.8566,16.3627 -4.1434,-23.8627 -16.3627,-17.8566 23.8627,-4.1434 17.8566,-16.3627 4.1434,23.8627 z"
+ inkscape:transform-center-x="0.14620371"
+ inkscape:transform-center-y="2.9995242"
+ inkscape:label="four" />
+ <path
+ inkscape:transform-center-y="2.9995242"
+ inkscape:transform-center-x="0.14620371"
+ d="m 1201.9632,-246.81598 -21.6446,2.82766 -9.9413,19.4333 -9.3778,-19.7114 -21.5541,-3.44949 15.8487,-15.00997 -3.3799,-21.5652 19.1728,10.43473 19.4653,-9.87854 -3.9993,21.45898 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="0.9568717"
+ sodipodi:arg1="0.32855317"
+ sodipodi:r2="16.43548"
+ sodipodi:r1="32.87096"
+ sodipodi:cy="-257.42258"
+ sodipodi:cx="1170.8505"
+ sodipodi:sides="5"
+ id="path1310"
+ style="fill:#bc8f8f;fill-opacity:1;stroke:#ff0000"
+ sodipodi:type="star"
+ inkscape:label="five" />
+ <path
+ sodipodi:type="star"
+ style="fill:#f0f8ff;fill-opacity:1;stroke:#ff0000"
+ id="path1312"
+ sodipodi:sides="6"
+ sodipodi:cx="1230.8505"
+ sodipodi:cy="-257.42258"
+ sodipodi:r1="32.87096"
+ sodipodi:r2="16.43548"
+ sodipodi:arg1="0.32855317"
+ sodipodi:arg2="0.85215195"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 1261.9632,-246.81598 -20.2922,1.76437 -4.4498,19.87672 -11.674,-16.69134 -19.4387,6.08474 8.6181,-18.45571 -14.9888,-13.79198 20.2921,-1.76436 4.4498,-19.87673 11.6741,16.69134 19.4386,-6.08473 -8.6181,18.4557 z"
+ inkscape:transform-center-x="0.14620371"
+ inkscape:transform-center-y="2.9995242"
+ inkscape:label="six" />
+ </g>
+ <g
+ inkscape:label="HMI:List"
+ id="g1311"
+ transform="translate(-1396.6506,94.93627)">
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path1298"
+ inkscape:transform-center-x="0.14620371"
+ inkscape:transform-center-y="2.9995242"
+ id="use1293"
+ width="100%"
+ height="100%"
+ transform="translate(-69.76703,100)"
+ style="display:inline"
+ inkscape:label="ack" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path1308"
+ inkscape:transform-center-x="0.14620371"
+ inkscape:transform-center-y="2.9995242"
+ id="use1295"
+ width="100%"
+ height="100%"
+ transform="translate(-126.48474,100)"
+ inkscape:label="alarm" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path1310"
+ inkscape:transform-center-x="0.14620371"
+ inkscape:transform-center-y="2.9995242"
+ id="use1297"
+ width="100%"
+ height="100%"
+ transform="translate(-186.33351,100)"
+ inkscape:label="active" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path1312"
+ inkscape:transform-center-x="0.14620371"
+ inkscape:transform-center-y="2.9995242"
+ id="use1299"
+ width="100%"
+ height="100%"
+ transform="translate(-246.4848,100)"
+ inkscape:label="disabled" />
+ </g>
+ <g
+ transform="matrix(0.33436432,0,0,0.33436432,-584.21063,278.8185)"
+ inkscape:label="HMI:Input@/ALARMNOTIFY"
+ id="g5222"
+ style="stroke-width:0.75594342">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text5208"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan5206"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:0.75594342px">8888</tspan></text>
+ <path
+ transform="scale(1,-1)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path5212"
+ sodipodi:sides="3"
+ sodipodi:cx="608.70374"
+ sodipodi:cy="-209.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 660.51409,-179.34718 -103.62071,0 51.81036,-89.73817 z"
+ inkscape:transform-center-y="14.956362"
+ inkscape:label="-1" />
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect5214"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:label="+1"
+ inkscape:transform-center-y="-14.95636"
+ d="m 660.51409,142.08535 -103.62071,0 51.81036,-89.738163 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="112.17263"
+ sodipodi:cx="608.70374"
+ sodipodi:sides="3"
+ id="path5218"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ </g>
+ <g
+ id="g1766"
+ inkscape:label="HMI:Slider@.position@.range@.alarmVisible">
+ <g
+ transform="matrix(0.620824,0,0,0.5,-963.61047,260.72872)"
+ id="g1752"
+ inkscape:label="HMI:Input@.position">
+ <path
+ inkscape:label="+1"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.55573034px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 1175.2115,143.25263 34.1278,56.73732 h -68.2556 z"
+ id="path1266"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:label="-1"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path1268"
+ d="m 1175.2115,851.99803 34.1278,-54.90445 h -68.2556 z"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.51411843px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ </g>
+ <path
+ style="opacity:0;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.00058591px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M -234.01102,648.56465 V 371.89445"
+ id="path1772"
+ inkscape:connector-curvature="0"
+ inkscape:label="range" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.30952382;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.03627348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1264-3"
+ width="42.374725"
+ height="276.64423"
+ x="-255.19838"
+ y="371.91068"
+ rx="7.6034913"
+ ry="6.8822322"
+ inkscape:label="background" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.11429262px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect1264"
+ width="42.374725"
+ height="82.841492"
+ x="-255.19838"
+ y="565.71338"
+ rx="7.6034913"
+ ry="7"
+ inkscape:label="handle" />
+ </g>
+ <g
+ id="g893"
+ inkscape:label="textstyles"
+ transform="translate(-1566.6506,56.936266)">
+ <text
+ inkscape:label="red"
+ id="text1382-7"
+ y="-171.54395"
+ x="1298.9102"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ y="-171.54395"
+ x="1298.9102"
+ id="tspan1380-5"
+ sodipodi:role="line"
+ style="stroke-width:0.5">value</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="1298.9102"
+ y="-191.54395"
+ id="text875"
+ inkscape:label="black"><tspan
+ style="fill:#000000;stroke-width:0.5"
+ sodipodi:role="line"
+ id="tspan873"
+ x="1298.9102"
+ y="-191.54395">value</tspan></text>
+ <text
+ inkscape:label="green"
+ id="text879"
+ y="-211.54395"
+ x="1298.9102"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#00ff00;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ y="-211.54395"
+ x="1298.9102"
+ id="tspan877"
+ sodipodi:role="line"
+ style="fill:#00ff00;stroke-width:0.5">value</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="1298.9102"
+ y="-231.54395"
+ id="text883"
+ inkscape:label="gray"><tspan
+ style="fill:#999999;stroke-width:0.5"
+ sodipodi:role="line"
+ id="tspan881"
+ x="1298.9102"
+ y="-231.54395">value</tspan></text>
+ </g>
+ <g
+ id="g907"
+ inkscape:label="HMI:TextStyleList"
+ transform="translate(-990.65059,102.93627)">
+ <use
+ x="0"
+ y="0"
+ xlink:href="#text879"
+ id="use913"
+ width="100%"
+ height="100%"
+ transform="translate(-573,60.999998)"
+ inkscape:label="active" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#text875"
+ id="use911"
+ width="100%"
+ height="100%"
+ transform="translate(-573,40.999998)"
+ inkscape:label="ack" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#text1382-7"
+ id="use909"
+ width="100%"
+ height="100%"
+ transform="translate(-573,20.999998)"
+ inkscape:label="alarm" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#text883"
+ id="use915"
+ width="100%"
+ height="100%"
+ transform="translate(-573,80.999998)"
+ inkscape:label="disabled" />
+ </g>
+ <g
+ transform="matrix(0.33436432,0,0,0.33436432,-1048.7703,278.8185)"
+ inkscape:label="HMI:Input@.range"
+ id="g5222-3"
+ style="stroke-width:0.75594342">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text5208-6"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan5206-7"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:0.75594342px">8888</tspan></text>
+ <path
+ transform="scale(1,-1)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path5212-5"
+ sodipodi:sides="3"
+ sodipodi:cx="620.66675"
+ sodipodi:cy="-209.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 672.4771,-179.34718 -103.62071,0 51.81036,-89.73817 z"
+ inkscape:transform-center-y="14.956362"
+ inkscape:label="-1" />
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect5214-3"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:label="+1"
+ inkscape:transform-center-y="-14.95636"
+ d="m 672.4771,142.08535 -103.62071,0 51.81036,-89.738163 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="112.17263"
+ sodipodi:cx="620.66675"
+ sodipodi:sides="3"
+ id="path5218-5"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ </g>
+ <g
+ transform="matrix(0.33436432,0,0,0.33436432,-816.49047,278.8185)"
+ inkscape:label="HMI:Input@.position"
+ id="g5222-6"
+ style="stroke-width:0.75594342">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text5208-2"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan5206-9"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:0.75594342px">8888</tspan></text>
+ <path
+ transform="scale(1,-1)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path5212-1"
+ sodipodi:sides="3"
+ sodipodi:cx="608.70374"
+ sodipodi:cy="-209.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 660.51409,-179.34718 -103.62071,0 51.81036,-89.73817 z"
+ inkscape:transform-center-y="14.956362"
+ inkscape:label="-1" />
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect5214-2"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:label="+1"
+ inkscape:transform-center-y="-14.95636"
+ d="m 660.51409,142.08535 -103.62071,0 51.81036,-89.738163 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="112.17263"
+ sodipodi:cx="608.70374"
+ sodipodi:sides="3"
+ id="path5218-7"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="-935.5838"
+ y="291.8042"
+ id="text887"><tspan
+ sodipodi:role="line"
+ id="tspan885"
+ x="-935.5838"
+ y="291.8042"
+ style="fill:#ffffff;stroke-width:1px">range</tspan></text>
+ <text
+ id="text891"
+ y="291.8042"
+ x="-702.87115"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;stroke-width:1px"
+ y="291.8042"
+ x="-702.87115"
+ id="tspan889"
+ sodipodi:role="line">position</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="-471.33417"
+ y="291.8042"
+ id="text895"><tspan
+ sodipodi:role="line"
+ id="tspan893"
+ x="-471.33417"
+ y="291.8042"
+ style="fill:#ffffff;stroke-width:1px">notify</tspan></text>
+ <g
+ style="stroke-width:2"
+ inkscape:label="HMI:Input@/ALARMTEXT"
+ id="g1442-3"
+ transform="matrix(0.5,0,0,0.5,-915.0529,113.05833)">
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="77.265099"
+ x="-648.04266"
+ height="179.83517"
+ width="1195.5988"
+ id="rect1400-5"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cacaca;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ ry="36.786537" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#0e0e0e;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="545.95312"
+ y="218.24219"
+ id="text1398-6"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1396-7"
+ x="545.95312"
+ y="218.24219"
+ style="text-align:end;text-anchor:end;fill:#0e0e0e;fill-opacity:1;stroke-width:2px">8888</tspan></text>
+ </g>
+ <g
+ style="stroke-width:1.04184687"
+ inkscape:label="HMI:Input@/SENDALARM"
+ id="g953"
+ transform="translate(-1386.3329,-450.57041)">
+ <g
+ id="g1839"
+ inkscape:label="+1">
+ <g
+ id="g945"
+ inkscape:label="bg"
+ style="stroke-width:1.04184687">
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5.20923424;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect943"
+ width="245.44583"
+ height="95.723877"
+ x="971.96545"
+ y="594.82263"
+ ry="23.177595"
+ inkscape:label="button"
+ rx="26.820074" />
+ </g>
+ <g
+ id="g951"
+ inkscape:label="text"
+ style="stroke-width:1.04184687">
+ <text
+ inkscape:label="setting_jmp"
+ id="text949"
+ y="656.98151"
+ x="1090.7626"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.04184675px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04184675px"
+ y="656.98151"
+ x="1090.7626"
+ id="tspan947"
+ sodipodi:role="line">trigger</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ style="stroke-width:2"
+ inkscape:label="HMI:Input@/ALARMSTATUS"
+ id="g1887"
+ transform="matrix(0.28590269,0,0,0.28590269,-631.94615,129.07897)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:148.39013672px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.99999988px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="329.13501"
+ y="214.01605"
+ id="text1843"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan1841"
+ x="329.13501"
+ y="214.01605"
+ style="text-align:center;text-anchor:middle;stroke-width:1.99999988px">8888</tspan></text>
+ <g
+ style="stroke-width:1.09375393"
+ id="g1853"
+ inkscape:label="="ack""
+ transform="matrix(1.8285648,0,0,1.8285648,-936.17681,115.40643)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1847"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1851"
+ y="112.62867"
+ x="738.57678"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.54687697px"
+ y="112.62867"
+ x="738.57678"
+ id="tspan1849"
+ sodipodi:role="line">ack</tspan></text>
+ </g>
+ <g
+ style="stroke-width:1.09375393"
+ id="g1861"
+ inkscape:label="="disabled""
+ transform="matrix(1.8285648,0,0,1.8285648,-1012.4359,109.57379)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1847-7"
+ d="m 738.52607,148.37593 -80.6293,0.60214 -0.6021,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="656.177"
+ y="115.81841"
+ id="text1859"><tspan
+ sodipodi:role="line"
+ id="tspan1857"
+ x="656.177"
+ y="115.81841"
+ style="stroke-width:0.54687697px">disabled</tspan></text>
+ </g>
+ <g
+ style="stroke-width:1.09375393"
+ id="g1869"
+ inkscape:label="="active""
+ transform="matrix(1.8285648,0,0,1.8285648,-998.18055,84.666267)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1847-5"
+ d="m 630.35651,161.99728 -80.6293,0.60214 -0.6021,-80.629287 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1867"
+ y="129.43976"
+ x="559.26227"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.54687697px"
+ y="129.43976"
+ x="559.26227"
+ id="tspan1865"
+ sodipodi:role="line">active</tspan></text>
+ </g>
+ <g
+ style="stroke-width:1.09375393"
+ id="g1877"
+ inkscape:label="="alarm""
+ transform="matrix(1.8285648,0,0,1.8285648,-1114.212,118.29284)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path1847-3"
+ d="m 994.91832,143.60768 -80.62931,0.60214 -0.6021,-80.629285 80.62931,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text1875"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.54687697px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan1873"
+ sodipodi:role="line">alarm</tspan></text>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ x="-926.47461"
+ y="134.36742"
+ id="text2019-9"><tspan
+ sodipodi:role="line"
+ id="tspan2017-2"
+ x="-926.47461"
+ y="134.36742"
+ style="fill:#ffffff;stroke-width:1px">Alarm Text</tspan></text>
+ <text
+ id="text2174"
+ y="134.36742"
+ x="-546.47461"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;stroke-width:1px"
+ y="134.36742"
+ x="-546.47461"
+ id="tspan2172"
+ sodipodi:role="line">Status</tspan></text>
+ <g
+ transform="matrix(0.57180538,0,0,0.57180538,326.35945,-231.48695)"
+ inkscape:label="HMI:Jump:AlarmPage"
+ id="g2198">
+ <g
+ inkscape:label="button"
+ id="g2190">
+ <rect
+ inkscape:label="button"
+ ry="35.579063"
+ y="594.82263"
+ x="971.96545"
+ height="95.723877"
+ width="245.44583"
+ id="rect2188"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ rx="35.579063" />
+ </g>
+ <g
+ inkscape:label="text"
+ id="g2196">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="656.98151"
+ id="text2194"
+ inkscape:label="setting_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan2192"
+ x="1090.7626"
+ y="656.98151"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Alarms</tspan></text>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="628.18188"
+ y="242.50345"
+ id="text889"
+ inkscape:label="HMI:Display@/PUMP0/FLOATING"><tspan
+ sodipodi:role="line"
+ id="tspan887"
+ x="628.18188"
+ y="242.50345"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ <g
+ style="stroke-width:0.75594342"
+ id="g900"
+ inkscape:label="HMI:Input@.filter"
+ transform="matrix(0.33436432,0,0,0.33436432,-1288.7703,278.8185)">
+ <text
+ inkscape:label="value"
+ id="text892"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.75594342px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan890"
+ sodipodi:role="line">8888</tspan></text>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect896"
+ width="615.05096"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ </g>
+ <text
+ id="text904"
+ y="291.8042"
+ x="-1175.5837"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
+ xml:space="preserve"><tspan
+ style="fill:#ffffff;stroke-width:1px"
+ y="291.8042"
+ x="-1175.5837"
+ id="tspan902"
+ sodipodi:role="line">filter</tspan></text>
+ <g
+ id="g909"
+ inkscape:label="HMI:VarInit:""@.filter" />
+ <g
+ transform="matrix(0.14295135,0,0,0.14295135,449.21833,37.615184)"
+ id="g4646"
+ inkscape:label="HMI:Input@paff"
+ style="stroke-width:4">
+ <text
+ inkscape:label="value"
+ id="text4602"
+ y="218.24219"
+ x="136.32812"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:4px"
+ y="218.24219"
+ x="136.32812"
+ id="tspan4600"
+ sodipodi:role="line">8888</tspan></text>
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect4604"
+ width="407.7037"
+ height="128"
+ x="139.85185"
+ y="95.40741"
+ onclick=""
+ inkscape:label="edit" />
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="+"dhu""
+ id="g4612"
+ style="stroke-width:4">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ inkscape:transform-center-y="-14.956361"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ id="path4606"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="733.58197"
+ y="111.05016"
+ id="text4610"><tspan
+ sodipodi:role="line"
+ id="tspan4608"
+ x="733.58197"
+ y="111.05016"
+ style="stroke-width:2px">dhu</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="plop""
+ id="g4620"
+ style="stroke-width:4">
+ <path
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path4614"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-184.98808"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.6154501e-05"
+ inkscape:transform-center-x="14.956371" />
+ <text
+ id="text4618"
+ y="111.05016"
+ x="633.09552"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="633.09552"
+ id="tspan4616"
+ sodipodi:role="line">plop</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhoo""
+ id="g4628"
+ style="stroke-width:4">
+ <path
+ inkscape:transform-center-y="-5.9989963e-06"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="-216.2599"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path4622"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="rotate(-90,746.45698,-44.543641)"
+ inkscape:transform-center-x="14.956364" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="537.25018"
+ y="111.05016"
+ id="text4626"><tspan
+ sodipodi:role="line"
+ id="tspan4624"
+ x="537.25018"
+ y="111.05016"
+ style="stroke-width:2px">mhoo</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="yodl""
+ id="g4636"
+ style="stroke-width:4">
+ <path
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path4630"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="105.17262"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:transform-center-y="-5.5023185e-06"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-x="-14.956365" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="925.82605"
+ y="111.05016"
+ id="text4634"><tspan
+ sodipodi:role="line"
+ id="tspan4632"
+ x="925.82605"
+ y="111.05016"
+ style="stroke-width:2px">yodl</tspan></text>
+ </g>
+ <g
+ transform="translate(-416.52022,170.47452)"
+ inkscape:label="="mhe""
+ id="g4644"
+ style="stroke-width:4">
+ <path
+ inkscape:transform-center-y="-3.3040441e-05"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="136.44444"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path4638"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ inkscape:transform-center-x="-14.956349" />
+ <text
+ id="text4642"
+ y="111.05016"
+ x="842.71497"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="842.71497"
+ id="tspan4640"
+ sodipodi:role="line">mhe</tspan></text>
+ </g>
+ </g>
+ <g
+ style="stroke-width:4"
+ inkscape:label="HMI:Input@.piff"
+ id="g4694"
+ transform="matrix(0.14295135,0,0,0.14295135,449.21833,97.61518)">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="136.32812"
+ y="218.24219"
+ id="text4650"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan4648"
+ x="136.32812"
+ y="218.24219"
+ style="stroke-width:4px">8888</tspan></text>
+ <rect
+ inkscape:label="edit"
+ onclick=""
+ y="95.40741"
+ x="139.85185"
+ height="128"
+ width="407.7037"
+ id="rect4652"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <g
+ style="stroke-width:4"
+ id="g4660"
+ inkscape:label="+"dhu""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4654"
+ d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
+ inkscape:transform-center-y="-14.956361"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <text
+ id="text4658"
+ y="111.05016"
+ x="733.58197"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="733.58197"
+ id="tspan4656"
+ sodipodi:role="line">dhu</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g4668"
+ inkscape:label="="plop""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956371"
+ inkscape:transform-center-y="-3.6154501e-05"
+ d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="14.956361"
+ sodipodi:r1="29.912722"
+ sodipodi:cy="-184.98808"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path4662"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star"
+ transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="633.09552"
+ y="111.05016"
+ id="text4666"><tspan
+ sodipodi:role="line"
+ id="tspan4664"
+ x="633.09552"
+ y="111.05016"
+ style="stroke-width:2px">plop</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g4676"
+ inkscape:label="="mhoo""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="14.956364"
+ transform="rotate(-90,746.45698,-44.543641)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path4670"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="-216.2599"
+ sodipodi:r1="59.825443"
+ sodipodi:r2="29.912722"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
+ inkscape:transform-center-y="-5.9989963e-06" />
+ <text
+ id="text4674"
+ y="111.05016"
+ x="537.25018"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="537.25018"
+ id="tspan4672"
+ sodipodi:role="line">mhoo</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g4684"
+ inkscape:label="="yodl""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956365"
+ transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
+ inkscape:transform-center-y="-5.5023185e-06"
+ d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="true"
+ sodipodi:arg2="1.5707963"
+ sodipodi:arg1="0.52359878"
+ sodipodi:r2="29.912722"
+ sodipodi:r1="59.825443"
+ sodipodi:cy="105.17262"
+ sodipodi:cx="596.74072"
+ sodipodi:sides="3"
+ id="path4678"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ sodipodi:type="star" />
+ <text
+ id="text4682"
+ y="111.05016"
+ x="925.82605"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="stroke-width:2px"
+ y="111.05016"
+ x="925.82605"
+ id="tspan4680"
+ sodipodi:role="line">yodl</tspan></text>
+ </g>
+ <g
+ style="stroke-width:4"
+ id="g4692"
+ inkscape:label="="mhe""
+ transform="translate(-416.52022,170.47452)">
+ <path
+ inkscape:transform-center-x="-14.956349"
+ transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
+ sodipodi:type="star"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path4686"
+ sodipodi:sides="3"
+ sodipodi:cx="596.74072"
+ sodipodi:cy="136.44444"
+ sodipodi:r1="29.912722"
+ sodipodi:r2="14.956361"
+ sodipodi:arg1="0.52359878"
+ sodipodi:arg2="1.5707963"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
+ inkscape:transform-center-y="-3.3040441e-05" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="842.71497"
+ y="111.05016"
+ id="text4690"><tspan
+ sodipodi:role="line"
+ id="tspan4688"
+ x="842.71497"
+ y="111.05016"
+ style="stroke-width:2px">mhe</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g7994"
+ inkscape:label="Gray Page Template">
+ <rect
+ y="-800"
+ x="0"
+ height="720"
+ width="1280"
+ id="rect4270"
+ style="color:#000000;fill:#4d4d4d" />
+ <g
+ id="g4282"
+ inkscape:label="HMI:Jump:Home"
+ transform="translate(-10.6526,-2134.1633)">
+ <g
+ id="g4274"
+ inkscape:label="button">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
+ id="path4272"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cssssccc" />
+ </g>
+ <g
+ id="g4280"
+ inkscape:label="text">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1090.7626"
+ y="1436.9814"
+ id="text4278"
+ inkscape:label="home_jmp"><tspan
+ sodipodi:role="line"
+ id="tspan4276"
+ x="1090.7626"
+ y="1436.9814"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
+ </g>
+ </g>
+ </g>
+ <g
+ id="g3435"
+ inkscape:label="Meter Page"
+ transform="translate(2680,780)">
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g9808"
+ id="use9820"
+ width="100%"
+ height="100%"
+ transform="translate(0,-780)"
+ inkscape:label="HMI:Page:Meters" />
+ <g
+ id="g7998"
+ transform="matrix(2.1611542,0,0,2.1611542,1429.2874,1051.3886)"
+ inkscape:label="HMI:Meter@/PUMP0/SLOTH">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3ee800;stroke-width:1.38814712;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#marker19820);marker-end:url(#marker25117);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path7978"
+ sodipodi:type="arc"
+ sodipodi:cx="128.02208"
+ sodipodi:cy="2.2017097"
+ sodipodi:rx="64.411957"
+ sodipodi:ry="64.411957"
+ sodipodi:start="3.1415927"
+ sodipodi:end="4.712389"
+ d="M 63.610123,2.2017068 A 64.411957,64.411957 0 0 1 128.02208,-62.210247"
+ sodipodi:open="true"
+ inkscape:label="range" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:0.92543143;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-start:url(#DotM);marker-end:url(#marker26099)"
+ d="M 130.96206,4.0725977 79.111776,-41.363223"
+ id="path7980"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ inkscape:label="needle" />
+ <text
+ inkscape:label="min"
+ id="text7984"
+ y="4.9187088"
+ x="49.132977"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px"
+ y="4.9187088"
+ x="49.132977"
+ id="tspan7982"
+ sodipodi:role="line">0</tspan></text>
+ <text
+ inkscape:label="max"
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="127.48073"
+ y="-68.889908"
+ id="text7988"><tspan
+ sodipodi:role="line"
+ id="tspan7986"
+ x="127.48073"
+ y="-68.889908"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px">10000</tspan></text>
+ <text
+ inkscape:label="value"
+ id="text7992"
+ y="-52.465355"
+ x="67.258514"
+ style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ id="tspan7990"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="-52.465355"
+ x="67.258514"
+ sodipodi:role="line">[value]</tspan></text>
+ </g>
+ <g
+ inkscape:label="HMI:Meter@/PUMP0/SLOTH"
+ transform="matrix(4.1320069,0,0,4.1320069,1099.2525,1427.5173)"
+ id="g8050">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3ee800;stroke-width:0.72603947;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#marker28436);marker-end:url(#marker28710);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="M 113.38908,2.2017068 V -62.210247"
+ id="path8030"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ inkscape:label="range" />
+ <path
+ inkscape:label="needle"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path8032"
+ d="M 113.38908,4.0725977 V -42.849195"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:0.48402631;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:15.49905491;stroke-opacity:1;marker-start:url(#marker27514);marker-end:url(#marker27764)" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="115.07632"
+ y="11.762599"
+ id="text8036"
+ inkscape:label="min"><tspan
+ sodipodi:role="line"
+ id="tspan8034"
+ x="115.07632"
+ y="11.762599"
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
+ <text
+ id="text8040"
+ y="-64.195457"
+ x="113.27539"
+ style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"
+ inkscape:label="max"><tspan
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ y="-64.195457"
+ x="113.27539"
+ id="tspan8038"
+ sodipodi:role="line">10000</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.13229166px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="128.20073"
+ y="-42.97702"
+ id="text8044"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ x="128.20073"
+ y="-42.97702"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.13229166px"
+ id="tspan8042">[value]</tspan></text>
+ </g>
+ <g
+ transform="translate(228.04545,983.55108)"
+ inkscape:label="HMI:Meter:20:80@/PUMP0/SLOTH"
+ id="g12171"
+ style="stroke-width:0.19249482">
+ <text
+ inkscape:label="value"
+ clip-path="none"
+ style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Univers LT CYR 55';-inkscape-font-specification:UniversLTCYR-55Roman;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#4f4c4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06790788"
+ id="text30068"
+ x="2087.8633"
+ y="189.43953">
+ <tspan
+ x="2087.8633"
+ sodipodi:role="line"
+ id="tspan30066"
+ style="font-size:10.66666698px;text-align:center;text-anchor:middle;stroke-width:0.06790788"
+ y="189.43953">5,150</tspan>
+ </text>
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g817"
+ id="use1727-4"
+ width="100%"
+ height="100%"
+ transform="translate(127.87468,-983.55108)"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#00adef;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ inkscape:label="meter_template"
+ transform="matrix(10.390029,0,0,10.38975,-19578.073,-843.55094)"
+ id="g817"
+ style="stroke-width:0.19249482">
+ <path
+ inkscape:connector-curvature="0"
+ id="path12105"
+ d="M 2072.956,223.66129 V 195.4613"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#7b7979;stroke-width:1.92494833;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:label="outline"
+ sodipodi:nodetypes="cc" />
+ <path
+ style="fill:none;stroke:#e9e9e9;stroke-width:1.53995872;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="M 2072.956,223.66129 V 195.4613"
+ id="path12107"
+ inkscape:connector-curvature="0"
+ inkscape:label="range"
+ sodipodi:nodetypes="cc" />
+ <path
+ style="stroke-width:1.53995872;stroke-miterlimit:4;stroke-dasharray:none"
+ inkscape:label="needle"
+ d="M 2072.956,223.66129 V 209.9227"
+ id="path12109"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc" />
+ </g>
+ <g
+ transform="translate(138.03504,983.55108)"
+ style="stroke-width:0.19249482"
+ id="g8181"
+ inkscape:label="HMI:Meter:20:80@/PUMP0/SLOTH">
+ <text
+ y="189.43953"
+ x="2087.8633"
+ id="text8177"
+ style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Univers LT CYR 55';-inkscape-font-specification:UniversLTCYR-55Roman;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#4f4c4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06790788"
+ clip-path="none"
+ inkscape:label="value">
+ <tspan
+ y="189.43953"
+ style="font-size:10.66666698px;text-align:center;text-anchor:middle;stroke-width:0.06790788"
+ id="tspan8175"
+ sodipodi:role="line"
+ x="2087.8633">5,150</tspan>
+ </text>
+ <use
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#efd200;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ transform="translate(127.87468,-983.55108)"
+ height="100%"
+ width="100%"
+ id="use8179"
+ xlink:href="#g817"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="translate(183.04025,983.55108)"
+ inkscape:label="HMI:Meter:20:80@/PUMP0/SLOTH"
+ id="g8189"
+ style="stroke-width:0.19249482">
+ <text
+ inkscape:label="value"
+ clip-path="none"
+ style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Univers LT CYR 55';-inkscape-font-specification:UniversLTCYR-55Roman;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#4f4c4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06790788"
+ id="text8185"
+ x="2087.8633"
+ y="189.43953">
+ <tspan
+ x="2087.8633"
+ sodipodi:role="line"
+ id="tspan8183"
+ style="font-size:10.66666698px;text-align:center;text-anchor:middle;stroke-width:0.06790788"
+ y="189.43953">5,150</tspan>
+ </text>
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g817"
+ id="use8187"
+ width="100%"
+ height="100%"
+ transform="translate(127.87468,-983.55108)"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ef0000;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ <g
+ transform="translate(273.05066,983.55108)"
+ style="stroke-width:0.19249482"
+ id="g8197"
+ inkscape:label="HMI:Meter:20:80@/PUMP0/SLOTH">
+ <text
+ y="189.43953"
+ x="2087.8633"
+ id="text8193"
+ style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Univers LT CYR 55';-inkscape-font-specification:UniversLTCYR-55Roman;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#4f4c4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06790788"
+ clip-path="none"
+ inkscape:label="value">
+ <tspan
+ y="189.43953"
+ style="font-size:10.66666698px;text-align:center;text-anchor:middle;stroke-width:0.06790788"
+ id="tspan8191"
+ sodipodi:role="line"
+ x="2087.8633">5,150</tspan>
+ </text>
+ <use
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.192;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ transform="translate(127.87468,-983.55108)"
+ height="100%"
+ width="100%"
+ id="use8195"
+ xlink:href="#g817"
+ y="0"
+ x="0" />
+ </g>
+ <text
+ id="text8201"
+ y="830.39062"
+ x="1512.8077"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="830.39062"
+ x="1512.8077"
+ id="tspan8199"
+ sodipodi:role="line">HMI:Meter:[min:max]@path</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ id="path8203"
+ d="m 2012.6196,1364.7036 h 150.322"
+ style="fill:none;stroke:#000000;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)" />
+ <text
+ id="text8753"
+ y="1309.4535"
+ x="2020.9539"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ id="tspan8755"
+ y="1309.4535"
+ x="2020.9539"
+ sodipodi:role="line">clone +</tspan><tspan
+ style="stroke-width:0.5"
+ id="tspan8765"
+ y="1334.4535"
+ x="2020.9539"
+ sodipodi:role="line">stroke color</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="1764.9539"
+ y="1203.4535"
+ id="text11347"><tspan
+ id="tspan11354"
+ sodipodi:role="line"
+ x="1764.9539"
+ y="1203.4535"
+ style="font-size:16px;stroke-width:0.5">template </tspan><tspan
+ id="tspan26649"
+ sodipodi:role="line"
+ x="1764.9539"
+ y="1223.4535"
+ style="font-size:16px;stroke-width:0.5">(usually out of page)</tspan><tspan
+ id="tspan11356"
+ sodipodi:role="line"
+ x="1764.9539"
+ y="1243.4535"
+ style="font-size:16px;stroke-width:0.5">needle has undefined</tspan><tspan
+ id="tspan11358"
+ sodipodi:role="line"
+ x="1764.9539"
+ y="1263.4535"
+ style="font-size:16px;stroke-width:0.5">stroke paint</tspan></text>
+ <g
+ inkscape:label="VoltmeterAndAmmeter"
+ id="g18566"
+ transform="matrix(0.1142708,0,0,0.1142708,2084.8332,915.30993)">
+ <g
+ id="g24836">
+ <rect
+ x="815.72998"
+ y="-352.34"
+ width="2055.1001"
+ height="2055.1001"
+ ry="129.3"
+ rx="129.3"
+ style="fill:#000000"
+ id="rect5399" />
+ <rect
+ x="862.09003"
+ y="-305.98001"
+ width="1962.4"
+ height="1962.4"
+ ry="90.727997"
+ rx="90.727997"
+ style="fill:#333333"
+ id="rect5401" />
+ <rect
+ x="888.34998"
+ y="-279.72"
+ width="1909.9"
+ height="1909.9"
+ ry="70.525002"
+ rx="70.525002"
+ style="fill:#000000"
+ id="rect5403" />
+ <rect
+ x="2621.8999"
+ y="802.65002"
+ width="97.857002"
+ height="45"
+ ry="22.5"
+ rx="22.5"
+ style="fill:#333333"
+ id="rect5405" />
+ <path
+ d="m 1140.5,-149.32 c -67.467,0 -121.78,54.312 -121.78,121.78 v 1405.5 c 0,67.467 54.312,121.78 121.78,121.78 h 680.32 c 29.662,0 47.115,-4.0298 64.849,-21.729 l 755.79,-754.27 c 23.851,-23.803 26.352,-40.896 26.352,-72.473 v -678.83 c 0,-67.467 -54.312,-121.78 -121.78,-121.78 z"
+ inkscape:connector-curvature="0"
+ style="fill:#333333"
+ sodipodi:nodetypes="sssssssssss"
+ id="path5407" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#000000"
+ d="M 2038.4,1279.8 2476.97,851.23 H 2032.68 Z"
+ id="path5409" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#e6e6e6"
+ d="m 2205.5,1048.4 -48.571,-54.286 33.571,-33.571 54.286,54.286"
+ id="path5413" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc"
+ sodipodi:nodetypes="ccccccccccc"
+ d="m 2114.8,1205.5 -37.143,-36.429 11.428,-12.857 30.714,6.4286 54.286,-54.286 c -6.7697,-14.828 -2.7536,-22.791 11.429,-24.286 -18.934,-68.674 49.856,-114.43 102.86,-90 l 60.714,-60 -12.143,-30 11.429,-10 41.428,35"
+ id="path5415" />
+ <path
+ d="m 1156,-131.14 c -65.98,0 -119.09,53.114 -119.09,119.09 v 1374.5 c 0,65.979 53.114,119.09 119.09,119.09 h 665.31 c 29.008,0 39.174,-3.9241 56.5,-21.25 l 746.03,-746.03 c 23.302,-23.302 25.781,-31.589 25.781,-62.469 v -663.88 c 0,-65.979 -53.114,-119.09 -119.09,-119.09 h -1374.5 z m 1096.6,1000.2 h 189.31 l -387.34,382.16 v -178.94 c 0,-107.21 90.807,-203.22 198.03,-203.22 z"
+ inkscape:connector-curvature="0"
+ style="fill:#e1e1d1"
+ id="path5417" />
+ <path
+ transform="matrix(1.037,0,0,1.037,1984.9,-1799.2)"
+ d="m -823.78,1579.8 c -65.979,0 -119.09,53.114 -119.09,119.09 v 1374.5 c 0,51.168 31.947,94.61 77.062,111.53 -1.8213,-8.3056 -2.7812,-16.944 -2.7812,-25.813 v -1374.5 c 0,-65.979 53.114,-119.09 119.09,-119.09 h 1374.5 c 14.812,0 28.972,2.6957 42.031,7.5938 -11.729,-53.488 -59.201,-93.312 -116.31,-93.312 h -1374.5 z"
+ inkscape:connector-curvature="0"
+ style="opacity:0.85773998;fill:#000000;filter:url(#filter5708)"
+ id="path5647" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2252.1,-20.888 a 3.5004,3.5004 0 0 0 -3.0938,3.5312 v 120 a 3.5004,3.5004 0 1 0 7,0 v -120 A 3.5004,3.5004 0 0 0 2252.1,-20.888 Z"
+ id="path5419" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1190.6,836.17 a 3.5004,3.5004 0 0 0 -0.4062,6.9375 l 117.28,25.312 a 3.5004,3.5004 0 1 0 1.4688,-6.8438 l -117.28,-25.312 a 3.5004,3.5004 0 0 0 -1.0625,-0.094 z"
+ id="path5421" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1441.2,342.92 a 3.5004,3.5004 0 0 0 -2.0625,6.1562 l 89.594,79.781 a 3.5004,3.5004 0 1 0 4.6562,-5.2188 l -89.594,-79.812 a 3.5004,3.5004 0 0 0 -2.5938,-0.9062 z"
+ id="path5423" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1876.6,46.143 a 3.5004,3.5004 0 0 0 -3.0313,4.75 l 41.5,112.59 a 3.5004,3.5004 0 1 0 6.5625,-2.4063 l -41.5,-112.59 A 3.5004,3.5004 0 0 0 1876.6,46.1429 Z"
+ id="path5425" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2192.8,-19.263 a 3.5004,3.5004 0 0 0 -3.25,3.75 l 3.0312,55.312 a 3.5050187,3.5050187 0 1 0 7,-0.375 L 2196.55,-15.92 a 3.5004,3.5004 0 0 0 -3.75,-3.3437 z"
+ id="path5427" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2114.4,-12.107 a 3.5004,3.5004 0 0 0 -3.3125,4 l 7.0313,54.969 a 3.5137,3.5137 0 1 0 6.9687,-0.9063 l -7.0625,-54.937 a 3.5004,3.5004 0 0 0 -3.625,-3.125 z"
+ id="path5429" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2042.9,-0.48153 a 3.5004,3.5004 0 0 0 -3.4063,4.2188 l 10.688,54.375 a 3.5025499,3.5025499 0 1 0 6.875,-1.3438 l -10.7,-54.374 a 3.5004,3.5004 0 0 0 -3.4687,-2.875 z"
+ id="path5431" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1967,17.237 a 3.5004,3.5004 0 0 0 -3.0625,4.4687 l 14.531,53.438 a 3.5096235,3.5096235 0 1 0 6.7812,-1.8125 l -14.562,-53.469 a 3.5004,3.5004 0 0 0 -3.6875,-2.625 z"
+ id="path5433" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1791.7,81.612 a 3.5004,3.5004 0 0 0 -2.9687,5.0312 l 23.5,50.188 a 3.5004,3.5004 0 1 0 6.3125,-2.9687 l -23.469,-50.188 a 3.5004,3.5004 0 0 0 -3.375,-2.0625 z"
+ id="path5435" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1681.8,141.02 a 3.5004,3.5004 0 0 0 -2.7188,5.375 l 29.094,47.156 a 3.508,3.508 0 1 0 5.9687,-3.6875 l -29.125,-47.125 a 3.5004,3.5004 0 0 0 -3.2187,-1.7188 z"
+ id="path5437" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1589.5,204.77 a 3.5004,3.5004 0 0 0 -2.5,5.6563 l 33.812,43.906 a 3.5096324,3.5096324 0 1 0 5.5625,-4.2812 l -33.812,-43.906 a 3.5004,3.5004 0 0 0 -3.0625,-1.375 z"
+ id="path5439" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1515.5,267.24 a 3.5004,3.5004 0 0 0 -2.3125,5.9062 l 37.562,40.688 a 3.5053138,3.5053138 0 1 0 5.1562,-4.75 l -37.594,-40.688 a 3.5004,3.5004 0 0 0 -2.8125,-1.1562 z"
+ id="path5441" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1376.1,423.46 a 3.5004,3.5004 0 0 0 -1.8437,6.3438 l 44.688,32.75 a 3.5004,3.5004 0 1 0 4.125,-5.6563 l -44.688,-32.719 a 3.5004,3.5004 0 0 0 -2.2813,-0.7188 z"
+ id="path5443" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1308,528.58 a 3.5004,3.5004 0 0 0 -1.4375,6.5625 l 48.156,27.375 a 3.5059,3.5059 0 1 0 3.4687,-6.0937 l -48.156,-27.375 a 3.5004,3.5004 0 0 0 -2.0313,-0.4688 z"
+ id="path5445" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1257.6,628.96 a 3.5004,3.5004 0 0 0 -1.0937,6.7188 l 50.719,22.25 a 3.5004,3.5004 0 1 0 2.8125,-6.4063 l -50.719,-22.25 A 3.5004,3.5004 0 0 0 1257.6,628.96 Z"
+ id="path5447" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1213.6,747.39 a 3.5004,3.5004 0 0 0 -0.6875,6.8438 l 52.969,16.219 a 3.5004,3.5004 0 1 0 2.0625,-6.6875 l -52.969,-16.219 A 3.5004,3.5004 0 0 0 1213.6,747.39 Z"
+ id="path5449" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1175.9,920.21 a 3.5004,3.5004 0 0 0 -0.2187,6.9688 l 54.906,7.4062 a 3.5004,3.5004 0 1 0 0.9375,-6.9375 l -54.906,-7.4062 a 3.5004,3.5004 0 0 0 -0.7188,-0.031 z m 79.625,10.75 a 3.5004,3.5004 0 0 0 -0.2187,6.9688 l 4.4687,0.5937 a 3.5004,3.5004 0 1 0 0.9375,-6.9375 l -4.4687,-0.5937 a 3.5004,3.5004 0 0 0 -0.7188,-0.031 z"
+ id="path5451" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1583.2,440.49 a 4.0004,4.0004 0 0 0 -2.9063,1.3437 l -14.625,16.688 a 4.0004,4.0004 0 1 0 6,5.2813 l 7.625,-8.6875 v 76.25 a 4.0004,4.0004 0 1 0 8,0 v -86.875 a 4.0004,4.0004 0 0 0 -4.0937,-4 z"
+ id="path5453" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1634.8,440.49 c -15.018,0 -27.219,12.2 -27.219,27.219 v 40.406 c 0,15.018 12.201,27.25 27.219,27.25 15.018,0 27.25,-12.232 27.25,-27.25 v -40.406 c 0,-15.018 -12.232,-27.219 -27.25,-27.219 z m 0,8 c 10.724,0 19.25,8.4942 19.25,19.219 v 40.406 c 0,10.724 -8.5255,19.25 -19.25,19.25 -10.725,0 -19.219,-8.5255 -19.219,-19.25 v -40.406 c 0,-10.724 8.4942,-19.219 19.219,-19.219 z"
+ id="path5455" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1707.1,440.49 c -15.018,0 -27.219,12.2 -27.219,27.219 v 40.406 c 0,15.018 12.201,27.25 27.219,27.25 15.018,0 27.25,-12.232 27.25,-27.25 v -40.406 c 0,-15.018 -12.232,-27.219 -27.25,-27.219 z m 0,8 c 10.725,0 19.25,8.4942 19.25,19.219 v 40.406 c 0,10.724 -8.5254,19.25 -19.25,19.25 -10.724,0 -19.219,-8.5255 -19.219,-19.25 v -40.406 c 0,-10.724 8.4942,-19.219 19.219,-19.219 z"
+ id="path5457" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2261.9,156.64 c -15.018,0 -27.25,12.201 -27.25,27.219 v 40.406 c 0,15.018 12.232,27.25 27.25,27.25 15.018,0 27.219,-12.232 27.219,-27.25 v -40.406 c 0,-15.018 -12.2,-27.219 -27.219,-27.219 z m 0,8 c 10.724,0 19.219,8.4942 19.219,19.219 v 40.406 c 0,10.725 -8.4942,19.25 -19.219,19.25 -10.7248,0 -19.25,-8.5254 -19.25,-19.25 v -40.406 c 0,-10.725 8.5254,-19.219 19.25,-19.219 z"
+ id="path5459" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2334.1,156.64 c -15.018,0 -27.25,12.201 -27.25,27.219 v 40.406 c 0,15.018 12.232,27.25 27.25,27.25 15.018,0 27.219,-12.232 27.219,-27.25 v -40.406 c 0,-15.018 -12.201,-27.219 -27.219,-27.219 z m 0,8 c 10.725,0 19.219,8.4942 19.219,19.219 v 40.406 c 0,10.725 -8.4942,19.25 -19.219,19.25 -10.724,0 -19.25,-8.5254 -19.25,-19.25 v -40.406 c 0,-10.725 8.5255,-19.219 19.25,-19.219 z"
+ id="path5461" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2183.5,156.61 c -14.558,0 -26.594,11.436 -26.594,25.656 a 4.0004,4.0004 0 1 0 8,0 c 0,-9.7079 8.1784,-17.656 18.594,-17.656 10.415,0 18.625,7.9483 18.625,17.656 0,3.4188 -0.3012,6.2394 -1.9688,9.125 -1.6675,2.8857 -4.8983,6.1281 -11.656,9.5625 -15.36,7.8058 -30.328,23.228 -32.812,46.125 a 4.0004,4.0004 0 0 0 3.9687,4.4375 h 45.969 a 4.0004,4.0004 0 1 0 0,-8 h -41.219 c 3.4596,-17.376 15.261,-29.122 27.688,-35.438 7.6556,-3.8905 12.332,-8.1255 14.969,-12.688 2.6363,-4.5619 3.0625,-9.1977 3.0625,-13.125 0,-14.22 -12.067,-25.656 -26.625,-25.656 z"
+ id="path5463" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1860,235.42 a 4.0004,4.0004 0 0 0 -2.9062,1.3437 l -14.625,16.688 a 4.0004,4.0004 0 1 0 6,5.2813 l 7.6562,-8.7188 v 76.281 a 4.0004,4.0004 0 1 0 8,0 v -86.875 a 4.0004,4.0004 0 0 0 -4.125,-4 z"
+ id="path5465" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1983.8,235.42 c -15.018,0 -27.219,12.2 -27.219,27.219 v 40.406 c 0,15.018 12.201,27.25 27.219,27.25 15.018,0 27.25,-12.232 27.25,-27.25 v -40.406 c 0,-15.018 -12.232,-27.219 -27.25,-27.219 z m 0,8 c 10.724,0 19.25,8.4942 19.25,19.219 v 40.406 c 0,10.724 -8.5255,19.25 -19.25,19.25 -10.725,0 -19.219,-8.5255 -19.219,-19.25 v -40.406 c 0,-10.724 8.4942,-19.219 19.219,-19.219 z"
+ id="path5467" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1889.9,235.39 a 4.0004,4.0004 0 0 0 -4,4 v 37.25 a 4.0004,4.0004 0 0 0 7.375,2.125 c 2.999,-4.7533 11.204,-8.0625 18.344,-8.0625 10.688,0 19.25,8.6481 19.25,19.625 v 12.344 c 0,10.977 -8.5616,19.625 -19.25,19.625 -7.2062,0 -15.114,-4.3265 -18.219,-9.875 a 4.0081,4.0081 0 1 0 -7,3.9062 c 4.876,8.7155 15.069,13.969 25.219,13.969 15.054,0 27.25,-12.426 27.25,-27.625 v -12.344 c 0,-15.199 -12.196,-27.625 -27.25,-27.625 -5.9926,0 -12.456,1.4612 -17.719,4.6875 v -24 h 35.406 a 4.0004,4.0004 0 1 0 0,-8 H 1889.9 Z"
+ id="path5469" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1470.7,824.33 c -15.018,0 -27.219,12.232 -27.219,27.25 v 40.406 c 0,15.018 12.201,27.219 27.219,27.219 15.018,0 27.25,-12.201 27.25,-27.219 V 851.58 c 0,-15.018 -12.232,-27.25 -27.25,-27.25 z m 0,8 c 10.725,0 19.25,8.5255 19.25,19.25 v 40.406 c 0,10.724 -8.5254,19.219 -19.25,19.219 -10.724,0 -19.219,-8.4942 -19.219,-19.219 V 851.58 c 0,-10.724 8.4942,-19.25 19.219,-19.25 z"
+ id="path5471" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1376.3,824.33 a 4.0004,4.0004 0 0 0 -3.5938,4 v 37.219 a 4.0004,4.0004 0 0 0 7.375,2.1562 c 2.999,-4.7533 11.204,-8.0625 18.344,-8.0625 10.688,0 19.25,8.6481 19.25,19.625 v 12.312 c 0,10.977 -8.5616,19.625 -19.25,19.625 -7.2063,0 -15.114,-4.3265 -18.219,-9.875 a 4.0081,4.0081 0 1 0 -7,3.9063 c 4.8761,8.7155 15.069,13.969 25.219,13.969 15.054,0 27.25,-12.426 27.25,-27.625 v -12.312 c 0,-15.199 -12.196,-27.625 -27.25,-27.625 -5.9927,0 -12.456,1.4612 -17.719,4.6875 v -24 h 35.406 a 4.0004,4.0004 0 1 0 0,-8 h -39.406 a 4.0004,4.0004 0 0 0 -0.4062,0 z"
+ id="path5473" />
+ <path
+ d="m 1284.7,72.831 -1.1875,5.5313 -30.312,141.13 h 13.719 l 7,-31.844 h 46.156 l 8.5312,31.844 h 13.531 l -36.938,-141.47 -1.375,-5.1875 h -5.375 -8.0938 -5.6562 z m 10.031,20.062 21.594,80.75 h -39.344 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5475" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1146.3,900.96 c -8.4837,0 -15.375,6.8914 -15.375,15.375 v 22.844 c 0,8.4836 6.8913,15.375 15.375,15.375 8.4836,0 15.406,-6.8914 15.406,-15.375 v -22.844 c 0,-8.4836 -6.9226,-15.375 -15.406,-15.375 z m 0,4.5 c 6.0685,0 10.906,4.8065 10.906,10.875 v 22.844 c 0,6.0685 -4.8377,10.875 -10.906,10.875 -6.0685,0 -10.875,-4.8065 -10.875,-10.875 v -22.844 c 0,-6.0685 4.8065,-10.875 10.875,-10.875 z"
+ id="path5477" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1115.6,900.96 a 2.2502,2.2502 0 0 0 -1.5938,1.0313 l -22.156,34.875 a 2.2502,2.2502 0 0 0 1.9062,3.4375 h 19.875 v 12 a 2.2502,2.2502 0 1 0 4.5,0 v -12 h 1.3438 a 2.2502,2.2502 0 1 0 0,-4.5 h -1.3438 v -32.594 a 2.2502,2.2502 0 0 0 -2.5312,-2.25 z m -1.9688,9.9688 v 24.875 h -15.781 z"
+ id="path5479" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1284.9,1200.5 a 2.5002,2.5002 0 0 0 -1.8125,0.8438 l -7.8125,8.9062 a 2.5018,2.5018 0 1 0 3.75,3.3125 l 3.4375,-3.9062 v 39.781 a 2.5002,2.5002 0 1 0 5,0 v -46.438 a 2.5002,2.5002 0 0 0 -2.5625,-2.5 z"
+ id="path5481" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1306.7,1200.5 a 2.5002,2.5002 0 0 0 -2.25,2.5 v 19.906 a 2.5002,2.5002 0 0 0 4.625,1.3125 c 1.5017,-2.3802 5.7817,-4.125 9.5,-4.125 5.5171,0 9.9062,4.4471 9.9062,10.125 v 6.5937 c 0,5.6779 -4.3891,10.125 -9.9062,10.125 -3.7197,0 -7.858,-2.2704 -9.4375,-5.0937 a 2.5041,2.5041 0 1 0 -4.375,2.4375 c 2.6869,4.8026 8.253,7.6562 13.812,7.6562 8.2458,0 14.906,-6.8081 14.906,-15.125 v -6.5937 c 0,-8.3169 -6.6604,-15.125 -14.906,-15.125 -3.0809,0 -6.3424,0.7822 -9.125,2.3437 v -11.938 h 18.562 a 2.5002,2.5002 0 1 0 0,-5 h -21.062 a 2.5002,2.5002 0 0 0 -0.25,0 z"
+ id="path5483" />
+ <path
+ d="m 1297.5,1245.5 c -2.2316,0 -4.0625,1.8309 -4.0625,4.0625 0,1.973 1.4112,3.5834 3.2812,3.9375 -0.352,1.6422 -0.8243,3.5675 -1.625,6.4063 3.379,-3.3497 5.078,-6.1448 6.0625,-8.6875 0.013,-0.033 0.05,-0.061 0.062,-0.094 v -0.031 c 0.1971,-0.476 0.3125,-0.9841 0.3125,-1.5313 0,-2.2316 -1.7996,-4.0625 -4.0312,-4.0625 z"
+ inkscape:connector-curvature="0"
+ style="fill:#000000"
+ id="path5485" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1197.6,1211.8 c -5.4507,0.026 -10.966,1.9221 -16,6.6562 a 2.5092298,2.5092298 0 1 0 3.4375,3.6563 c 5.6656,-5.3286 10.954,-6.1333 16.938,-4.875 5.9835,1.2583 12.504,4.8898 19.125,8.7187 6.6209,3.8289 13.346,7.8504 20.312,9.5313 6.9667,1.6808 14.393,0.7108 20.875,-5.2813 a 2.5100068,2.5100068 0 1 0 -3.4063,-3.6875 c -5.3695,4.9637 -10.436,5.5429 -16.312,4.125 -5.8769,-1.4179 -12.328,-5.1594 -18.969,-9 -6.6411,-3.8405 -13.471,-7.7833 -20.594,-9.2812 -1.7807,-0.3745 -3.5893,-0.5714 -5.4062,-0.5625 z"
+ id="path5487" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1365.1,1188.7 a 2.5002,2.5002 0 0 0 -2.4688,2.5313 v 55.594 a 2.5002,2.5002 0 1 0 5,0 v -55.594 A 2.5002,2.5002 0 0 0 1365.1,1188.7 Z"
+ id="path5489" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1406.1,1187 a 2.5002,2.5002 0 0 0 -0.6562,0.1563 l -54,19.156 a 2.5002,2.5002 0 0 0 0,4.7188 l 18.5,6.5 -18.5,6.5625 a 2.5002,2.5002 0 0 0 0,4.7187 l 18.469,6.5313 -18.469,6.5312 a 2.5002,2.5002 0 0 0 0,4.7188 l 54,19.156 a 2.5002,2.5002 0 1 0 1.6875,-4.6875 l -47.375,-16.812 18.469,-6.5312 a 2.5002,2.5002 0 0 0 0,-4.7188 l -18.469,-6.5625 18.469,-6.5625 a 2.5002,2.5002 0 0 0 0,-4.6875 l -18.469,-6.5312 47.375,-16.781 a 2.5002,2.5002 0 0 0 -1.0313,-4.875 z"
+ id="path5491" />
+ <circle
+ r="6.5068183"
+ cy="330.90106"
+ cx="-574.59137"
+ transform="matrix(0.59248,0,0,0.59248,1746.3,993.55)"
+ style="fill:#000000"
+ id="path5493" />
+ <circle
+ r="6.5068183"
+ cy="330.90106"
+ cx="-574.59137"
+ transform="matrix(0.59248,0,0,0.59248,1746.3,1067.2)"
+ style="fill:#000000"
+ id="path5495" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1467.3,1185.7 a 2.5002,2.5002 0 0 0 -1.784,1.1002 l -14.719,21.974 -25.423,7.2256 a 2.5002,2.5002 0 0 0 -1.2785,3.9547 l 16.354,20.784 -0.9515,26.434 a 2.5002,2.5002 0 0 0 3.36,2.4085 l 24.799,-9.0988 24.828,9.0691 a 2.5002,2.5002 0 0 0 3.36,-2.4382 l -1.011,-26.404 16.295,-20.814 a 2.5002,2.5002 0 0 0 -1.2786,-3.9547 l -25.423,-7.2255 -14.748,-21.914 a 2.5002,2.5002 0 0 0 -2.3788,-1.1002 z m 0.2974,6.9877 13.202,19.595 a 2.5002,2.5002 0 0 0 1.3975,1.011 l 22.717,6.4524 -14.57,18.584 a 2.5002,2.5002 0 0 0 -0.5352,1.6354 l 0.892,23.609 -22.182,-8.0878 a 2.5002,2.5002 0 0 0 -1.7247,0 l -22.182,8.1473 0.8623,-23.639 a 2.5002,2.5002 0 0 0 -0.5352,-1.6354 l -14.57,-18.554 22.688,-6.4822 a 2.5002,2.5002 0 0 0 1.3976,-1.0109 l 13.143,-19.625 z"
+ id="path5497" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1467.3,1217.5 c -4.8518,0 -8.8125,3.9608 -8.8125,8.8125 a 2.1387,2.1387 0 1 0 4.25,0 c 0,-2.5403 2.0222,-4.5312 4.5625,-4.5312 2.5403,0 4.5625,1.9909 4.5625,4.5312 0,0.6956 -0.176,1.0804 -0.9063,1.9688 -0.7302,0.8884 -1.9841,2.0898 -3.4062,3.8125 l -9.3438,11.312 a 2.1387,2.1387 0 0 0 1.6563,3.5 h 15.406 a 2.14065,2.14065 0 0 0 0,-4.2813 h -10.875 l 6.4375,-7.8125 c 1.2475,-1.5111 2.4037,-2.5927 3.4063,-3.8125 1.0026,-1.2198 1.9062,-2.8108 1.9062,-4.6875 0,-4.8517 -3.992,-8.8125 -8.8437,-8.8125 z"
+ id="path5499" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1522.5,1207.9 a 2.5002,2.5002 0 0 0 -2.5,2.5 v 39.656 a 2.5002,2.5002 0 1 0 5,0 V 1212.9 h 14.156 a 2.5002,2.5002 0 1 0 0,-5 z"
+ id="path5501" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1522.5,1224.9 a 2.503123,2.503123 0 1 0 0.25,5 h 8.5937 c 4.954,0 8.8438,3.8897 8.8438,8.8437 0,4.954 -3.8898,8.875 -8.8438,8.875 h -8.5937 a 2.5002,2.5002 0 1 0 0,5 h 8.5937 c 7.6376,0 13.844,-6.2375 13.844,-13.875 0,-7.6375 -6.2062,-13.844 -13.844,-13.844 h -8.5937 a 2.5002,2.5002 0 0 0 -0.25,0 z"
+ id="path5503" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1574.5,1194.1 a 2.1387,2.1387 0 0 0 -2.125,2.1875 v 68.688 a 2.1406,2.1406 0 0 0 4.2812,0 v -68.688 A 2.1387,2.1387 0 0 0 1574.5,1194.1 Z"
+ id="path5505" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1545.4,1263 a 2.503123,2.503123 0 1 0 0.25,5 h 57.594 a 2.5002,2.5002 0 1 0 0,-5 h -57.594 a 2.5002,2.5002 0 0 0 -0.25,0 z"
+ id="path5507" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1283.8,1300 a 2.2502,2.2502 0 0 0 -2.0313,2.25 v 26.875 a 2.2502,2.2502 0 1 0 4.5,0 V 1304.5 h 8.375 a 2.2502,2.2502 0 1 0 0,-4.5 h -10.625 a 2.2502,2.2502 0 0 0 -0.2187,0 z"
+ id="path5509" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1308.4,1300 c -5.8944,0 -10.719,4.8243 -10.719,10.719 v 9.9688 c 0,5.8944 4.8243,10.688 10.719,10.688 5.8945,0 10.719,-4.7931 10.719,-10.688 v -9.9688 c 0,-5.8944 -4.8243,-10.719 -10.719,-10.719 z m 0,4.5 c 3.4793,0 6.2188,2.7394 6.2188,6.2187 v 9.9688 c 0,3.4792 -2.7395,6.1875 -6.2188,6.1875 -3.4792,0 -6.2187,-2.7083 -6.2187,-6.1875 v -9.9688 c 0,-3.4793 2.7395,-6.2187 6.2187,-6.2187 z"
+ id="path5511" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1330.6,1300 c -5.8944,0 -10.719,4.8243 -10.719,10.719 v 9.9688 c 0,5.8944 4.8244,10.688 10.719,10.688 4.9632,0 9.1791,-3.3836 10.375,-8 a 2.2502,2.2502 0 1 0 -4.3438,-1.125 c -0.6916,2.6699 -3.1016,4.625 -6.0312,4.625 -3.4793,0 -6.2188,-2.7083 -6.2188,-6.1875 v -9.9688 c 0,-3.4793 2.7395,-6.2187 6.2188,-6.2187 2.9269,0 5.3058,1.9588 6,4.625 a 2.2587,2.2587 0 1 0 4.375,-1.125 c -1.2003,-4.61 -5.4164,-8 -10.375,-8 z"
+ id="path5513" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1351.7,1300 a 2.2502,2.2502 0 0 0 -2,2.2813 v 26.875 a 2.2502,2.2502 0 1 0 4.5,0 v -26.875 A 2.2502,2.2502 0 0 0 1351.7,1300 Z"
+ id="path5515" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1344.9,1300 a 2.2527,2.2527 0 0 0 0.2188,4.5 h 13.812 a 2.2502,2.2502 0 1 0 0,-4.5 h -13.812 a 2.2502,2.2502 0 0 0 -0.2188,0 z"
+ id="path5517" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1385.8,1300 c -4.4239,0 -8.0625,3.6386 -8.0625,8.0625 0,4.4239 3.6386,8.0625 8.0625,8.0625 4.4239,0 8.0625,-3.6386 8.0625,-8.0625 0,-4.4239 -3.6386,-8.0625 -8.0625,-8.0625 z m 0,4.5 c 1.9919,0 3.5625,1.5706 3.5625,3.5625 0,1.9919 -1.5706,3.5625 -3.5625,3.5625 -1.9919,0 -3.5625,-1.5706 -3.5625,-3.5625 0,-1.9919 1.5706,-3.5625 3.5625,-3.5625 z"
+ id="path5519" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1385.8,1311.5 c -5.4699,0 -9.9456,4.4758 -9.9456,9.9457 0,5.4699 4.4757,9.9456 9.9456,9.9456 5.4699,0 9.9457,-4.4757 9.9457,-9.9456 0,-5.4699 -4.4758,-9.9457 -9.9457,-9.9457 z m 0,4.4756 c 3.0379,0 5.4701,2.4321 5.4701,5.4701 0,3.0379 -2.4322,5.4701 -5.4701,5.4701 -3.0379,0 -5.4701,-2.4322 -5.4701,-5.4701 0,-3.038 2.4322,-5.4701 5.4701,-5.4701 z"
+ id="path5521" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1400.2,1300 a 2.2535,2.2535 0 1 0 0.25,4.5 h 7.9063 c -3.3387,6.572 -6.0518,14.717 -8.3438,24.094 a 2.2511,2.2511 0 1 0 4.375,1.0625 c 2.6399,-10.8 5.7905,-19.938 9.5938,-26.25 a 2.2502,2.2502 0 0 0 -1.9375,-3.4062 h -11.594 a 2.2502,2.2502 0 0 0 -0.25,0 z"
+ id="path5523" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1429.1,1300 a 2.2502,2.2502 0 0 0 -1.75,0.9062 l -4.6875,6.25 a 2.2502,2.2502 0 1 0 3.5937,2.6875 l 0.6563,-0.875 v 20.156 a 2.2502,2.2502 0 1 0 4.5,0 v -26.875 a 2.2502,2.2502 0 0 0 -2.3125,-2.25 z"
+ id="path5525" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1444.9,1300 a 2.2502,2.2502 0 0 0 -1.7187,0.9062 l -4.6875,6.25 a 2.2502,2.2502 0 1 0 3.5937,2.6875 l 0.625,-0.8437 v 20.125 a 2.2502,2.2502 0 1 0 4.5,0 V 1302.25 A 2.2502,2.2502 0 0 0 1444.9,1300 Z"
+ id="path5527" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1502.4,1300 c -5.8944,0 -10.719,4.8243 -10.719,10.719 v 9.9688 c 0,5.8944 4.8243,10.688 10.719,10.688 5.8945,0 10.719,-4.7931 10.719,-10.688 v -9.9688 c 0,-5.8944 -4.8243,-10.719 -10.719,-10.719 z m 0,4.5 c 3.4793,0 6.2188,2.7394 6.2188,6.2187 v 9.9688 c 0,3.4792 -2.7395,6.1875 -6.2188,6.1875 -3.4792,0 -6.2187,-2.7083 -6.2187,-6.1875 v -9.9688 c 0,-3.4793 2.7395,-6.2187 6.2187,-6.2187 z"
+ id="path5529" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1480.7,1311.5 c -5.4699,0 -9.9456,4.4758 -9.9456,9.9457 0,5.4699 4.4757,9.9456 9.9456,9.9456 5.4699,0 9.9457,-4.4757 9.9457,-9.9456 0,-5.4699 -4.4758,-9.9457 -9.9457,-9.9457 z m 0,4.4756 c 3.038,0 5.4701,2.4321 5.4701,5.4701 0,3.0379 -2.4321,5.4701 -5.4701,5.4701 -3.0379,0 -5.4701,-2.4322 -5.4701,-5.4701 0,-3.038 2.4322,-5.4701 5.4701,-5.4701 z"
+ id="path5531" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1480.6,1300 c -5.4699,0 -9.9375,4.4676 -9.9375,9.9375 v 11.5 a 2.2502,2.2502 0 1 0 4.5,0 v -11.5 c 0,-3.038 2.3996,-5.4375 5.4375,-5.4375 2.1957,0 4.1748,1.2907 5.0312,3.3125 a 2.2548464,2.2548464 0 1 0 4.1563,-1.75 C 1488.2311,1302.3882 1484.5902,1300 1480.6,1300 Z"
+ id="path5533" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 1453.1,1312.7 a 2.2527,2.2527 0 1 0 0.2187,4.5 h 11.625 a 2.2502,2.2502 0 1 0 0,-4.5 h -11.625 a 2.2502,2.2502 0 0 0 -0.2187,0 z"
+ id="path5535" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2411,246.77 c -6.7857,0 -12.69,3.8407 -15.594,9.5 a 2.5002,2.5002 0 1 0 4.4375,2.2813 c 2.0712,-4.0372 6.2544,-6.7813 11.156,-6.7813 6.9826,0 12.531,5.5486 12.531,12.531 v 21.344 c 0,6.9827 -5.5486,12.531 -12.531,12.531 -4.4774,0 -8.3428,-2.2744 -10.562,-5.75 a 2.5010463,2.5010463 0 0 0 -4.2188,2.6875 c 3.1089,4.8679 8.5832,8.0625 14.781,8.0625 9.6662,0 17.531,-7.8651 17.531,-17.531 v -21.344 c 0,-9.6662 -7.865,-17.531 -17.531,-17.531 z"
+ id="path5537" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2488,246.77 c -9.6662,0 -17.5,7.8651 -17.5,17.531 v 21.344 c 0,9.6662 7.8338,17.531 17.5,17.531 9.6662,0 17.531,-7.8651 17.531,-17.531 v -21.344 c 0,-9.6662 -7.865,-17.531 -17.531,-17.531 z m 0,5 c 6.9826,0 12.531,5.5486 12.531,12.531 v 21.344 c 0,6.9827 -5.5486,12.531 -12.531,12.531 -6.9827,0 -12.5,-5.5486 -12.5,-12.531 v -21.344 c 0,-6.9827 5.5173,-12.531 12.5,-12.531 z"
+ id="path5539" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2436.6,246.77 a 2.503123,2.503123 0 1 0 0.25,5 h 18.156 l -12.375,17.5 a 2.5002,2.5002 0 0 0 2.3438,3.9375 c 5.7215,-0.6861 9.0208,0.5421 11.188,2.4375 2.1667,1.8954 3.3312,4.7379 3.7812,7.7188 0.4713,3.1214 -0.2841,6.6266 -1.9062,9.4062 -1.6221,2.7796 -4.0115,4.745 -6.7188,5.25 -4.4749,0.8348 -10.174,-1.6848 -12.25,-5.8437 a 2.5016,2.5016 0 1 0 -4.4687,2.25 c 3.2375,6.4873 10.824,9.7687 17.625,8.5 4.4334,-0.8271 7.9332,-3.8692 10.125,-7.625 2.1918,-3.7558 3.1945,-8.2945 2.5312,-12.688 -0.5668,-3.7544 -2.0648,-7.7958 -5.4062,-10.719 -2.4107,-2.1088 -5.7373,-3.477 -9.9063,-3.7812 l 12.312,-17.406 a 2.5002,2.5002 0 0 0 -2.0625,-3.9375 h -22.969 a 2.5002,2.5002 0 0 0 -0.25,0 z"
+ id="path5541" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2411.9,272.49 a 2.503123,2.503123 0 1 0 0.25,5 h 13.125 a 2.5002,2.5002 0 1 0 0,-5 h -13.125 a 2.5002,2.5002 0 0 0 -0.25,0 z"
+ id="path5543" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#cc9168"
+ d="m 2394,654.11 a 3.5004,3.5004 0 0 0 -3,1.9062 l -22,41.875 -75.406,87.469 a 3.5014,3.5014 0 1 0 5.3125,4.5625 l 75.688,-87.844 a 3.5004,3.5004 0 0 0 0.4687,-0.6562 l 22.125,-42.156 a 3.5004,3.5004 0 0 0 -3.1875,-5.1562 z"
+ id="path5545" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#ffffff"
+ d="m 2296,773.83 c -7.7494,0 -14.125,6.3444 -14.125,14.094 0,7.7494 6.3756,14.125 14.125,14.125 7.7494,0 14.094,-6.3756 14.094,-14.125 a 3.5004,3.5004 0 1 0 -7,0 c 0,3.9663 -3.1274,7.125 -7.0938,7.125 -3.9663,0 -7.125,-3.1587 -7.125,-7.125 0,-3.9664 3.1587,-7.0938 7.125,-7.0938 h 0.2813 a 3.5035,3.5035 0 1 0 0.3125,-7 c -0.1998,-0.01 -0.3938,0 -0.5938,0 z"
+ id="path5547" />
+ <circle
+ r="54.285713"
+ cy="-220.49496"
+ cx="461.42856"
+ transform="translate(1979.8,863.15)"
+ style="fill:#b3b3b3"
+ id="path5549" />
+ <circle
+ r="54.285713"
+ cy="-220.49496"
+ cx="461.42856"
+ transform="matrix(0.78601,0,0,0.78601,2078.5,815.96)"
+ style="fill:#808080"
+ id="path5551" />
+ <path
+ d="m 2434.9,600.96 c -20.3,3.0394 -35.875,20.541 -35.875,41.688 0,21.147 15.575,38.679 35.875,41.719 v -83.406 z m 12.625,0.031 v 83.344 c 20.284,-3.0534 35.844,-20.552 35.844,-41.688 0,-21.135 -15.56,-38.603 -35.844,-41.656 z"
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc"
+ id="path5553" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#cc9168"
+ sodipodi:nodetypes="cccccscccsc"
+ d="m 1978.1,1124 c -1.0098,0.01 -2.0071,0.4765 -2.6563,1.25 l -75.719,87.844 c -0.1719,0.2111 -0.3191,0.4423 -0.4375,0.6875 l -34.121,26.143 c -0.8508,1.6281 -0.1436,3.8835 1.4844,4.7344 1.6281,0.8508 3.8836,0.1437 4.7344,-1.4844 l 33.902,-25.768 75.469,-87.594 c 0.8866,-1.0076 1.1136,-2.5465 0.5558,-3.7671 -0.5578,-1.2207 -1.87,-2.0563 -3.212,-2.0454 z"
+ id="path5555" />
+ <circle
+ r="54.285713"
+ cy="-220.49496"
+ cx="461.42856"
+ transform="rotate(180,1147.25,526.05)"
+ style="fill:#c5c5bf"
+ id="path5557" />
+ <circle
+ r="54.285713"
+ cy="-220.49496"
+ cx="461.42856"
+ transform="matrix(-0.78601,0,0,-0.78601,2195.8,1099.2)"
+ style="fill:#808080"
+ id="path5559" />
+ <path
+ d="m 1839.4,1314.3 c 20.3,-3.0393 35.875,-20.541 35.875,-41.688 0,-21.147 -15.575,-38.679 -35.875,-41.719 v 83.406 z m -12.625,-0.031 v -83.344 c -20.284,3.0534 -35.844,20.552 -35.844,41.688 0,21.135 15.56,38.603 35.844,41.656 z"
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc"
+ id="path5561" />
+ </g>
+ <g
+ id="g21670"
+ transform="matrix(18.912567,0,0,18.912567,-81.555744,1119.9665)"
+ inkscape:label="HMI:Meter@/PUMP0/SLOTH">
+ <path
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.38814712;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="path21666"
+ sodipodi:type="arc"
+ sodipodi:cx="124.32036"
+ sodipodi:cy="-2.4254472"
+ sodipodi:rx="54.660004"
+ sodipodi:ry="54.024006"
+ sodipodi:start="3.1424064"
+ sodipodi:end="4.7101543"
+ d="M 69.660373,-2.4694091 A 54.660004,54.024006 0 0 1 124.19821,-56.449318"
+ sodipodi:open="true"
+ inkscape:label="range" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.92543143;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-start:url(#marker21674);marker-end:url(#marker22799)"
+ d="M 123.16695,-3.4226979 70.419817,-10.83537"
+ id="path21668"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ inkscape:label="needle" />
+ </g>
+ <g
+ id="g29186">
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2378.5,363.18 2.4664,1.2855 71.607,37.323 2.4387,1.2711 2.4386,-1.2711 71.607,-37.323 2.4664,-1.2855 -2.4387,-1.2711 -71.607,-37.323 -2.4663,-1.2855 -2.4664,1.2855 -71.607,37.323 z m 9.81,0 66.702,-34.766 66.73,34.78 -66.702,34.766 z"
+ id="path5567" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2441.6,345.71 -2.2813,1.375 -11.406,6.9688 -0.7188,0.4375 v 0.8437 4.4688 h 3 v -3.625 l 8.4063,-5.125 v 9.5312 l -3.5938,3.8125 -0.9375,1.0313 0.9375,1.0312 3.5938,3.8125 v 9.5313 l -8.4063,-5.125 v -3.625 h -3 v 4.4687 0.8438 l 0.7188,0.4375 11.406,6.9687 2.2813,1.375 v -2.6562 -12.812 -0.5938 l -0.4063,-0.4375 -3.0312,-3.2187 3.0312,-3.25 0.4063,-0.4375 v -0.5938 -12.781 -2.6563 z"
+ id="path5569" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2448,339.42 v 48.594 h 3 V 339.42 Z m 11.062,0 v 48.594 h 3 V 339.42 Z"
+ id="path5571" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2459.1,351.33 -11.062,24.469 2.7187,1.2187 11.094,-24.469 -2.75,-1.2188 z"
+ id="path5573" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2467.6,342.36 v 2.625 37.5 h 3 v -34.906 l 8,4.5938 v 22.969 h 3 v -23.812 -0.875 l -0.75,-0.4375 -11,-6.3437 -2.25,-1.3125 z"
+ id="path5575" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2457.8,434.39 c -4.2082,0 -7.5312,3.6568 -7.5312,8 a 1.5002,1.5002 0 1 0 3,0 c 0,-2.8367 2.068,-5 4.5312,-5 2.4633,0 4.5313,2.1633 4.5313,5 0,1.0173 -0.081,1.842 -0.5,2.6563 -0.4189,0.8142 -1.2183,1.7195 -2.9688,2.7187 -4.2189,2.4083 -8.2687,7.1391 -8.9375,14.062 a 1.5002,1.5002 0 0 0 1.5,1.625 h 12.281 a 1.5002,1.5002 0 1 0 0,-3 H 2453.3 c 1.0027,-4.9299 3.9358,-8.3089 7.0625,-10.094 2.1001,-1.1988 3.4255,-2.517 4.1563,-3.9375 0.7308,-1.4205 0.8125,-2.8442 0.8125,-4.0313 0,-4.3432 -3.3231,-8 -7.5313,-8 z"
+ id="path5577" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2403.5,434.42 a 1.5002,1.5002 0 0 0 -0.9375,0.5 l -4.2813,5 a 1.5067,1.5067 0 0 0 2.2813,1.9687 l 1.625,-1.9062 v 21.969 a 1.5002,1.5002 0 1 0 3,0 v -26.031 a 1.5002,1.5002 0 0 0 -1.6875,-1.5 z"
+ id="path5579" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2477.6,434.42 a 1.5002,1.5002 0 0 0 -1.2188,1.5 v 11.156 a 1.5002,1.5002 0 0 0 2.7813,0.8125 c 0.8305,-1.2895 3.2566,-2.2812 5.375,-2.2812 3.1378,0 5.625,2.446 5.625,5.5625 v 3.7187 c 0,3.1165 -2.4872,5.5625 -5.625,5.5625 -2.1156,0 -4.4635,-1.271 -5.3438,-2.8125 a 1.5002,1.5002 0 1 0 -2.5937,1.5 c 1.5623,2.7359 4.7405,4.3125 7.9375,4.3125 4.7417,0 8.625,-3.8296 8.625,-8.5625 v -3.7187 c 0,-4.7329 -3.8833,-8.5625 -8.625,-8.5625 -1.7417,0 -3.5689,0.4289 -5.1563,1.2812 v -6.4687 h 10.562 a 1.5002,1.5002 0 1 0 0,-3 h -12.062 a 1.5002,1.5002 0 0 0 -0.2812,0 z"
+ id="path5581" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2516,434.42 a 1.5002,1.5002 0 0 0 -1.0625,0.625 l -12.656,18.5 a 1.5002,1.5002 0 0 0 1.2187,2.3437 h 11.188 v 6.0625 a 1.5002,1.5002 0 1 0 3,0 v -6.0625 h 0.5313 a 1.5002,1.5002 0 1 0 0,-3 h -0.5313 v -16.969 a 1.5002,1.5002 0 0 0 -1.6875,-1.5 z m -1.3125,6.3125 v 12.156 h -8.3125 z"
+ id="path5583" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2373.5,434.42 a 1.5002,1.5002 0 0 0 -1.1875,1.5 v 11.156 a 1.5002,1.5002 0 0 0 2.75,0.8125 c 0.8305,-1.2895 3.2879,-2.2812 5.4063,-2.2812 3.1378,0 5.5937,2.446 5.5937,5.5625 v 3.7187 c 0,3.1165 -2.4559,5.5625 -5.5937,5.5625 -2.1156,0 -4.4948,-1.271 -5.375,-2.8125 a 1.5002,1.5002 0 1 0 -2.5938,1.5 c 1.5624,2.7359 4.7718,4.3125 7.9688,4.3125 4.7417,0 8.5937,-3.8296 8.5937,-8.5625 v -3.7187 c 0,-4.7329 -3.852,-8.5625 -8.5937,-8.5625 -1.7311,0 -3.5751,0.4086 -5.1563,1.25 v -6.4375 h 10.562 a 1.5002,1.5002 0 1 0 0,-3 h -12.062 a 1.5002,1.5002 0 0 0 -0.3125,0 z"
+ id="path5585" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2429.5,434.42 a 1.5002,1.5002 0 0 0 -0.9375,0.5 l -4.2812,5 a 1.5067,1.5067 0 1 0 2.2812,1.9687 l 1.625,-1.9062 v 21.969 a 1.5002,1.5002 0 1 0 3,0 v -26.031 a 1.5002,1.5002 0 0 0 -1.6875,-1.5 z"
+ id="path5587" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2412.3,490.67 a 1.5002,1.5002 0 0 0 -1.1875,0.625 l -4.4688,6.0625 a 1.5002,1.5002 0 1 0 2.4063,1.7812 l 1.7812,-2.4062 v 21.5 a 1.5002,1.5002 0 1 0 3,0 v -26.062 a 1.5002,1.5002 0 0 0 -1.5312,-1.5 z"
+ id="path5589" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2450,501.82 c -4.9217,0 -8.9329,4.0208 -8.9329,8.9543 0,4.9335 4.0112,8.9543 8.9329,8.9543 4.9217,0 8.9329,-4.0208 8.9329,-8.9543 0,-4.9335 -4.0112,-8.9543 -8.9329,-8.9543 z m 0,3.0115 c 3.3023,0 5.9285,2.6326 5.9285,5.9428 0,3.3103 -2.6262,5.983 -5.9285,5.983 -3.3023,0 -5.9285,-2.6727 -5.9285,-5.983 0,-3.3102 2.6262,-5.9428 5.9285,-5.9428 z"
+ id="path5591" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2450,490.67 c -4.9246,0 -8.9375,4.0381 -8.9375,8.9687 v 11.125 a 1.5002,1.5002 0 1 0 3,0 v -11.125 c 0,-3.3131 2.6382,-5.9687 5.9375,-5.9687 2.3902,0 4.5664,1.4467 5.5,3.6562 a 1.5002,1.5002 0 1 0 2.75,-1.1875 c -1.3985,-3.3097 -4.6605,-5.4687 -8.25,-5.4687 z"
+ id="path5593" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2427.1,508.61 c 4.9217,0 8.9329,-4.0208 8.9329,-8.9543 0,-4.9335 -4.0112,-8.9544 -8.9329,-8.9544 -4.9217,0 -8.9329,4.0209 -8.9329,8.9544 0,4.9335 4.0112,8.9543 8.9329,8.9543 z m 0,-3.0115 c -3.3023,0 -5.9285,-2.6326 -5.9285,-5.9428 0,-3.3103 2.6262,-5.983 5.9285,-5.983 3.3023,0 5.9285,2.6727 5.9285,5.983 0,3.3102 -2.6262,5.9428 -5.9285,5.9428 z"
+ id="path5595" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2434.6,498.11 a 1.5002,1.5002 0 0 0 -1.5,1.5312 v 11.125 c 0,3.3132 -2.6381,5.9688 -5.9375,5.9688 -2.3902,0 -4.5351,-1.4155 -5.4688,-3.625 a 1.506,1.506 0 1 0 -2.7812,1.1562 c 1.3986,3.3097 4.6606,5.4688 8.25,5.4688 4.9246,0 8.9375,-4.0382 8.9375,-8.9688 v -11.125 a 1.5002,1.5002 0 0 0 -1.5,-1.5312 z"
+ id="path5597" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2465.8,490.49 a 1.5002,1.5002 0 0 0 -1.375,1.5 v 11.156 a 1.5002,1.5002 0 0 0 2.7813,0.8125 c 0.8305,-1.2895 3.2566,-2.2812 5.375,-2.2812 3.1378,0 5.625,2.4772 5.625,5.5937 v 3.6875 c 0,3.1165 -2.4872,5.5938 -5.625,5.5938 -2.1156,0 -4.4635,-1.3023 -5.3438,-2.8438 a 1.5002,1.5002 0 1 0 -2.5937,1.5 c 1.5623,2.7359 4.7405,4.3438 7.9375,4.3438 4.7417,0 8.625,-3.8609 8.625,-8.5938 v -3.6875 c 0,-4.7328 -3.8833,-8.5937 -8.625,-8.5937 -1.7417,0 -3.5689,0.4289 -5.1563,1.2812 v -6.4687 h 10.562 a 1.5002,1.5002 0 1 0 0,-3 h -12.062 a 1.5002,1.5002 0 0 0 -0.125,0 z"
+ id="path5599" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2497.9,494.74 a 1.5002,1.5002 0 0 0 -1.3437,1.5 v 18.562 a 1.5002,1.5002 0 1 0 3,0 V 497.74 h 7.7812 a 1.5002,1.5002 0 1 0 0,-3 h -9.2812 a 1.5002,1.5002 0 0 0 -0.1563,0 z"
+ id="path5601" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2315.9,-15.107 a 1.5081161,1.5081161 0 1 0 0.3125,3 h 20.469 a 1.5002,1.5002 0 1 0 0,-3 h -20.469 a 1.5002,1.5002 0 0 0 -0.3125,0 z"
+ id="path5603" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2326.4,-15.294 a 2.5002,2.5002 0 0 0 -2.4687,2.5313 v 36.125 a 2.5002,2.5002 0 1 0 5,0 v -36.125 A 2.5002,2.5002 0 0 0 2326.4,-15.294 Z"
+ id="path5605" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2346.2,-15.107 a 1.5066,1.5066 0 0 0 0.2813,3 h 20.5 a 1.5002,1.5002 0 1 0 0,-3 h -20.5 a 1.5002,1.5002 0 0 0 -0.2813,0 z"
+ id="path5607" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2356.7,-15.294 a 2.5002,2.5002 0 0 0 -2.4687,2.5313 v 36.125 a 2.5002,2.5002 0 1 0 5,0 v -36.125 A 2.5002,2.5002 0 0 0 2356.7,-15.294 Z"
+ id="path5609" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2384.4,-22.33 c -4.0185,0 -7.3125,3.2939 -7.3125,7.3125 0,4.0185 3.294,7.3125 7.3125,7.3125 4.0185,0 7.3125,-3.294 7.3125,-7.3125 0,-4.0186 -3.294,-7.3125 -7.3125,-7.3125 z m 0,3 c 2.3972,0 4.3125,1.9152 4.3125,4.3125 0,2.3972 -1.9153,4.3125 -4.3125,4.3125 -2.3972,0 -4.3125,-1.9153 -4.3125,-4.3125 0,-2.3973 1.9153,-4.3125 4.3125,-4.3125 z"
+ id="path5611" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2384.4,-10.587 c -4.0185,0 -7.3125,3.2939 -7.3125,7.3125 0,4.0185 3.294,7.3125 7.3125,7.3125 4.0185,0 7.3125,-3.294 7.3125,-7.3125 0,-4.0186 -3.294,-7.3125 -7.3125,-7.3125 z m 0,3 c 2.3972,0 4.3125,1.9153 4.3125,4.3125 0,2.3972 -1.9153,4.3125 -4.3125,4.3125 -2.3972,0 -4.3125,-1.9153 -4.3125,-4.3125 0,-2.3972 1.9153,-4.3125 4.3125,-4.3125 z"
+ id="path5613" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2402.6,-22.825 c -4.0276,0 -7.3125,3.2848 -7.3125,7.3125 v 11.719 c 0,4.0276 3.2849,7.3438 7.3125,7.3438 4.0277,0 7.3125,-3.3162 7.3125,-7.3438 v -11.719 c 0,-4.0277 -3.2848,-7.3125 -7.3125,-7.3125 z m 0,3 c 2.4176,0 4.3125,1.8949 4.3125,4.3125 v 11.719 c 0,2.4175 -1.8949,4.3438 -4.3125,4.3438 -2.4175,0 -4.3125,-1.9263 -4.3125,-4.3438 v -11.719 c 0,-2.4176 1.895,-4.3125 4.3125,-4.3125 z"
+ id="path5615" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2420.7,-22.825 c -4.0276,0 -7.3125,3.2848 -7.3125,7.3125 v 11.719 c 0,4.0276 3.2849,7.3438 7.3125,7.3438 4.0277,0 7.3125,-3.3162 7.3125,-7.3438 v -11.719 c 0,-4.0277 -3.2848,-7.3125 -7.3125,-7.3125 z m 0,3 c 2.4176,0 4.3125,1.8949 4.3125,4.3125 v 11.719 c 0,2.4175 -1.8949,4.3438 -4.3125,4.3438 -2.4175,0 -4.3125,-1.9263 -4.3125,-4.3438 v -11.719 c 0,-2.4176 1.895,-4.3125 4.3125,-4.3125 z"
+ id="path5617" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2376.6,8.3623 a 1.5020318,1.5020318 0 1 0 0.1562,3 h 52.25 a 1.5002,1.5002 0 1 0 0,-3 h -52.25 a 1.5002,1.5002 0 0 0 -0.1562,0 z"
+ id="path5619" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 2397.8,13.925 a 1.5002,1.5002 0 0 0 -1.3438,1.5 v 10.281 a 1.5002,1.5002 0 0 0 1.5,1.5 h 6.2188 c 2.3448,0 4.3125,2.145 4.3125,4.5625 0,2.4175 -1.895,4.3125 -4.3125,4.3125 h -6.4375 a 1.5002,1.5002 0 1 0 0,3 h 6.4375 c 4.0276,0 7.3125,-3.2849 7.3125,-7.3125 0,-4.0276 -3.2122,-7.5625 -7.3125,-7.5625 h -4.7188 v -7.2812 h 10.188 a 1.5002,1.5002 0 1 0 0,-3 h -11.688 a 1.5002,1.5002 0 0 0 -0.1562,0 z"
+ id="path5621" />
+ <path
+ d="m 1156,-131.14 c -65.98,0 -119.09,53.114 -119.09,119.09 v 1374.5 c 0,65.979 53.114,119.09 119.09,119.09 h 665.31 c 29.008,0 39.174,-3.9241 56.5,-21.25 l 746.03,-746.03 c 23.302,-23.302 25.781,-31.589 25.781,-62.469 v -663.88 c 0,-65.979 -53.114,-119.09 -119.09,-119.09 z"
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient7109)"
+ sodipodi:nodetypes="sssssssssss"
+ id="path5623" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#ffffff"
+ d="m 1978.3,1141.4 c 7.7494,0 14.125,-6.3443 14.125,-14.094 0,-7.7494 -6.3756,-14.125 -14.125,-14.125 -7.7494,0 -14.094,6.3756 -14.094,14.125 a 3.5004,3.5004 0 1 0 7,0 c 0,-3.9663 3.1275,-7.125 7.0938,-7.125 3.9663,0 7.125,3.1587 7.125,7.125 0,3.9663 -3.1587,7.0937 -7.125,7.0937 h -0.2813 a 3.5035,3.5035 0 1 0 -0.3125,7 c 0.1999,0.01 0.3938,0 0.5938,0 z"
+ id="path5625" />
+ <rect
+ x="2425.5"
+ y="1014.8"
+ width="294.29001"
+ height="45"
+ ry="22.5"
+ rx="22.5"
+ style="fill:#333333"
+ id="rect5629" />
+ <path
+ d="m 2430.3,1122.6 c -65.126,0 -119.22,47.238 -129.91,109.31 h -70.969 c -12.465,0 -22.5,10.035 -22.5,22.5 0,12.465 10.035,22.5 22.5,22.5 h 70.969 c 10.674,62.089 64.77,109.34 129.91,109.34 65.138,0 119.23,-47.252 129.91,-109.34 h 137.06 c 12.465,0 22.5,-10.035 22.5,-22.5 0,-12.465 -10.035,-22.5 -22.5,-22.5 h -137.06 c -10.694,-62.106 -64.814,-109.31 -129.91,-109.31 z"
+ inkscape:connector-curvature="0"
+ style="fill:#333333"
+ id="path5631" />
+ <path
+ sodipodi:start="0"
+ sodipodi:end="6.2776887"
+ sodipodi:cx="2430.3047"
+ sodipodi:cy="1254.4414"
+ sodipodi:open="true"
+ d="m 2519.1982,1254.4414 a 88.893486,88.893486 0 0 1 -88.7714,88.8934 88.893486,88.893486 0 0 1 -89.0153,-88.6491 88.893486,88.893486 0 0 1 88.5267,-89.137 88.893486,88.893486 0 0 1 89.2586,88.4041"
+ sodipodi:type="arc"
+ style="fill:#000000;stroke-width:0.67433"
+ sodipodi:ry="88.893486"
+ sodipodi:rx="88.893486"
+ id="path5633" />
+ <path
+ d="m 2430.3,1175.6 c -43.516,0 -78.781,35.266 -78.781,78.781 0,7.6897 1.1023,15.13 3.1563,22.156 l 145.66,-58.188 c -13.09,-25.386 -39.524,-42.75 -70.031,-42.75 z m 75.625,56.656 -145.69,58.188 c 13.086,25.38 39.541,42.75 70.062,42.75 43.516,0 78.781,-35.297 78.781,-78.812 v -0.4063 c -0.041,-7.535 -1.1424,-14.828 -3.1562,-21.719 z"
+ inkscape:connector-curvature="0"
+ style="fill:#333333"
+ id="path5635" />
+ <rect
+ x="2009.8"
+ y="1431.9"
+ width="710"
+ height="45"
+ ry="22.5"
+ rx="22.5"
+ style="fill:#333333"
+ id="rect5637" />
+ </g>
+ <g
+ id="g29149">
+ <rect
+ x="-1430.8"
+ y="-352.34"
+ width="2055.1001"
+ height="2055.1001"
+ ry="129.3"
+ rx="129.3"
+ style="fill:#000000"
+ id="rect3007" />
+ <rect
+ x="-1384.5"
+ y="-305.98001"
+ width="1962.4"
+ height="1962.4"
+ ry="90.727997"
+ rx="90.727997"
+ style="fill:#333333"
+ id="rect3777" />
+ <rect
+ x="-1358.2"
+ y="-279.72"
+ width="1909.9"
+ height="1909.9"
+ ry="70.525002"
+ rx="70.525002"
+ style="fill:#000000"
+ id="rect3779" />
+ <rect
+ x="375.37"
+ y="802.65002"
+ width="97.857002"
+ height="45"
+ ry="22.5"
+ rx="22.5"
+ style="fill:#333333"
+ id="rect3788" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#333333"
+ sodipodi:nodetypes="sssssssssss"
+ d="m -1106.1,-149.32 c -67.467,0 -121.78,54.312 -121.78,121.78 v 1405.5 c 0,67.467 54.312,121.78 121.78,121.78 h 680.32 c 29.662,0 47.115,-4.0297 64.849,-21.729 l 755.83,-754.34 c 23.851,-23.803 26.352,-40.896 26.352,-72.473 v -678.83 c 0,-67.467 -54.312,-121.78 -121.78,-121.78 z"
+ id="path3796" />
+ <path
+ d="M -208.21,1279.8 230.36,851.23 h -444.29 z"
+ inkscape:connector-curvature="0"
+ style="fill:#000000"
+ id="path5147" />
+ <path
+ d="m -41.063,1048.4 -48.571,-54.286 33.571,-33.571 54.286,54.286"
+ inkscape:connector-curvature="0"
+ style="fill:#e6e6e6"
+ id="path4263" />
+ <path
+ d="m -131.78,1205.5 -37.143,-36.429 11.429,-12.857 30.714,6.4286 54.286,-54.286 c -6.7698,-14.828 -2.7537,-22.791 11.428,-24.286 -18.934,-68.674 49.856,-114.43 102.86,-90 l 60.714,-60 -12.143,-30 11.429,-10 41.428,35"
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc"
+ sodipodi:nodetypes="ccccccccccc"
+ id="path4265" />
+ <path
+ d="m -1090.6,-131.14 c -65.98,0 -119.09,53.114 -119.09,119.09 v 1374.5 c 0,65.98 53.114,119.09 119.09,119.09 h 665.31 c 29.008,0 39.174,-3.9241 56.5,-21.25 l 746.08,-745.9 c 23.302,-23.302 25.781,-31.589 25.781,-62.469 v -663.88 c 0,-65.98 -53.114,-119.09 -119.09,-119.09 h -1374.5 z M 6.1,869.06 h 189.31 l -387.34,382.16 v -178.94 c 0,-107.21 90.807,-203.22 198.03,-203.22 z"
+ inkscape:connector-curvature="0"
+ style="fill:#e1e1d1"
+ id="rect3781" />
+ <path
+ inkscape:connector-curvature="0"
+ transform="matrix(1.037,0,0,1.037,-262.68,-1806.5)"
+ style="opacity:0.85773998;fill:#000000;filter:url(#filter5708)"
+ d="m -823.78,1579.8 c -65.979,0 -119.09,53.114 -119.09,119.09 v 1374.5 c 0,51.168 31.947,94.61 77.062,111.53 -1.8213,-8.3056 -2.7812,-16.944 -2.7812,-25.813 v -1374.5 c 0,-65.979 53.114,-119.09 119.09,-119.09 h 1374.5 c 14.812,0 28.972,2.6957 42.031,7.5938 -11.729,-53.488 -59.201,-93.312 -116.31,-93.312 h -1374.5 z"
+ id="path5854" />
+ <path
+ d="m -897.19,202.71 -1.1875,-5.5312 -30.281,-141.12 h 13.687 l 27.813,126.53 33.875,-126.53 h 13.531 l -36.906,141.47 -1.4063,5.1875 h -5.375 -8.0625 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ sodipodi:nodetypes="cccccccccccc"
+ id="path4143" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="1.2277805"
+ inkscape:transform-center-x="1026.1266"
+ d="m -1081.2,1066.7 a 3.5004,3.5004 0 0 0 1.0743,6.8659 l 119.98,-0.1356 a 3.5004,3.5004 0 1 0 -0.016,-6.9996 l -119.98,0.1356 a 3.5004,3.5004 0 0 0 -1.0582,0.1337 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path3927" />
+ <path
+ sodipodi:nodetypes="csccsccccssccscccs"
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-84.5624"
+ inkscape:transform-center-x="999.99804"
+ d="m -1076.7,973.88 c -1.7172,0.1873 -3.152,1.8167 -3.1203,3.5439 0.032,1.7271 1.5251,3.3029 3.248,3.4271 l 127.18,10.755 c 1.8326,0.1672 3.6502,-1.3563 3.8058,-3.1899 0.1556,-1.8336 -1.3794,-3.6416 -3.2139,-3.7856 l -127.18,-10.755 c -0.2391,-0.023 -0.4806,-0.022 -0.7194,0 z m 160,13.54 c -1.7213,-0.1455 -3.152,1.8167 -3.1203,3.5439 0.032,1.7271 1.5251,3.3029 3.248,3.4271 l 4.4928,0.3709 c 1.8325,0.1671 3.6502,-1.3564 3.8057,-3.1899 0.1556,-1.8336 -1.3794,-3.6416 -3.2139,-3.7856 l -4.4927,-0.3709 c -0.2391,-0.023 -0.4806,-0.022 -0.7194,0 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path3959" />
+ <path
+ d="m -516.79,412.2 c -15.018,0 -27.219,12.201 -27.219,27.219 v 40.406 c 0,15.018 12.201,27.25 27.219,27.25 15.018,0 27.25,-12.232 27.25,-27.25 v -40.406 c 0,-15.018 -12.232,-27.219 -27.25,-27.219 z m 0,8 c 10.725,0 19.25,8.4942 19.25,19.219 v 40.406 c 0,10.725 -8.5254,19.25 -19.25,19.25 -10.724,0 -19.219,-8.5254 -19.219,-19.25 v -40.406 c 0,-10.725 8.4942,-19.219 19.219,-19.219 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect4112" />
+ <path
+ d="m -444.57,412.2 c -15.018,0 -27.219,12.201 -27.219,27.219 v 40.406 c 0,15.018 12.201,27.25 27.219,27.25 15.018,0 27.25,-12.232 27.25,-27.25 v -40.406 c 0,-15.018 -12.232,-27.219 -27.25,-27.219 z m 0,8 c 10.724,0 19.25,8.4942 19.25,19.219 v 40.406 c 0,10.725 -8.5255,19.25 -19.25,19.25 -10.725,0 -19.219,-8.5254 -19.219,-19.25 v -40.406 c 0,-10.725 8.4942,-19.219 19.219,-19.219 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect4114" />
+ <path
+ d="m -689.77,649.6 c -15.018,0 -27.25,12.201 -27.25,27.219 v 40.406 c 0,15.018 12.232,27.25 27.25,27.25 15.018,0 27.219,-12.232 27.219,-27.25 v -40.406 c 0,-15.018 -12.201,-27.219 -27.219,-27.219 z m 0,8 c 10.725,0 19.219,8.4942 19.219,19.219 v 40.406 c 0,10.725 -8.4942,19.25 -19.219,19.25 -10.724,0 -19.25,-8.5254 -19.25,-19.25 v -40.406 c 0,-10.725 8.5255,-19.219 19.25,-19.219 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect4116" />
+ <path
+ d="m -617.55,649.6 c -15.018,0 -27.25,12.201 -27.25,27.219 v 40.406 c 0,15.018 12.232,27.25 27.25,27.25 15.018,0 27.219,-12.232 27.219,-27.25 v -40.406 c 0,-15.018 -12.201,-27.219 -27.219,-27.219 z m 0,8 c 10.724,0 19.219,8.4942 19.219,19.219 v 40.406 c 0,10.725 -8.4942,19.25 -19.219,19.25 -10.7248,0 -19.25,-8.5254 -19.25,-19.25 v -40.406 c 0,-10.725 8.5254,-19.219 19.25,-19.219 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect4118" />
+ <path
+ d="m -768.21,649.57 c -14.558,0 -26.594,11.436 -26.594,25.656 a 4.0004,4.0004 0 1 0 8,0 c 0,-9.7079 8.1783,-17.656 18.594,-17.656 10.415,0 18.625,7.9483 18.625,17.656 0,3.4188 -0.3012,6.2393 -1.9687,9.125 -1.6676,2.8857 -4.8983,6.1281 -11.656,9.5625 -15.36,7.8058 -30.328,23.228 -32.812,46.125 a 4.0004,4.0004 0 0 0 3.9688,4.4375 h 45.969 a 4.0004,4.0004 0 1 0 0,-8 h -41.219 c 3.4595,-17.376 15.261,-29.122 27.688,-35.438 7.6555,-3.8905 12.332,-8.1255 14.969,-12.688 2.6363,-4.5619 3.0625,-9.1977 3.0625,-13.125 0,-14.22 -12.067,-25.656 -26.625,-25.656 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4122" />
+ <path
+ d="m -8.1876,197.04 c -15.018,0 -27.219,12.201 -27.219,27.219 v 40.406 c 0,15.018 12.201,27.25 27.219,27.25 15.018,0 27.25,-12.232 27.25,-27.25 v -40.406 c 0,-15.018 -12.232,-27.219 -27.25,-27.219 z m 0,8 c 10.725,0 19.25,8.4942 19.25,19.219 v 40.406 c 0,10.725 -8.5254,19.25 -19.25,19.25 -10.724,0 -19.219,-8.5254 -19.219,-19.25 v -40.406 c 0,-10.725 8.4942,-19.219 19.219,-19.219 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect4130" />
+ <path
+ d="m -102.13,197.01 a 4.0004,4.0004 0 0 0 -4,4 v 37.25 a 4.0004,4.0004 0 0 0 7.375,2.125 c 2.9991,-4.7533 11.204,-8.0625 18.344,-8.0625 10.688,0 19.25,8.648 19.25,19.625 v 12.344 c 0,10.977 -8.5616,19.625 -19.25,19.625 -7.2063,0 -15.115,-4.3265 -18.219,-9.875 a 4.0081,4.0081 0 1 0 -7,3.9063 c 4.8761,8.7154 15.069,13.969 25.219,13.969 15.054,0 27.25,-12.426 27.25,-27.625 v -12.344 c 0,-15.2 -12.196,-27.625 -27.25,-27.625 -5.9927,0 -12.456,1.4611 -17.719,4.6875 v -24 h 35.406 a 4.0004,4.0004 0 1 0 0,-8 h -39.406 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4132" />
+ <path
+ d="m -984.92,1208.6 a 2.5002,2.5002 0 0 0 -1.8125,0.8437 l -7.8125,8.9063 a 2.5018,2.5018 0 1 0 3.75,3.3125 l 3.4375,-3.9063 v 39.781 a 2.5002,2.5002 0 1 0 5,0 v -46.438 a 2.5002,2.5002 0 0 0 -2.5625,-2.5 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4159" />
+ <path
+ d="m -963.1,1208.6 a 2.5002,2.5002 0 0 0 -2.25,2.5 v 19.906 a 2.5002,2.5002 0 0 0 4.625,1.3125 c 1.5017,-2.3801 5.7817,-4.125 9.5,-4.125 5.5171,0 9.9062,4.4472 9.9062,10.125 v 6.5938 c 0,5.6778 -4.3891,10.125 -9.9062,10.125 -3.7197,0 -7.858,-2.2704 -9.4375,-5.0938 a 2.5041,2.5041 0 1 0 -4.375,2.4375 c 2.6869,4.8027 8.253,7.6563 13.812,7.6563 8.2458,0 14.906,-6.8081 14.906,-15.125 v -6.5938 c 0,-8.3168 -6.6604,-15.125 -14.906,-15.125 -3.0809,0 -6.3424,0.7823 -9.125,2.3438 v -11.938 h 18.562 a 2.5002,2.5002 0 1 0 0,-5 h -21.062 a 2.5002,2.5002 0 0 0 -0.25,0 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4161" />
+ <path
+ d="m -972.35,1253.6 c -2.2316,0 -4.0625,1.8309 -4.0625,4.0625 0,1.973 1.4112,3.5833 3.2812,3.9375 -0.352,1.6422 -0.8243,3.5675 -1.625,6.4062 3.379,-3.3496 5.078,-6.1447 6.0625,-8.6875 0.013,-0.033 0.05,-0.061 0.062,-0.094 v -0.031 c 0.1971,-0.4759 0.3125,-0.984 0.3125,-1.5312 0,-2.2316 -1.7996,-4.0625 -4.0312,-4.0625 z"
+ inkscape:connector-curvature="0"
+ style="fill:#000000"
+ id="path4165" />
+ <path
+ d="m -1077.3,1219.9 c -5.4507,0.026 -10.966,1.9221 -16,6.6563 a 2.5092,2.5092 0 1 0 3.4375,3.6562 c 5.6657,-5.3285 10.954,-6.1333 16.938,-4.875 5.9835,1.2583 12.504,4.8899 19.125,8.7188 6.6209,3.8289 13.346,7.8504 20.312,9.5312 6.9668,1.6809 14.393,0.7108 20.875,-5.2812 a 2.51,2.51 0 1 0 -3.4062,-3.6875 c -5.3695,4.9636 -10.436,5.5429 -16.312,4.125 -5.8769,-1.4179 -12.328,-5.1595 -18.969,-9 -6.6411,-3.8406 -13.471,-7.7833 -20.594,-9.2813 -1.7808,-0.3745 -3.5894,-0.5713 -5.4063,-0.5625 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4170" />
+ <path
+ d="m -852.33,1185.2 c -1.653,0 -3.0458,1.0383 -3.5937,2.5 l -34.656,12.281 v -9.2812 a 2.5002,2.5002 0 0 0 -2.5312,-2.5313 2.5002,2.5002 0 0 0 -2.4688,2.5313 v 11.062 l -11.219,3.9687 a 2.5002,2.5002 0 0 0 0,4.7188 l 11.219,3.9375 v 5.1562 l -11.219,3.9688 a 2.5002,2.5002 0 0 0 0,4.7187 l 11.219,3.9688 v 5.125 l -11.219,3.9687 a 2.5002,2.5002 0 0 0 0,4.7188 l 50.875,18.031 c 0.5479,1.4617 1.9407,2.5313 3.5937,2.5313 2.1292,0 3.8438,-1.7459 3.8438,-3.875 0,-2.1292 -1.7146,-3.8438 -3.8438,-3.8438 -0.698,0 -1.3415,0.2068 -1.9062,0.5313 l -36.344,-12.906 a 2.5002,2.5002 0 0 0 0,-0.1875 v -5.4062 l 10.562,-3.75 a 2.5002,2.5002 0 0 0 0,-4.7188 l -10.562,-3.75 v -5.625 l 10.562,-3.75 a 2.5002,2.5002 0 0 0 0,-4.6875 l -10.562,-3.75 v -5.5937 l 36.344,-12.875 c 0.5647,0.3244 1.2082,0.5312 1.9062,0.5312 2.1292,0 3.8438,-1.7458 3.8438,-3.875 0,-2.1291 -1.7146,-3.8437 -3.8438,-3.8437 z m -43.25,21.844 v 2.0625 l -2.9062,-1.0312 z m 5,9.0938 2.2813,0.8125 -2.2813,0.8125 z m -5,8.6875 v 2.0625 l -2.9062,-1.0313 z m 5,9.1562 2.25,0.7813 -2.25,0.7812 z m -5,8.6563 v 2.0625 l -2.9062,-1.0313 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4172" />
+ <path
+ d="m -788.35,1184.2 a 2.5002,2.5002 0 0 0 -1.7841,1.1002 l -14.719,21.974 -25.423,7.2255 a 2.5002,2.5002 0 0 0 -1.2786,3.9547 l 16.354,20.784 -0.9515,26.434 a 2.5002,2.5002 0 0 0 3.36,2.4085 l 24.799,-9.0988 24.828,9.069 a 2.5002,2.5002 0 0 0 3.3601,-2.4382 l -1.011,-26.404 16.295,-20.814 a 2.5002,2.5002 0 0 0 -1.2786,-3.9547 l -25.423,-7.2255 -14.748,-21.914 a 2.5002,2.5002 0 0 0 -2.3788,-1.1002 z m 0.2973,6.9877 13.202,19.595 a 2.5002,2.5002 0 0 0 1.3976,1.011 l 22.717,6.4524 -14.57,18.584 a 2.5002,2.5002 0 0 0 -0.5353,1.6354 l 0.8921,23.609 -22.182,-8.0879 a 2.5002,2.5002 0 0 0 -1.7246,0 l -22.182,8.1473 0.8623,-23.639 a 2.5002,2.5002 0 0 0 -0.5352,-1.6354 l -14.57,-18.554 22.688,-6.4821 a 2.5002,2.5002 0 0 0 1.3975,-1.011 l 13.143,-19.625 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4195" />
+ <path
+ d="m -788.4,1216 c -4.8517,0 -8.8125,3.9608 -8.8125,8.8125 a 2.1387,2.1387 0 1 0 4.25,0 c 0,-2.5403 2.0222,-4.5312 4.5625,-4.5312 2.5403,0 4.5625,1.9909 4.5625,4.5312 0,0.6956 -0.176,1.0804 -0.9062,1.9688 -0.7302,0.8884 -1.9841,2.0898 -3.4063,3.8125 l -9.3437,11.312 a 2.1387,2.1387 0 0 0 1.6562,3.5 h 15.406 a 2.14065,2.14065 0 0 0 0,-4.2813 h -10.875 l 6.4375,-7.8125 c 1.2474,-1.511 2.4036,-2.5926 3.4062,-3.8125 1.0026,-1.2198 1.9063,-2.8108 1.9063,-4.6875 0,-4.8517 -3.992,-8.8125 -8.8438,-8.8125 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4201" />
+ <path
+ d="m -719.32,1204.4 a 2.5002,2.5002 0 0 0 -2.25,2.5 v 39.656 a 2.5002,2.5002 0 0 0 2.75,2.5 h 0.031 8.5625 c 7.6375,0 13.844,-6.2375 13.844,-13.875 0,-7.6376 -6.2062,-13.844 -13.844,-13.844 h -6.3438 v -11.938 h 14.156 a 2.5002,2.5002 0 1 0 0,-5 h -16.656 a 2.5002,2.5002 0 0 0 -0.25,0 z m 2.75,21.938 h 6.3437 c 4.954,0 8.8438,3.8897 8.8438,8.8438 0,4.954 -3.8898,8.875 -8.8438,8.875 h -6.3437 v -17.719 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4204" />
+ <path
+ d="m -667.07,1189.1 a 2.1387,2.1387 0 0 0 -2.125,2.1875 v 68.688 a 2.1406,2.1406 0 0 0 4.2812,0 v -68.688 A 2.1387,2.1387 0 0 0 -667.07,1189.1 Z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4213" />
+ <path
+ d="m -696.1,1257.9 a 2.503123,2.503123 0 1 0 0.25,5 h 57.594 a 2.5002,2.5002 0 1 0 0,-5 h -57.594 a 2.5002,2.5002 0 0 0 -0.25,0 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4215" />
+ <path
+ d="m -997.61,1301.5 a 2.7908,2.7908 0 0 0 -2.5192,2.7905 v 33.331 a 2.7908,2.7908 0 1 0 5.5809,0 v -30.54 h 10.387 a 2.7908,2.7908 0 1 0 0,-5.581 h -13.177 a 2.7908,2.7908 0 0 0 -0.2713,0 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4217" />
+ <path
+ d="m -967.11,1301.5 c -7.3104,0 -13.294,5.9832 -13.294,13.294 v 12.363 c 0,7.3104 5.9832,13.255 13.294,13.255 7.3104,0 13.294,-5.9445 13.294,-13.255 v -12.363 c 0,-7.3104 -5.9832,-13.294 -13.294,-13.294 z m 0,5.581 c 4.3151,0 7.7126,3.3975 7.7126,7.7126 v 12.363 c 0,4.3151 -3.3975,7.6739 -7.7126,7.6739 -4.315,0 -7.7126,-3.3588 -7.7126,-7.6739 v -12.363 c 0,-4.3151 3.3976,-7.7126 7.7126,-7.7126 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect4219" />
+ <path
+ d="m -939.56,1301.5 c -7.3103,0 -13.294,5.9832 -13.294,13.294 v 12.363 c 0,7.3104 5.9833,13.255 13.294,13.255 6.1555,0 11.384,-4.1964 12.867,-9.9218 a 2.7908,2.7908 0 1 0 -5.3872,-1.3952 c -0.8578,3.3113 -3.8467,5.736 -7.4801,5.736 -4.315,0 -7.7126,-3.3588 -7.7126,-7.6739 v -12.363 c 0,-4.3151 3.3976,-7.7126 7.7126,-7.7126 3.63,0 6.5804,2.4293 7.4414,5.736 a 2.8012164,2.8012164 0 1 0 5.4259,-1.3953 c -1.4886,-5.7173 -6.7175,-9.9217 -12.867,-9.9217 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect4221" />
+ <path
+ d="m -913.39,1301.5 a 2.7908,2.7908 0 0 0 -2.4804,2.8293 v 33.331 a 2.7908,2.7908 0 1 0 5.581,0 v -33.331 A 2.7908,2.7908 0 0 0 -913.39,1301.5 Z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4224" />
+ <path
+ d="m -921.92,1301.5 a 2.7938,2.7938 0 1 0 0.2713,5.581 h 17.131 a 2.7908,2.7908 0 1 0 0,-5.581 h -17.131 a 2.7908,2.7908 0 0 0 -0.2713,0 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4226" />
+ <path
+ d="m -871.11,1301.5 c -5.4866,0 -9.9993,4.5127 -9.9993,9.9993 0,5.4866 4.5127,9.9993 9.9993,9.9993 5.4865,0 9.9992,-4.5127 9.9992,-9.9993 0,-5.4866 -4.5127,-9.9993 -9.9992,-9.9993 z m 0,5.581 c 2.4704,0 4.4183,1.9479 4.4183,4.4183 0,2.4704 -1.9479,4.4183 -4.4183,4.4183 -2.4704,0 -4.4183,-1.9479 -4.4183,-4.4183 0,-2.4704 1.9479,-4.4183 4.4183,-4.4183 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4232" />
+ <path
+ d="m -871.11,1315.8 c -6.7839,0 -12.335,5.5509 -12.335,12.335 0,6.7839 5.5509,12.335 12.335,12.335 6.7839,0 12.335,-5.5509 12.335,-12.335 0,-6.7839 -5.5509,-12.335 -12.335,-12.335 z m 0,5.5506 c 3.7677,0 6.7841,3.0165 6.7841,6.7842 0,3.7677 -3.0164,6.7841 -6.7841,6.7841 -3.7677,0 -6.7842,-3.0164 -6.7842,-6.7841 0,-3.7677 3.0165,-6.7842 6.7842,-6.7842 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4234" />
+ <path
+ d="m -853.24,1301.5 a 2.7948015,2.7948015 0 1 0 0.31,5.581 h 9.8055 c -4.1407,8.1507 -7.5055,18.252 -10.348,29.882 a 2.7918179,2.7918179 0 0 0 5.4259,1.3178 c 3.274,-13.394 7.1815,-24.728 11.898,-32.556 a 2.7908,2.7908 0 0 0 -2.403,-4.2245 h -14.379 a 2.7908,2.7908 0 0 0 -0.31,0 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4236" />
+ <path
+ d="m -817.47,1301.5 a 2.7908,2.7908 0 0 0 -2.1704,1.1239 l -5.8135,7.7514 a 2.7908,2.7908 0 1 0 4.457,3.3331 l 0.8139,-1.0852 v 24.998 a 2.7908,2.7908 0 1 0 5.581,0 v -33.331 a 2.7908,2.7908 0 0 0 -2.868,-2.7905 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4240" />
+ <path
+ d="m -797.9,1301.5 a 2.7908,2.7908 0 0 0 -2.1316,1.1239 l -5.8136,7.7514 a 2.7908,2.7908 0 1 0 4.4571,3.3331 l 0.7751,-1.0464 v 24.959 a 2.7908,2.7908 0 1 0 5.581,0 v -33.331 a 2.7908,2.7908 0 0 0 -2.868,-2.7905 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4250" />
+ <path
+ d="m -726.59,1301.5 c -7.3104,0 -13.294,5.9832 -13.294,13.294 v 12.363 c 0,7.3104 5.9832,13.255 13.294,13.255 7.3104,0 13.294,-5.9445 13.294,-13.255 v -12.363 c 0,-7.3104 -5.9832,-13.294 -13.294,-13.294 z m 0,5.581 c 4.3151,0 7.7127,3.3975 7.7127,7.7126 v 12.363 c 0,4.3151 -3.3976,7.6739 -7.7127,7.6739 -4.315,0 -7.7126,-3.3588 -7.7126,-7.6739 v -12.363 c 0,-4.3151 3.3976,-7.7126 7.7126,-7.7126 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect4252" />
+ <path
+ d="m -753.51,1315.8 c -6.7839,0 -12.335,5.5509 -12.335,12.335 0,6.7839 5.5509,12.335 12.335,12.335 6.7839,0 12.335,-5.5509 12.335,-12.335 0,-6.7839 -5.5509,-12.335 -12.335,-12.335 z m 0,5.5506 c 3.7677,0 6.7841,3.0165 6.7841,6.7842 0,3.7677 -3.0164,6.7841 -6.7841,6.7841 -3.7677,0 -6.7842,-3.0164 -6.7842,-6.7841 0,-3.7677 3.0165,-6.7842 6.7842,-6.7842 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4254" />
+ <path
+ d="m -753.52,1301.5 c -6.7839,0 -12.325,5.5408 -12.325,12.325 v 14.262 a 2.7908,2.7908 0 1 0 5.581,0 v -14.262 c 0,-3.7677 2.976,-6.7437 6.7437,-6.7437 2.7232,0 5.1777,1.6007 6.2399,4.1082 a 2.7965,2.7965 0 1 0 5.1546,-2.1704 c -1.9302,-4.5568 -6.4457,-7.5188 -11.394,-7.5188 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4258" />
+ <path
+ d="m -787.63,1317.3 a 2.7938,2.7938 0 1 0 0.2713,5.581 h 14.418 a 2.7908,2.7908 0 1 0 0,-5.581 h -14.418 a 2.7908,2.7908 0 0 0 -0.2713,0 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4261" />
+ <path
+ d="m 144.24,272.53 c -6.7856,0 -12.69,3.8407 -15.594,9.5 a 2.5002,2.5002 0 1 0 4.4375,2.2812 c 2.0712,-4.0371 6.2544,-6.7812 11.156,-6.7812 6.9827,0 12.531,5.5486 12.531,12.531 v 21.344 c 0,6.9826 -5.5486,12.531 -12.531,12.531 -4.4773,0 -8.3427,-2.2743 -10.562,-5.75 a 2.5010041,2.5010041 0 1 0 -4.2187,2.6875 c 3.1089,4.8679 8.5832,8.0625 14.781,8.0625 9.6662,0 17.531,-7.8651 17.531,-17.531 v -21.344 c 0,-9.6662 -7.8651,-17.531 -17.531,-17.531 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect4271" />
+ <path
+ d="m 221.24,272.53 c -9.6661,0 -17.5,7.865 -17.5,17.531 v 21.344 c 0,9.6661 7.8339,17.531 17.5,17.531 9.6662,0 17.531,-7.8651 17.531,-17.531 v -21.344 c 0,-9.6662 -7.8651,-17.531 -17.531,-17.531 z m 0,5 c 6.9827,0 12.531,5.5485 12.531,12.531 v 21.344 c 0,6.9826 -5.5486,12.531 -12.531,12.531 -6.9826,0 -12.5,-5.5486 -12.5,-12.531 v -21.344 c 0,-6.9827 5.5174,-12.531 12.5,-12.531 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect4273" />
+ <path
+ d="m 169.86,272.53 a 2.503123,2.503123 0 1 0 0.25,5 h 18.156 l -12.375,17.5 a 2.5002,2.5002 0 0 0 2.3437,3.9375 c 5.7215,-0.6862 9.0208,0.5421 11.188,2.4375 2.1668,1.8954 3.3312,4.7379 3.7813,7.7187 0.4713,3.1214 -0.2842,6.6267 -1.9063,9.4063 -1.622,2.7795 -4.0115,4.7449 -6.7187,5.25 -4.475,0.8347 -10.174,-1.6848 -12.25,-5.8438 a 2.5016331,2.5016331 0 1 0 -4.4688,2.25 c 3.2375,6.4873 10.824,9.7687 17.625,8.5 4.4334,-0.827 7.9333,-3.8692 10.125,-7.625 2.1918,-3.7558 3.1946,-8.2945 2.5313,-12.688 -0.5669,-3.7543 -2.0648,-7.7957 -5.4063,-10.719 -2.4107,-2.1089 -5.7373,-3.4771 -9.9062,-3.7813 l 12.312,-17.406 a 2.5002,2.5002 0 0 0 -2.0625,-3.9375 h -22.969 a 2.5002,2.5002 0 0 0 -0.25,0 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4275" />
+ <path
+ d="m 145.11,298.25 a 2.503123,2.503123 0 1 0 0.25,5 h 13.125 a 2.5002,2.5002 0 1 0 0,-5 H 145.36 a 2.5002,2.5002 0 0 0 -0.25,0 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4281" />
+ <path
+ d="m 147.41,654.11 a 3.5004,3.5004 0 0 0 -3,1.9063 l -22,41.875 -75.406,87.469 a 3.5014,3.5014 0 1 0 5.3125,4.5625 l 75.688,-87.844 a 3.5004,3.5004 0 0 0 0.4687,-0.6563 l 22.125,-42.156 a 3.5004,3.5004 0 0 0 -3.1875,-5.1563 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#cc9168"
+ id="path4285" />
+ <path
+ d="m 49.41,773.83 c -7.7494,0 -14.125,6.3443 -14.125,14.094 0,7.7494 6.3756,14.125 14.125,14.125 7.7494,0 14.094,-6.3756 14.094,-14.125 a 3.5004,3.5004 0 1 0 -7,0 c 0,3.9663 -3.1274,7.125 -7.0938,7.125 -3.9663,0 -7.125,-3.1587 -7.125,-7.125 0,-3.9663 3.1587,-7.0937 7.125,-7.0937 h 0.2813 a 3.5035,3.5035 0 1 0 0.3125,-7 c -0.1998,-0.01 -0.3938,0 -0.5938,0 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#ffffff"
+ id="path4287" />
+ <circle
+ r="54.285713"
+ cy="642.65503"
+ cx="194.64856"
+ style="fill:#b3b3b3"
+ id="path4283" />
+ <circle
+ r="42.669113"
+ cy="642.64874"
+ cx="194.65746"
+ style="fill:#808080;stroke-width:0.78601003"
+ id="path4294" />
+ <path
+ d="m 188.35,600.96 c -20.3,3.0393 -35.875,20.541 -35.875,41.688 0,21.147 15.575,38.679 35.875,41.719 v -83.406 z m 12.625,0.031 v 83.344 c 20.284,-3.0534 35.844,-20.552 35.844,-41.688 0,-21.135 -15.56,-38.603 -35.844,-41.656 z"
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc"
+ id="path4289" />
+ <path
+ d="m -268.5,1124 c -1.0098,0.01 -2.0071,0.4765 -2.6563,1.25 l -75.719,87.844 c -0.1719,0.2111 -0.3191,0.4424 -0.4375,0.6875 l -34.12,26.143 c -0.8509,1.628 -0.1437,3.8835 1.4843,4.7343 1.6281,0.8509 3.8836,0.1437 4.7344,-1.4843 l 33.902,-25.768 75.469,-87.594 c 0.8866,-1.0076 1.1136,-2.5465 0.5558,-3.7672 -0.5578,-1.2207 -1.87,-2.0562 -3.212,-2.0453 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#cc9168"
+ sodipodi:nodetypes="cccccscccsc"
+ id="path4296" />
+ <circle
+ r="54.285713"
+ cy="-1272.595"
+ cx="413.50156"
+ transform="scale(-1)"
+ style="fill:#c5c5bf"
+ id="path4300-2" />
+ <circle
+ r="42.669113"
+ cy="-1272.5112"
+ cx="413.50345"
+ transform="scale(-1)"
+ style="fill:#808080;stroke-width:0.78601003"
+ id="path4302" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#cccccc"
+ d="m -407.2,1314.3 c 20.3,-3.0394 35.875,-20.541 35.875,-41.688 0,-21.147 -15.575,-38.679 -35.875,-41.719 v 83.406 z m -12.625,-0.031 v -83.344 c -20.284,3.0534 -35.844,20.552 -35.844,41.688 0,21.135 15.56,38.603 35.844,41.656 z"
+ id="path4304" />
+ </g>
+ <g
+ inkscape:label="HMI:Meter@/PUMP0/SLOTH"
+ transform="matrix(18.912567,0,0,18.912567,-2339.3501,1119.9665)"
+ id="g19348">
+ <path
+ inkscape:label="range"
+ sodipodi:open="true"
+ d="M 69.660373,-2.4694091 A 54.660004,54.024006 0 0 1 124.19821,-56.449318"
+ sodipodi:end="4.7101543"
+ sodipodi:start="3.1424064"
+ sodipodi:ry="54.024006"
+ sodipodi:rx="54.660004"
+ sodipodi:cy="-2.4254472"
+ sodipodi:cx="124.32036"
+ sodipodi:type="arc"
+ id="path19332"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.38814712;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <path
+ inkscape:label="needle"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path19334"
+ d="M 123.16695,-3.4226979 70.419817,-6.3833915"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.92543143;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-start:url(#marker20566-2);marker-end:url(#marker23223)" />
+ </g>
+ <g
+ id="g24628">
+ <path
+ d="m 111.68,388.94 2.4663,1.2855 71.607,37.323 2.4386,1.2711 2.4387,-1.2711 71.607,-37.323 2.4663,-1.2855 -2.4386,-1.271 -71.607,-37.323 -2.4664,-1.2855 -2.4663,1.2855 -71.607,37.323 z m 9.81,0 66.702,-34.766 66.73,34.78 -66.702,34.766 -66.73,-34.781 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect4358" />
+ <path
+ d="m 174.86,371.46 -2.2812,1.375 -11.406,6.9687 -0.7187,0.4375 v 0.8438 4.4687 h 3 v -3.625 l 8.4062,-5.125 v 9.5313 l -3.5937,3.8125 -0.9375,1.0312 0.9375,1.0313 3.5937,3.8125 v 9.5312 l -8.4062,-5.125 v -3.625 h -3 v 4.4688 0.8437 l 0.7187,0.4375 11.406,6.9688 2.2812,1.375 v -2.6563 -12.812 -0.5937 l -0.4062,-0.4375 -3.0313,-3.2188 3.0313,-3.25 0.4062,-0.4375 v -0.5937 -12.781 -2.6562 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4362" />
+ <path
+ d="m 181.18,365.18 v 48.594 h 3 V 365.18 Z m 11.062,0 v 48.594 h 3 V 365.18 Z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4366" />
+ <path
+ d="m 192.36,377.09 -11.062,24.469 2.7188,1.2188 11.094,-24.469 -2.75,-1.2187 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4369" />
+ <path
+ d="m 200.8,368.12 v 2.625 37.5 h 3 v -34.906 l 8,4.5937 v 22.969 h 3 v -23.812 -0.875 l -0.75,-0.4375 -11,-6.3438 -2.25,-1.3125 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4371" />
+ <path
+ d="m 141.52,456.11 c -4.2082,0 -7.5312,3.6567 -7.5312,8 a 1.5002,1.5002 0 1 0 3,0 c 0,-2.8368 2.0679,-5 4.5312,-5 2.4633,0 4.5313,2.1632 4.5313,5 0,1.0172 -0.081,1.842 -0.5,2.6562 -0.419,0.8143 -1.2183,1.7196 -2.9688,2.7188 -4.2189,2.4083 -8.2687,7.139 -8.9375,14.062 a 1.5002,1.5002 0 0 0 1.5,1.625 h 12.281 a 1.5002,1.5002 0 1 0 0,-3 H 137.02 c 1.0026,-4.93 3.9357,-8.3089 7.0625,-10.094 2.1,-1.1987 3.4254,-2.517 4.1563,-3.9375 0.7308,-1.4205 0.8125,-2.8442 0.8125,-4.0312 0,-4.3433 -3.3231,-8 -7.5313,-8 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4373" />
+ <path
+ d="m 191.63,456.12 a 1.5002,1.5002 0 0 0 -1.0625,0.625 l -12.656,18.5 a 1.5002,1.5002 0 0 0 1.2188,2.3438 h 11.188 v 6.0625 a 1.5002,1.5002 0 1 0 3,0 v -6.0625 h 0.5312 a 1.5002,1.5002 0 1 0 0,-3 h -0.5312 v -16.969 a 1.5002,1.5002 0 0 0 -1.6875,-1.5 z m -1.3125,6.3125 v 12.156 h -8.3125 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4157-8" />
+ <path
+ d="m 260.25,456.14 a 1.5002,1.5002 0 0 0 -1.1875,1.5 v 11.156 a 1.5002,1.5002 0 0 0 2.75,0.8125 c 0.8305,-1.2895 3.2878,-2.2812 5.4062,-2.2812 3.1378,0 5.5938,2.446 5.5938,5.5625 v 3.7187 c 0,3.1165 -2.456,5.5625 -5.5938,5.5625 -2.1156,0 -4.4947,-1.271 -5.375,-2.8125 a 1.5002,1.5002 0 1 0 -2.5937,1.5 c 1.5623,2.7359 4.7718,4.3125 7.9687,4.3125 4.7418,0 8.5938,-3.8296 8.5938,-8.5625 v -3.7187 c 0,-4.7328 -3.852,-8.5625 -8.5938,-8.5625 -1.7311,0 -3.5751,0.4087 -5.1562,1.25 v -6.4375 h 10.562 a 1.5002,1.5002 0 1 0 0,-3 h -12.062 a 1.5002,1.5002 0 0 0 -0.3125,0 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4397" />
+ <path
+ d="m 139.49,518.96 a 1.5002,1.5002 0 0 0 -1.1875,0.625 l -4.4687,6.0625 a 1.5002,1.5002 0 1 0 2.4062,1.7812 l 1.7813,-2.4062 v 21.5 a 1.5002,1.5002 0 1 0 3,0 v -26.062 a 1.5002,1.5002 0 0 0 -1.5313,-1.5 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4250-1" />
+ <path
+ d="m 177.16,530.1 c -4.9217,0 -8.9328,4.0208 -8.9328,8.9543 0,4.9336 4.0111,8.9544 8.9328,8.9544 4.9217,0 8.9329,-4.0208 8.9329,-8.9544 0,-4.9335 -4.0112,-8.9543 -8.9329,-8.9543 z m 0,3.0116 c 3.3023,0 5.9286,2.6325 5.9286,5.9427 0,3.3103 -2.6263,5.983 -5.9286,5.983 -3.3023,0 -5.9285,-2.6727 -5.9285,-5.983 0,-3.3102 2.6262,-5.9427 5.9285,-5.9427 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4254-5" />
+ <path
+ d="m 177.15,518.96 c -4.9246,0 -8.9375,4.0381 -8.9375,8.9687 v 11.125 a 1.5002,1.5002 0 1 0 3,0 v -11.125 c 0,-3.3131 2.6381,-5.9687 5.9375,-5.9687 2.3902,0 4.5663,1.4467 5.5,3.6562 a 1.5002,1.5002 0 1 0 2.75,-1.1875 c -1.3986,-3.3097 -4.6606,-5.4687 -8.25,-5.4687 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4258-9" />
+ <path
+ d="m 154.3,536.89 c 4.9217,0 8.9328,-4.0208 8.9328,-8.9543 0,-4.9335 -4.0111,-8.9543 -8.9328,-8.9543 -4.9217,0 -8.9329,4.0208 -8.9329,8.9543 0,4.9335 4.0112,8.9543 8.9329,8.9543 z m 0,-3.0115 c -3.3024,0 -5.9286,-2.6326 -5.9286,-5.9428 0,-3.3103 2.6262,-5.9829 5.9286,-5.9829 3.3023,0 5.9285,2.6726 5.9285,5.9829 0,3.3102 -2.6262,5.9428 -5.9285,5.9428 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4446" />
+ <path
+ d="m 161.74,526.4 a 1.5002,1.5002 0 0 0 -1.5,1.5312 v 11.125 c 0,3.3132 -2.6381,5.9688 -5.9375,5.9688 -2.3902,0 -4.535,-1.4155 -5.4687,-3.625 a 1.5060236,1.5060236 0 1 0 -2.7813,1.1562 c 1.3986,3.3097 4.6606,5.4688 8.25,5.4688 4.9246,0 8.9375,-4.0382 8.9375,-8.9688 v -11.125 a 1.5002,1.5002 0 0 0 -1.5,-1.5312 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4448" />
+ <path
+ d="m 225.02,523.02 a 1.5002,1.5002 0 0 0 -1.3438,1.5 v 18.562 a 1.5002,1.5002 0 1 0 3,0 V 526.02 h 7.7813 a 1.5002,1.5002 0 1 0 0,-3 h -9.2813 a 1.5002,1.5002 0 0 0 -0.1562,0 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4458" />
+ <path
+ d="m -268.26,1141.4 c 7.7494,0 14.125,-6.3444 14.125,-14.094 0,-7.7494 -6.3756,-14.125 -14.125,-14.125 -7.7494,0 -14.094,6.3756 -14.094,14.125 a 3.5004,3.5004 0 1 0 7,0 c 0,-3.9663 3.1275,-7.125 7.0938,-7.125 3.9663,0 7.125,3.1587 7.125,7.125 0,3.9664 -3.1587,7.0938 -7.125,7.0938 h -0.2813 a 3.5035,3.5035 0 1 0 -0.3125,7 c 0.1999,0.01 0.3938,0 0.5938,0 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#ffffff"
+ id="path4298" />
+ <rect
+ x="178.94"
+ y="1014.8"
+ width="294.29001"
+ height="45"
+ ry="22.5"
+ rx="22.5"
+ style="fill:#333333"
+ id="rect3790" />
+ <path
+ d="m 183.75,1122.6 c -65.126,0 -119.22,47.238 -129.91,109.31 h -70.969 c -12.465,0 -22.5,10.035 -22.5,22.5 0,12.465 10.035,22.5 22.5,22.5 H 53.84 c 10.674,62.09 64.77,109.34 129.91,109.34 65.138,0 119.23,-47.252 129.91,-109.34 h 137.06 c 12.465,0 22.5,-10.035 22.5,-22.5 0,-12.465 -10.035,-22.5 -22.5,-22.5 H 313.66 c -10.69,-62.1 -64.81,-109.3 -129.91,-109.3 z"
+ inkscape:connector-curvature="0"
+ style="fill:#333333"
+ id="rect3792" />
+ <path
+ sodipodi:start="0"
+ sodipodi:end="6.2776887"
+ sodipodi:cx="450.52805"
+ sodipodi:cy="401.31888"
+ transform="matrix(0.67433,0,0,0.67433,-120.05,983.82)"
+ sodipodi:open="true"
+ d="M 582.35295,401.31888 A 131.82491,131.82491 0 0 1 450.70919,533.14366 131.82491,131.82491 0 0 1 318.70364,401.68117 131.82491,131.82491 0 0 1 449.9846,269.49509 131.82491,131.82491 0 0 1 582.35096,400.59429"
+ sodipodi:type="arc"
+ style="fill:#000000"
+ sodipodi:ry="131.82491"
+ sodipodi:rx="131.82491"
+ id="path3802" />
+ <path
+ d="m 183.75,1175.6 c -43.516,0 -78.781,35.266 -78.781,78.781 0,7.6898 1.1023,15.13 3.1563,22.156 l 145.66,-58.188 c -13.09,-25.386 -39.524,-42.75 -70.031,-42.75 z m 75.625,56.656 -145.69,58.188 c 13.086,25.38 39.541,42.75 70.062,42.75 43.516,0 78.781,-35.297 78.781,-78.812 v -0.4062 c -0.041,-7.535 -1.1424,-14.828 -3.1562,-21.719 z"
+ inkscape:connector-curvature="0"
+ style="fill:#333333"
+ id="path3804" />
+ <rect
+ x="-236.78"
+ y="1431.9"
+ width="710"
+ height="45"
+ ry="22.5"
+ rx="22.5"
+ style="fill:#333333"
+ id="rect3794" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m 64.543,197.04 c -15.018,0 -27.219,12.201 -27.219,27.219 v 40.406 c 0,15.018 12.2,27.25 27.219,27.25 15.018,0 27.25,-12.232 27.25,-27.25 v -40.406 c 0,-15.018 -12.232,-27.219 -27.25,-27.219 z m 0,8 c 10.725,0 19.25,8.4942 19.25,19.219 v 40.406 c 0,10.725 -8.5254,19.25 -19.25,19.25 -10.724,0 -19.219,-8.5254 -19.219,-19.25 v -40.406 c 0,-10.725 8.4942,-19.219 19.219,-19.219 z"
+ id="path5724" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m -608.11,412.19 a 4.2093,4.2093 0 1 0 0.4204,8.408 h 30.531 l -20.81,29.428 a 4.2044,4.2044 0 0 0 3.9412,6.6213 c 9.6213,-1.1538 15.169,0.9116 18.813,4.0989 3.6435,3.1873 5.6017,7.9672 6.3585,12.98 0.7925,5.2489 -0.4779,11.143 -3.2056,15.818 -2.7276,4.6741 -6.7457,7.9791 -11.298,8.8283 -7.525,1.4038 -17.109,-2.8331 -20.6,-9.8268 a 4.2067,4.2067 0 0 0 -7.5146,3.7836 c 5.4441,10.909 18.201,16.427 29.638,14.294 7.4551,-1.3908 13.34,-6.5064 17.026,-12.822 3.6857,-6.3157 5.3719,-13.948 4.2565,-21.335 -0.9532,-6.3133 -3.4721,-13.109 -9.0911,-18.025 -4.0538,-3.5462 -9.6478,-5.8469 -16.658,-6.3585 l 20.705,-29.27 a 4.2044,4.2044 0 0 0 -3.4683,-6.6213 h -38.624 a 4.2044,4.2044 0 0 0 -0.4204,0 z"
+ id="path5726" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m -304.56,229 c -15.021,0 -27.222,12.201 -27.222,27.222 v 40.446 c 0,15.021 12.201,27.222 27.222,27.222 15.021,0 27.277,-12.201 27.277,-27.222 V 256.222 C -277.283,241.201 -289.54,229 -304.56,229 Z m 0,7.9675 c 10.744,0 19.31,8.5101 19.31,19.255 v 40.446 c 0,10.744 -8.5654,19.255 -19.31,19.255 -10.744,0 -19.255,-8.5101 -19.255,-19.255 v -40.446 c 0,-10.744 8.5101,-19.255 19.255,-19.255 z"
+ id="path5728" />
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ d="m -361.49,229.03 a 3.9804,3.9804 0 0 0 -2.8192,1.8242 l -39.192,61.69 a 3.9804,3.9804 0 0 0 3.3719,6.0806 h 35.157 v 21.227 a 3.9804,3.9804 0 1 0 7.96,0 v -21.227 h 2.377 a 3.9804,3.9804 0 1 0 0,-7.96 h -2.377 v -57.655 a 3.9804,3.9804 0 0 0 -4.4775,-3.98 z m -3.4825,17.634 v 44.001 h -27.916 z"
+ id="path5730" />
+ <path
+ d="m -228.85,229 c -15.021,0 -27.222,12.201 -27.222,27.222 v 40.446 c 0,15.021 12.201,27.222 27.222,27.222 15.021,0 27.277,-12.201 27.277,-27.222 V 256.222 C -201.573,241.201 -213.83,229 -228.85,229 Z m 0,7.9675 c 10.744,0 19.31,8.5101 19.31,19.255 v 40.446 c 0,10.744 -8.5655,19.255 -19.31,19.255 -10.7445,0 -19.255,-8.5101 -19.255,-19.255 v -40.446 c 0,-10.744 8.5101,-19.255 19.255,-19.255 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5732" />
+ <path
+ d="m 191.83,520.42 h 14.362 l -11.391,26.091"
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
+ id="path5734" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
+ d="m 234.26,457.58 h 14.362 l -11.391,26.09"
+ id="path5736" />
+ <path
+ d="m 214.66,456.08 c -4.7833,0 -8.6562,3.9041 -8.6562,8.6875 v 11.719 c 0,4.7834 3.8729,8.6875 8.6562,8.6875 4.7834,0 8.6875,-3.9041 8.6875,-8.6875 v -11.719 c 0,-4.7834 -3.9041,-8.6875 -8.6875,-8.6875 z m 0,3 c 3.1733,0 5.6875,2.5142 5.6875,5.6875 v 11.719 c 0,3.1733 -2.5142,5.6875 -5.6875,5.6875 -3.1732,0 -5.6562,-2.5142 -5.6562,-5.6875 v -11.719 c 0,-3.1733 2.483,-5.6875 5.6562,-5.6875 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect5738" />
+ <path
+ d="m 165.16,456.08 c -4.7833,0 -8.6562,3.9041 -8.6562,8.6875 v 11.719 c 0,4.7834 3.8729,8.6875 8.6562,8.6875 4.7834,0 8.6875,-3.9041 8.6875,-8.6875 v -11.719 c 0,-4.7834 -3.9041,-8.6875 -8.6875,-8.6875 z m 0,3 c 3.1733,0 5.6875,2.5142 5.6875,5.6875 v 11.719 c 0,3.1733 -2.5142,5.6875 -5.6875,5.6875 -3.1732,0 -5.6562,-2.5142 -5.6562,-5.6875 v -11.719 c 0,-3.1733 2.483,-5.6875 5.6562,-5.6875 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect5740" />
+ <path
+ d="m -1171.1,945.11 a 2.6676,2.6676 0 0 0 -2.1117,1.1113 l -7.9464,10.78 a 2.6676,2.6676 0 1 0 4.2788,3.1675 l 3.1675,-4.2789 v 38.232 a 2.6676,2.6676 0 1 0 5.3347,0 v -46.345 a 2.6676,2.6676 0 0 0 -2.7229,-2.6673 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path4250-1-3" />
+ <path
+ d="m -1144.4,945.12 c -8.5059,0 -15.448,6.8868 -15.448,15.393 v 20.894 c 0,8.5059 6.9424,15.393 15.448,15.393 8.5059,0 15.448,-6.8868 15.448,-15.393 v -20.894 c 0,-8.5059 -6.9424,-15.393 -15.448,-15.393 z m 0,5.3346 c 5.6428,0 10.114,4.4153 10.114,10.058 v 20.894 c 0,5.6428 -4.4708,10.058 -10.114,10.058 -5.6428,0 -10.114,-4.4153 -10.114,-10.058 v -20.894 c 0,-5.6428 4.4708,-10.058 10.114,-10.058 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect5738-5" />
+ <path
+ d="m -1107.5,944.76 c -8.5059,0 -15.448,6.8868 -15.448,15.393 v 20.894 c 0,8.5059 6.9424,15.393 15.448,15.393 8.5059,0 15.448,-6.8868 15.448,-15.393 v -20.894 c 0,-8.506 -6.9424,-15.393 -15.448,-15.393 z m 0,5.3347 c 5.6428,0 10.114,4.4153 10.114,10.058 v 20.894 c 0,5.6427 -4.4708,10.058 -10.114,10.058 -5.6428,0 -10.114,-4.4153 -10.114,-10.058 v -20.894 c 0,-5.6428 4.4708,-10.058 10.114,-10.058 z"
+ inkscape:connector-curvature="0"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="rect5763" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-426.79377"
+ inkscape:transform-center-x="933.15822"
+ d="m -981.29,613.51 a 3.5004,3.5004 0 0 0 -1.8867,6.6884 l 109.11,49.911 a 3.5004,3.5004 0 1 0 2.9043,-6.3686 l -109.11,-49.911 A 3.5004,3.5004 0 0 0 -981.29,613.51 Z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5787" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-773.89442"
+ inkscape:transform-center-x="673.81332"
+ d="m -705.38,246.62 a 3.5004,3.5004 0 0 0 -4.4791,5.3134 l 78.781,90.494 a 3.5004,3.5004 0 1 0 5.2739,-4.6022 l -78.781,-90.494 A 3.5004,3.5004 0 0 0 -705.38,246.62 Z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5789" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-976.42875"
+ inkscape:transform-center-x="315.47402"
+ d="m -325.06,33.219 a 3.5004,3.5004 0 0 0 -6.2068,3.1256 l 36.88,114.17 a 3.5004,3.5004 0 1 0 6.6582,-2.1593 l -36.88,-114.18 a 3.5004,3.5004 0 0 0 -0.4514,-0.9664 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5791" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-1026.1273"
+ inkscape:transform-center-x="-0.023585956"
+ d="m 9.3597,-18.399 a 3.5004,3.5004 0 0 0 -6.8671,1.0659 l -0.011,119.98 a 3.5004,3.5004 0 1 0 6.9995,-0.01 l 0.011,-119.98 a 3.5004,3.5004 0 0 0 -0.1324,-1.0584 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5793" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-165.18705"
+ inkscape:transform-center-x="1042.4061"
+ d="m -1068.4,895.12 a 1.888,3.5004 9.0712 0 0 -0.5103,6.8713 l 63.927,10.069 a 1.888,3.5004 9.0712 1 0 1.0946,-6.9134 l -63.927,-10.069 a 1.888,3.5004 9.0712 0 0 -0.5847,0.042 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5795" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-249.64231"
+ inkscape:transform-center-x="1025.4638"
+ d="m -1050.7,808.09 a 1.888,3.5004 13.749 0 0 -1.0689,6.8068 l 62.893,15.249 a 1.888,3.5004 13.749 1 0 1.6548,-6.8011 l -62.893,-15.249 a 1.888,3.5004 13.749 0 0 -0.5862,-0.01 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5797" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-325.18917"
+ inkscape:transform-center-x="1004.0664"
+ d="m -1028.4,730.25 a 1.888,3.5004 18.012 0 0 -1.5721,6.7085 l 61.585,19.882 a 1.888,3.5004 18.012 1 0 2.1559,-6.6593 l -61.585,-19.882 a 1.888,3.5004 18.012 0 0 -0.5842,-0.049 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5799" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-388.82606"
+ inkscape:transform-center-x="981.17869"
+ d="m -1004.6,664.7 a 1.888,3.5004 21.684 0 0 -1.9984,6.5941 l 60.185,23.786 a 1.888,3.5004 21.684 1 0 2.5779,-6.5076 l -60.185,-23.786 a 1.888,3.5004 21.684 0 0 -0.5798,-0.087 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5801" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-531.33261"
+ inkscape:transform-center-x="911.91157"
+ d="m -932.71,517.97 a 1.888,3.5004 30.294 0 0 -2.9631,6.2206 l 55.946,32.528 a 1.888,3.5004 30.294 1 0 3.5231,-6.0483 l -55.946,-32.528 a 1.888,3.5004 30.294 0 0 -0.5603,-0.1725 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5803" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-616.96881"
+ inkscape:transform-center-x="856.29817"
+ d="m -875.09,429.84 a 1.888,3.5004 35.84 0 0 -3.5504,5.9051 l 52.541,37.782 a 1.888,3.5004 35.84 1 0 4.0911,-5.6795 l -52.541,-37.782 a 1.888,3.5004 35.84 0 0 -0.5409,-0.2259 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5805" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-694.89709"
+ inkscape:transform-center-x="794.36465"
+ d="m -810.98,349.68 a 1.888,3.5004 41.246 0 0 -4.0909,5.5444 l 48.748,42.564 a 1.888,3.5004 41.246 1 0 4.608,-5.2689 l -48.748,-42.564 a 1.888,3.5004 41.246 0 0 -0.5173,-0.2758 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5807" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-746.16601"
+ inkscape:transform-center-x="746.41375"
+ d="m -761.37,296.96 a 1.888,3.5004 45.057 0 0 -4.4504,5.2601 l 45.811,45.71 a 1.888,3.5004 45.057 1 0 4.948,-4.9509 l -45.811,-45.71 a 1.888,3.5004 45.057 0 0 -0.4978,-0.3096 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5809" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-846.16619"
+ inkscape:transform-center-x="630.79324"
+ d="m -641.83,194.21 a 1.888,3.5004 53.363 0 0 -5.1636,4.5621 l 38.727,51.849 a 1.888,3.5004 53.363 1 0 5.6113,-4.1842 l -38.727,-51.849 a 1.888,3.5004 53.363 0 0 -0.4478,-0.3782 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5811" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-902.21965"
+ inkscape:transform-center-x="547.62857"
+ d="m -555.89,136.67 a 1.888,3.5004 58.81 0 0 -5.5733,4.0513 l 33.631,55.29 a 1.888,3.5004 58.81 1 0 5.9832,-3.6326 l -33.631,-55.29 a 1.888,3.5004 58.81 0 0 -0.4099,-0.4191 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5813" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-946.46289"
+ inkscape:transform-center-x="467.01752"
+ d="m -472.63,91.3 a 1.888,3.5004 63.803 0 0 -5.9048,3.5509 l 28.69,58.008 a 1.888,3.5004 63.803 1 0 6.2766,-3.098 l -28.69,-58.007 a 1.888,3.5004 63.803 0 0 -0.3719,-0.4531 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5815" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-976.67475"
+ inkscape:transform-center-x="400.00472"
+ d="m -403.43,60.358 a 1.888,3.5004 67.795 0 0 -6.1376,3.1313 l 24.583,59.864 a 1.888,3.5004 67.795 1 0 6.4771,-2.6536 l -24.583,-59.864 a 1.888,3.5004 67.795 0 0 -0.3394,-0.4779 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5817" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-1027.0199"
+ inkscape:transform-center-x="243.16165"
+ d="m -241.53,8.9388 a 1.888,3.5004 76.746 0 0 -6.5501,2.138 l 14.969,62.96 a 1.888,3.5004 76.746 1 0 6.811,-1.6135 l -14.97,-62.961 a 1.888,3.5004 76.746 0 0 -0.2609,-0.5249 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5819" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-1040.3554"
+ inkscape:transform-center-x="177.64633"
+ d="m -173.93,-4.6054 a 1.888,3.5004 80.377 0 0 -6.6723,1.719 l 10.952,63.782 a 1.888,3.5004 80.377 1 0 6.8996,-1.179 l -10.952,-63.782 a 1.888,3.5004 80.377 0 0 -0.2272,-0.5404 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5821" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-1049.0131"
+ inkscape:transform-center-x="116.05553"
+ d="m -110.39,-13.338 a 1.888,3.5004 83.754 0 0 -6.762,1.323 l 7.1761,64.316 a 1.888,3.5004 83.754 1 0 6.9571,-0.7705 l -7.1762,-64.316 a 1.888,3.5004 83.754 0 0 -0.1949,-0.5529 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5823" />
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:transform-center-y="-1053.7903"
+ inkscape:transform-center-x="58.509766"
+ d="m -51.038,-18.083 a 1.888,3.5004 86.889 0 0 -6.8243,0.9512 l 3.6479,64.612 a 1.888,3.5004 86.889 1 0 6.9888,-0.3889 l -3.6479,-64.612 a 1.888,3.5004 86.889 0 0 -0.1645,-0.5627 z"
+ style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
+ id="path5825" />
+ <path
+ d="m -1090.6,-131.14 c -65.98,0 -119.09,53.114 -119.09,119.09 v 1374.5 c 0,65.979 53.114,119.09 119.09,119.09 h 665.31 c 29.008,0 39.174,-3.9241 56.5,-21.25 l 746.08,-745.9 c 23.302,-23.302 25.781,-31.589 25.781,-62.469 v -663.88 c 0,-65.979 -53.114,-119.09 -119.09,-119.09 z"
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient10503)"
+ sodipodi:nodetypes="sssssssssss"
+ id="path6078" />
+ </g>
+ <text
+ id="text24840"
+ y="1795.9766"
+ x="-534.04657"
+ style="font-style:normal;font-weight:normal;font-size:81.67732239px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.18778539"
+ xml:space="preserve"><tspan
+ style="font-size:81.67732239px;stroke-width:2.18778539"
+ y="1795.9766"
+ x="-534.04657"
+ id="tspan24838"
+ sodipodi:role="line">https://openclipart.org/detail/205486/voltmeter-and-ammeter</tspan></text>
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path26897"
+ d="M 1529.3463,1129.8524 H 2700.4096"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <text
+ id="text26946"
+ y="913.46747"
+ x="1723.4104"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.25"
+ y="913.46747"
+ x="1723.4104"
+ id="tspan26944"
+ sodipodi:role="line">[max]</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ x="1523.4104"
+ y="1073.4675"
+ id="text26950"><tspan
+ sodipodi:role="line"
+ id="tspan26948"
+ x="1523.4104"
+ y="1073.4675"
+ style="stroke-width:0.25">[min]</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ x="1583.4104"
+ y="1173.4675"
+ id="text26954"><tspan
+ sodipodi:role="line"
+ id="tspan26952"
+ x="1583.4104"
+ y="1173.4675"
+ style="stroke-width:0.25">[max]</tspan></text>
+ <text
+ id="text26958"
+ y="1485.4675"
+ x="1577.4104"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.25"
+ y="1485.4675"
+ x="1577.4104"
+ id="tspan26956"
+ sodipodi:role="line">[min]</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ x="1514.1893"
+ y="852.01276"
+ id="text27118"><tspan
+ sodipodi:role="line"
+ id="tspan27116"
+ x="1514.1893"
+ y="852.01276"
+ style="stroke-width:0.25">Second point of "needle" labeled SVG path moves along "range" labeled SVG path according to value. </tspan><tspan
+ id="tspan27124"
+ sodipodi:role="line"
+ x="1514.1893"
+ y="864.51276"
+ style="stroke-width:0.25">Value min and max range is either given as arguments or as "min" and "max" labeled SVG texts, or default to 0...100 if unspecified.</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.25"
+ x="1703.4104"
+ y="1047.4675"
+ id="text32265"><tspan
+ sodipodi:role="line"
+ id="tspan32263"
+ x="1703.4104"
+ y="1047.4675"
+ style="fill:#ff6600;fill-opacity:1;stroke-width:0.25">needle</tspan></text>
+ <text
+ id="text32303"
+ y="1067.4675"
+ x="1577.4104"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#3ee800;fill-opacity:1;stroke:none;stroke-width:0.25"
+ xml:space="preserve"><tspan
+ style="fill:#3ee800;fill-opacity:1;stroke-width:0.25"
+ y="1067.4675"
+ x="1577.4104"
+ id="tspan32301"
+ sodipodi:role="line">range</tspan></text>
+ <text
+ id="text32307"
+ y="1307.4675"
+ x="1575.4104"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.25"
+ xml:space="preserve"><tspan
+ style="fill:#ff6600;fill-opacity:1;stroke-width:0.25"
+ y="1307.4675"
+ x="1575.4104"
+ id="tspan32305"
+ sodipodi:role="line">needle</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#3ee800;fill-opacity:1;stroke:none;stroke-width:0.25"
+ x="1575.4104"
+ y="1207.4675"
+ id="text32311"><tspan
+ sodipodi:role="line"
+ id="tspan32309"
+ x="1575.4104"
+ y="1207.4675"
+ style="fill:#3ee800;fill-opacity:1;stroke-width:0.25">range</tspan></text>
+ </g>
+ <g
+ id="g3125"
+ inkscape:label="CircularBar Page"
+ transform="translate(2679.4073,787.70547)">
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g9813"
+ id="use9837"
+ width="100%"
+ height="100%"
+ transform="translate(0.5927,-787.70544)"
+ inkscape:label="HMI:Page:CircularBar" />
+ <g
+ id="g3058">
+ <g
+ id="g31471">
+ <circle
+ id="path4349"
+ style="fill:url(#linearGradient10071);stroke:url(#linearGradient4378);stroke-width:2.13336658"
+ transform="scale(1,-1)"
+ cx="1974.9573"
+ cy="-1907.7942"
+ r="125.20776" />
+ <path
+ transform="matrix(2.1333334,0,0,2.1333334,917.47072,723.36897)"
+ id="path4276"
+ style="fill:url(#radialGradient4372);stroke:url(#linearGradient4374);stroke-width:0.93251997"
+ sodipodi:type="inkscape:offset"
+ d="m 495.71875,499.5625 c -30.71038,0 -55.625,24.94721 -55.625,55.65625 0,30.70904 24.91462,55.65625 55.625,55.65625 30.71038,0 55.65625,-24.94587 55.65625,-55.65625 0,-30.71038 -24.94587,-55.65625 -55.65625,-55.65625 z m 0.5957,6.625 c 26.16416,-0.0377 49.91573,24.21255 48.50196,50.61719 a 1.906235,1.906235 0 0 0 -0.002,0.0312 c -0.96267,26.09835 -23.97335,48.63457 -50.44531,47.41601 a 1.906235,1.906235 0 0 0 -0.0703,-0.002 c -27.12401,-0.25004 -50.9578,-26.70889 -47.31641,-53.83984 a 1.906235,1.906235 0 0 0 0.008,-0.0703 c 2.26482,-23.38029 22.99305,-43.56741 46.70508,-44.05859 a 1.906235,1.906235 0 0 0 0.0781,-0.004 c 0.86395,-0.0528 1.71288,-0.0887 2.54101,-0.0898 z"
+ inkscape:original="M 495.71875 501.46875 C 466.0389 501.46875 442 525.5389 442 555.21875 C 442 584.8986 466.0389 608.96875 495.71875 608.96875 C 525.3986 608.96875 549.46875 584.8986 549.46875 555.21875 C 549.46875 525.5389 525.3986 501.46875 495.71875 501.46875 z M 496.3125 504.28125 C 523.64396 504.24185 548.1961 529.3142 546.71875 556.90625 C 545.71652 584.07711 521.8754 607.42646 494.28125 606.15625 C 465.94032 605.89499 441.28655 578.52263 445.09375 550.15625 C 447.45524 525.77795 468.89562 504.8879 493.65625 504.375 C 494.5429 504.3208 495.43084 504.28245 496.3125 504.28125 z "
+ inkscape:radius="1.9060444" />
+ </g>
+ <g
+ style="fill:none;stroke-width:1.47405899"
+ transform="matrix(0.53304115,0,0,0.53229017,1417.5153,1776.3135)"
+ inkscape:label="HMI:CircularBar@/CIRCULARBAR"
+ id="g30664">
+ <text
+ inkscape:label="value"
+ id="text30652"
+ y="272.72952"
+ x="1045.2592"
+ style="font-style:normal;font-weight:normal;font-size:70.65699005px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;opacity:1;fill-opacity:1;stroke:none;stroke-width:2.60381603px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill-opacity:1;stroke:none;stroke-width:2.60381603px;stroke-opacity:1"
+ y="272.72952"
+ x="1045.2592"
+ id="tspan30650"
+ sodipodi:role="line">65%</tspan></text>
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:url(#linearGradient31386);stroke-width:11.26410389;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120.22967529;stroke-opacity:1;marker:none"
+ id="path30654"
+ inkscape:label="path"
+ sodipodi:type="arc"
+ sodipodi:cx="1045.7766"
+ sodipodi:cy="247.00946"
+ sodipodi:rx="209.17709"
+ sodipodi:ry="209.47221"
+ sodipodi:start="2.268928"
+ sodipodi:end="0.87266463"
+ d="M 911.32017,407.47449 A 209.17709,209.47221 0 0 1 849.21444,175.36575 209.17709,209.47221 0 0 1 1045.7766,37.537247 209.17709,209.47221 0 0 1 1242.3388,175.36574 209.17709,209.47221 0 0 1 1180.2331,407.47449"
+ sodipodi:open="true" />
+ </g>
+ <g
+ id="g31467"
+ inkscape:label="g31467"
+ style="display:inline">
+ <circle
+ id="path4282"
+ style="fill:url(#linearGradient4376);stroke-width:2.13333344"
+ cx="1974.1705"
+ cy="1908.6909"
+ r="76.17897" />
+ <use
+ transform="matrix(0.53304115,0,0,0.53229017,1419.5153,1778.3135)"
+ style="opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:4.00493336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ x="0"
+ y="0"
+ xlink:href="#text30652"
+ id="use31590"
+ width="100%"
+ height="100%" />
+ <use
+ transform="matrix(0.53304115,0,0,0.53229017,1417.5153,1776.3135)"
+ style="opacity:1;vector-effect:none;fill:#333333;fill-opacity:1;stroke:none;stroke-width:4.0050149;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ x="0"
+ y="0"
+ xlink:href="#text30652"
+ id="use31592"
+ width="100%"
+ height="100%" />
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="1512.8077"
+ y="1602.7185"
+ id="text17535"><tspan
+ sodipodi:role="line"
+ id="tspan17533"
+ x="1512.8077"
+ y="1602.7185">HMI:CircularBar:[min:max]@path</tspan></text>
+ <text
+ id="text24840-3"
+ y="2062.4612"
+ x="2067.7786"
+ style="font-style:normal;font-weight:normal;font-size:9.33333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24999999"
+ xml:space="preserve"><tspan
+ style="font-size:9.33333302px;stroke-width:0.24999999"
+ y="2062.4612"
+ x="2067.7786"
+ id="tspan24838-1"
+ sodipodi:role="line">https://openclipart.org/detail/203239/gauges-vectorbased-superb-quality</tspan></text>
+ <g
+ style="stroke-width:1.47405899"
+ transform="matrix(0.53304115,0,0,0.53229017,1094.7583,1794.01)"
+ inkscape:label="HMI:CircularBar@/CIRCULARBAR"
+ id="g1047">
+ <text
+ inkscape:label="value"
+ transform="scale(0.91814752,1.0891496)"
+ id="text1051"
+ y="218.54041"
+ x="1139.0072"
+ style="font-style:normal;font-weight:normal;font-size:90.1384964px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000001;fill-opacity:1;stroke:none;stroke-width:3.32173681px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill:#000001;fill-opacity:1;stroke:none;stroke-width:3.32173681px;stroke-opacity:1"
+ y="218.54041"
+ x="1139.0072"
+ id="tspan1049"
+ sodipodi:role="line">[value]</tspan></text>
+ <path
+ sodipodi:open="true"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ff6600;stroke-width:3.75470138;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120.22967529;stroke-opacity:1;marker:none;marker-start:url(#marker30012);marker-end:url(#marker30310)"
+ id="path1044-3"
+ sodipodi:type="arc"
+ sodipodi:cx="1045.7766"
+ sodipodi:cy="247.00946"
+ sodipodi:rx="180"
+ sodipodi:ry="180"
+ sodipodi:start="2.6179939"
+ sodipodi:end="0.52359878"
+ d="m 889.89204,337.00946 a 180,180 0 0 1 40.1828,-227.888 180,180 0 0 1 231.40356,0 180,180 0 0 1 40.1828,227.888"
+ inkscape:label="path" />
+ <text
+ transform="scale(0.99929531,1.0007052)"
+ inkscape:label="min"
+ id="text7984-5"
+ y="339.48706"
+ x="925.46155"
+ style="font-style:normal;font-weight:normal;font-size:42.93917084px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.07347918px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ xml:space="preserve"><tspan
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:1.07347918px"
+ y="339.48706"
+ x="925.46155"
+ id="tspan7982-0"
+ sodipodi:role="line">0</tspan></text>
+ <text
+ transform="scale(0.9992953,1.0007052)"
+ inkscape:label="max"
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:42.93917084px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.07347918px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="1155.7532"
+ y="345.3743"
+ id="text7988-3"><tspan
+ sodipodi:role="line"
+ id="tspan7986-6"
+ x="1155.7532"
+ y="345.3743"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.07347918px">100</tspan></text>
+ </g>
+ <text
+ id="text26946-1"
+ y="1986.7517"
+ x="1708.0165"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.25"
+ y="1986.7517"
+ x="1708.0165"
+ id="tspan26944-0"
+ sodipodi:role="line">[max]</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ x="1568.494"
+ y="1986.853"
+ id="text26950-6"><tspan
+ sodipodi:role="line"
+ id="tspan26948-3"
+ x="1568.494"
+ y="1986.853"
+ style="stroke-width:0.25">[min]</tspan></text>
+ <text
+ id="text27130"
+ y="1624.3407"
+ x="1514.1893"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.25"
+ y="1624.3407"
+ x="1514.1893"
+ id="tspan27126"
+ sodipodi:role="line">Inkscape's Arc labeled "path" End angle varies according to value. Arc cannot be closed yet, use wide stroke to fill.</tspan><tspan
+ style="stroke-width:0.25"
+ y="1636.8407"
+ x="1514.1893"
+ sodipodi:role="line"
+ id="tspan27128">Value min and max range is either given as arguments or as "min" and "max" labeled SVG texts, or default to 0...100 if unspecified.</tspan></text>
+ <g
+ id="g3045">
+ <g
+ id="g4392"
+ transform="matrix(2.1333334,0,0,2.1333334,1479.7343,1201.5674)">
+ <circle
+ id="path3982"
+ style="fill:url(#radialGradient4401);stroke:url(#linearGradient4403)"
+ transform="matrix(-0.93252,0,0,-0.93252,810.37,640.06)"
+ cx="487.55014"
+ cy="331.46683"
+ r="57.629204" />
+ <circle
+ id="path4008"
+ style="opacity:0.86721999;fill:#000000;filter:url(#filter4030)"
+ transform="matrix(-0.66258,0,0,0.66258,678.79,115.47)"
+ cx="487.55014"
+ cy="331.46683"
+ r="57.629204" />
+ <circle
+ id="path4002"
+ style="fill:url(#radialGradient4405);stroke:url(#linearGradient4407);stroke-width:1.50929999"
+ transform="matrix(-0.66258,0,0,0.66258,678.69,111.47)"
+ cx="487.55014"
+ cy="331.46683"
+ r="57.629204" />
+ </g>
+ <g
+ id="g31570"
+ inkscape:label="HMI:CircularBar@/CIRCULARBAR"
+ transform="matrix(0.53304115,0,0,0.53229017,1681.1611,1776.3135)"
+ style="stroke-width:1.47405899">
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70.55891418px;line-height:1.27999997;font-family:Gautami;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:4.00493336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ x="1045.2592"
+ y="272.72952"
+ id="text31566"
+ inkscape:label="value"><tspan
+ sodipodi:role="line"
+ id="tspan31564"
+ x="1045.2592"
+ y="272.72952"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70.55891418px;line-height:1.27999997;font-family:Gautami;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:4.00493336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">65%</tspan></text>
+ <path
+ sodipodi:open="true"
+ d="M 925.18787,390.92429 A 187.60278,187.86746 0 0 1 869.48766,182.75501 187.60278,187.86746 0 0 1 1045.7766,59.141998 187.60278,187.86746 0 0 1 1222.0656,182.755 187.60278,187.86746 0 0 1 1166.3654,390.92429"
+ sodipodi:end="0.87266463"
+ sodipodi:start="2.268928"
+ sodipodi:ry="187.86746"
+ sodipodi:rx="187.60278"
+ sodipodi:cy="247.00946"
+ sodipodi:cx="1045.7766"
+ sodipodi:type="arc"
+ inkscape:label="path"
+ id="path31568"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:url(#linearGradient10485);stroke-width:18.77350616;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120.22967529;stroke-opacity:1;marker:none" />
+ </g>
+ <use
+ transform="matrix(0.53304115,0,0,0.53229017,1681.1611,1776.3135)"
+ x="0"
+ y="0"
+ xlink:href="#path31568"
+ id="use31670"
+ width="100%"
+ height="100%"
+ style="opacity:0.51399997;stroke-width:1.47405899;filter:url(#filter31680)" />
+ </g>
+ <g
+ id="g3034">
+ <g
+ id="g3010">
+ <circle
+ id="path3836"
+ style="fill:none;stroke:url(#linearGradient10487);stroke-width:4.26666689"
+ transform="scale(-1)"
+ cx="-2500.2302"
+ cy="-1911.7058"
+ r="122.94231" />
+ <circle
+ id="path3826"
+ style="opacity:0.31950001;fill:none;stroke:url(#linearGradient10489);stroke-width:4.26666689"
+ cx="2500.231"
+ cy="1909.5803"
+ r="122.94231" />
+ <circle
+ id="path3848"
+ style="fill:url(#radialGradient10491);stroke-width:1.98937607"
+ transform="scale(-1)"
+ cx="-2500.4646"
+ cy="-1911.9562"
+ r="114.64616" />
+ <ellipse
+ ry="110.12065"
+ rx="108.61215"
+ id="path3850"
+ style="opacity:0.46813001;fill:none;stroke:url(#linearGradient10493);stroke-width:3.19992709"
+ transform="scale(-1)"
+ cx="-2499.5879"
+ cy="-1909.5483" />
+ </g>
+ <g
+ style="fill:none;stroke-width:1.47405899"
+ transform="matrix(0.53304115,0,0,0.53229017,1942.7889,1776.3135)"
+ inkscape:label="HMI:CircularBar@/CIRCULARBAR"
+ id="g2608">
+ <text
+ inkscape:label="value"
+ id="text2604"
+ y="272.72952"
+ x="1045.2592"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70.55891418px;line-height:1.27999997;font-family:Gautami;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill-opacity:1"
+ xml:space="preserve"><tspan
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70.55891418px;line-height:1.27999997;font-family:Gautami;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill-opacity:1"
+ y="272.72952"
+ x="1045.2592"
+ id="tspan2602"
+ sodipodi:role="line">65%</tspan></text>
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:url(#radialGradient10495);stroke-width:84.48078156;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120.22967529;stroke-opacity:1;marker:none"
+ id="path2606"
+ inkscape:label="path"
+ sodipodi:type="arc"
+ sodipodi:cx="1045.1316"
+ sodipodi:cy="253.72691"
+ sodipodi:rx="150.08221"
+ sodipodi:ry="150.29396"
+ sodipodi:start="2.6179939"
+ sodipodi:end="0.52359878"
+ d="m 915.15658,328.87389 a 150.08221,150.29396 0 0 1 33.50403,-190.27883 150.08221,150.29396 0 0 1 192.94199,0 150.08221,150.29396 0 0 1 33.504,190.27883"
+ sodipodi:open="true" />
+ </g>
+ <g
+ id="g3004">
+ <ellipse
+ id="path3917"
+ style="opacity:0.58091;fill:url(#radialGradient10497);stroke-width:1.65561378"
+ transform="scale(-1)"
+ cx="-2500.0576"
+ cy="-1910.7838"
+ rx="95.035629"
+ ry="95.789268" />
+ <circle
+ id="path3870"
+ style="fill:#000000;stroke-width:2.13333344"
+ cx="2499.887"
+ cy="1911.3699"
+ r="57.322792" />
+ <ellipse
+ ry="51.288994"
+ rx="48.272099"
+ id="path3872"
+ style="fill:url(#radialGradient10499);stroke-width:1.85178936"
+ cx="2497.2419"
+ cy="1911.7377" />
+ <path
+ id="path3903"
+ d="m 2496.7959,1849.8538 c -40.7424,0.2449 -70.9077,47.8848 -54.0672,85.0005 13.4447,35.2341 62.5494,50.2187 93.1328,26.8672 30.8438,-21.1872 34.7542,-71.9723 5.2668,-96.0661 -11.9226,-10.8086 -28.2112,-16.7872 -44.3328,-15.7999 z"
+ style="opacity:0.63071002;fill:none;stroke:url(#linearGradient10501);stroke-width:3.20000005"
+ inkscape:connector-curvature="0" />
+ <use
+ height="100%"
+ width="100%"
+ id="use2935"
+ xlink:href="#text2604"
+ y="0"
+ x="0"
+ style="opacity:0.81327999;vector-effect:none;fill:#666666;fill-opacity:1;stroke-width:1.87731254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ transform="matrix(0.53304115,0,0,0.53229017,1944.7889,1778.3135)" />
+ <use
+ height="100%"
+ width="100%"
+ id="use2937"
+ xlink:href="#text2604"
+ y="0"
+ x="0"
+ style="opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;stroke-width:1.87731254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ transform="matrix(0.53304115,0,0,0.53229017,1942.7889,1776.3135)" />
+ </g>
+ </g>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="1905.4562"
+ y="2520.5203"
+ id="text3613"><tspan
+ sodipodi:role="line"
+ id="tspan3611"
+ x="1905.4562"
+ y="2538.2156"
+ style="stroke-width:0.5" /></text>
+ <g
+ id="g6809"
+ transform="translate(2680,780)"
+ inkscape:label="Switch Page">
+ <use
+ x="0"
+ y="0"
+ xlink:href="#g9818"
+ id="use9854"
+ width="100%"
+ height="100%"
+ transform="translate(0,-779.99997)"
+ inkscape:label="HMI:Page:Switch"
+ style="display:inline"
+ sodipodi:insensitive="true" />
+ <text
+ id="text30640"
+ y="2390.3906"
+ x="1512.8077"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="2390.3906"
+ x="1512.8077"
+ id="tspan30638"
+ sodipodi:role="line">HMI:Switch@path</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#fffffb;fill-opacity:1;stroke:none;stroke-width:0.25"
+ x="1514.1893"
+ y="2412.0127"
+ id="text30646"><tspan
+ id="tspan30644"
+ sodipodi:role="line"
+ x="1514.1893"
+ y="2412.0127"
+ style="fill:#fffffb;fill-opacity:1;stroke-width:0.25">Display only childs of widget's element (a SVG group) who's label match value.</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 1705.0033,2700.5501 v -200 m 0,200 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -123.222,-40 h 123.222"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path3520" />
+ <text
+ id="text3539"
+ y="2500.5203"
+ x="1525.4562"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="2500.5203"
+ x="1525.4562"
+ id="tspan3537"
+ sodipodi:role="line">HMI:Switch</tspan><tspan
+ id="tspan3573"
+ style="stroke-width:0.5"
+ y="2525.5203"
+ x="1525.4562"
+ sodipodi:role="line">HMI_INT</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="1785.4562"
+ y="2500.5203"
+ id="text3543"><tspan
+ sodipodi:role="line"
+ id="tspan3541"
+ x="1785.4562"
+ y="2500.5203"
+ style="stroke-width:0.5">1</tspan></text>
+ <text
+ id="text3547"
+ y="2540.5203"
+ x="1785.4562"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="2540.5203"
+ x="1785.4562"
+ id="tspan3545"
+ sodipodi:role="line">2</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="1785.4562"
+ y="2580.5203"
+ id="text3551"><tspan
+ id="tspan3553"
+ sodipodi:role="line"
+ x="1785.4562"
+ y="2580.5203"
+ style="stroke-width:0.5">3</tspan></text>
+ <text
+ id="text3559"
+ y="2620.5203"
+ x="1785.4562"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="2620.5203"
+ x="1785.4562"
+ sodipodi:role="line"
+ id="tspan3557">42</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="1785.4562"
+ y="2660.5203"
+ id="text3563"><tspan
+ id="tspan3565"
+ sodipodi:role="line"
+ x="1785.4562"
+ y="2660.5203"
+ style="stroke-width:0.5">4</tspan></text>
+ <text
+ id="text3571"
+ y="2700.5203"
+ x="1785.4562"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="2700.5203"
+ x="1785.4562"
+ sodipodi:role="line"
+ id="tspan3569">5</tspan></text>
+ <path
+ id="path3575"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 1705.0033,3000.5501 v -200 m 0,200 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -123.222,-40 h 123.222"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="1525.4562"
+ y="2800.5203"
+ id="text3581"><tspan
+ sodipodi:role="line"
+ id="tspan3577"
+ x="1525.4562"
+ y="2800.5203"
+ style="stroke-width:0.5">HMI:Switch</tspan><tspan
+ sodipodi:role="line"
+ x="1525.4562"
+ y="2825.5203"
+ style="stroke-width:0.5"
+ id="tspan3579">HMI_STRING</tspan></text>
+ <text
+ id="text3585"
+ y="2800.5203"
+ x="1785.4562"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="2800.5203"
+ x="1785.4562"
+ id="tspan3583"
+ sodipodi:role="line">"aa"</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="1785.4562"
+ y="2840.5203"
+ id="text3589"><tspan
+ sodipodi:role="line"
+ id="tspan3587"
+ x="1785.4562"
+ y="2840.5203"
+ style="stroke-width:0.5">"abba"</tspan></text>
+ <text
+ id="text3593"
+ y="2880.5203"
+ x="1785.4562"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="2880.5203"
+ x="1785.4562"
+ sodipodi:role="line"
+ id="tspan3591">"mhoo"</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="1785.4562"
+ y="2920.5203"
+ id="text3597"><tspan
+ id="tspan3595"
+ sodipodi:role="line"
+ x="1785.4562"
+ y="2920.5203"
+ style="stroke-width:0.5">"ggg"</tspan></text>
+ <text
+ id="text3601"
+ y="2960.5203"
+ x="1785.4562"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="2960.5203"
+ x="1785.4562"
+ sodipodi:role="line"
+ id="tspan3599">"wtf"</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="1785.4562"
+ y="3000.5203"
+ id="text3605"><tspan
+ id="tspan3603"
+ sodipodi:role="line"
+ x="1785.4562"
+ y="3000.5203"
+ style="stroke-width:0.5">"xxx"</tspan></text>
+ <path
+ sodipodi:nodetypes="cccccccccccc"
+ id="path3607"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 1825.0033,2700.5501 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ d="m 1865.0033,3000.5501 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path3609"
+ sodipodi:nodetypes="cccccccccccc" />
+ <g
+ transform="translate(0,-20)"
+ inkscape:label="HMI:Switch@/SWITCHINT"
+ id="g3755">
+ <path
+ inkscape:label="3"
+ sodipodi:type="star"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3635"
+ sodipodi:sides="3"
+ sodipodi:cx="1909.8937"
+ sodipodi:cy="2602.8892"
+ sodipodi:r1="12.249084"
+ sodipodi:r2="6.1245413"
+ sodipodi:arg1="0.1798535"
+ sodipodi:arg2="1.2270511"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 1921.9452,2605.0803 -9.9875,3.5751 -9.9874,3.5751 1.8976,-10.4369 1.8976,-10.4369 8.0899,6.8618 z" />
+ <path
+ inkscape:label="42"
+ d="m 1921.9452,2639.0803 -6.1245,-0.6483 5.6633,2.4201 -5.9594,-1.554 5.2393,3.2371 -5.6613,-2.4247 4.6984,3.9818 -5.2367,-3.2415 4.0525,4.6377 -4.6951,-3.9858 3.316,5.1898 -4.0486,-4.641 2.5054,5.6261 -3.3116,-5.1926 1.6389,5.9367 -2.5007,-5.6282 0.7358,6.1146 -1.634,-5.938 -0.1838,6.156 -0.7307,-6.1152 -1.0992,6.0598 0.1889,-6.1558 -1.9901,5.8283 1.1042,-6.0589 -2.8365,5.4666 1.9949,-5.8266 -3.6195,4.9828 2.841,-5.4643 -4.3218,4.3877 3.6237,-4.9798 -4.9274,3.6945 4.3254,-4.384 -5.4231,2.9188 4.9306,-3.6904 -5.7976,2.078 5.4255,-2.9144 -6.0425,1.1907 5.7993,-2.0731 -6.1525,0.2768 6.0435,-1.1857 -6.125,-0.6433 6.1527,-0.2717 -5.9607,-1.5489 6.1244,0.6483 -5.6632,-2.42 5.9594,1.5539 -5.2394,-3.2371 5.6613,2.4247 -4.6983,-3.9818 5.2366,3.2415 -4.0524,-4.6376 4.695,3.9857 -3.3159,-5.1898 4.0485,4.641 -2.5054,-5.6261 3.3117,5.1926 -1.639,-5.9366 2.5008,5.6281 -0.7358,-6.1146 1.634,5.938 0.1837,-6.156 0.7307,6.1152 1.0992,-6.0598 -0.1888,6.1558 1.99,-5.8283 -1.1042,6.0589 2.8365,-5.4666 -1.9949,5.8266 3.6196,-4.9827 -2.8411,5.4642 4.3218,-4.3877 -3.6237,4.9798 4.9275,-3.6945 -4.3254,4.3841 5.423,-2.9189 -4.9305,3.6904 5.7975,-2.078 -5.4255,2.9144 6.0425,-1.1907 -5.7992,2.0732 6.1524,-0.2768 -6.0435,1.1856 6.1251,0.6433 -6.1527,0.2717 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="0.25465333"
+ sodipodi:arg1="0.1798535"
+ sodipodi:r2="6.1245413"
+ sodipodi:r1="12.249084"
+ sodipodi:cy="2636.8892"
+ sodipodi:cx="1909.8937"
+ sodipodi:sides="42"
+ id="path3637"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ sodipodi:type="star" />
+ <path
+ inkscape:label="4"
+ sodipodi:type="star"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3639"
+ sodipodi:sides="4"
+ sodipodi:cx="1909.8937"
+ sodipodi:cy="2676.8892"
+ sodipodi:r1="12.249084"
+ sodipodi:r2="6.1245413"
+ sodipodi:arg1="0.1798535"
+ sodipodi:arg2="0.96525166"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 1921.9452,2679.0803 -8.5654,2.8444 -5.6773,7.016 -2.8444,-8.5654 -7.0159,-5.6773 8.5653,-2.8444 5.6774,-7.0159 2.8443,8.5653 z" />
+ <path
+ inkscape:label="5"
+ d="m 1921.9452,2719.0803 -7.8206,2.2371 -2.5907,7.7105 -4.5443,-6.7465 -8.1337,-0.081 5.012,-6.4066 -2.4362,-7.7608 7.6419,2.787 6.6281,-4.7152 -0.2891,8.1291 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="0.80817203"
+ sodipodi:arg1="0.1798535"
+ sodipodi:r2="6.1245413"
+ sodipodi:r1="12.249084"
+ sodipodi:cy="2716.8892"
+ sodipodi:cx="1909.8937"
+ sodipodi:sides="5"
+ id="path3641"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ sodipodi:type="star" />
+ <path
+ inkscape:label="2"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ d="m 1920.4968,2552.3613 -8.5391,6.2941 -8.539,6.2941 z"
+ id="path3643"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <circle
+ inkscape:label="1"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.21478893px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3651"
+ cx="1906.7977"
+ cy="2520.55"
+ r="1.2603201" />
+ </g>
+ <g
+ transform="translate(-58.533071,-260.20956)"
+ id="g3747">
+ <path
+ d="m 2601.9453,2845.0803 -9.9874,3.5751 -9.9875,3.5751 1.8976,-10.4369 1.8977,-10.4369 8.0898,6.8618 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.2270511"
+ sodipodi:arg1="0.1798535"
+ sodipodi:r2="6.1245413"
+ sodipodi:r1="12.249084"
+ sodipodi:cy="2842.8892"
+ sodipodi:cx="2589.8938"
+ sodipodi:sides="3"
+ id="path3717"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ sodipodi:type="star"
+ inkscape:label="3" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3719"
+ sodipodi:sides="42"
+ sodipodi:cx="2589.8938"
+ sodipodi:cy="2876.8892"
+ sodipodi:r1="12.249084"
+ sodipodi:r2="6.1245413"
+ sodipodi:arg1="0.1798535"
+ sodipodi:arg2="0.25465333"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 2601.9453,2879.0803 -6.1245,-0.6483 5.6633,2.4201 -5.9594,-1.554 5.2393,3.2371 -5.6613,-2.4247 4.6984,3.9818 -5.2366,-3.2415 4.0524,4.6377 -4.6951,-3.9858 3.316,5.1898 -4.0486,-4.641 2.5055,5.6261 -3.3117,-5.1926 1.6389,5.9367 -2.5007,-5.6282 0.7358,6.1146 -1.634,-5.938 -0.1837,6.156 -0.7308,-6.1152 -1.0991,6.0598 0.1888,-6.1558 -1.9901,5.8283 1.1043,-6.0589 -2.8366,5.4666 1.995,-5.8266 -3.6196,4.9828 2.841,-5.4643 -4.3218,4.3877 3.6238,-4.9798 -4.9275,3.6945 4.3254,-4.384 -5.4231,2.9188 4.9306,-3.6904 -5.7976,2.078 5.4255,-2.9144 -6.0425,1.1907 5.7993,-2.0731 -6.1525,0.2768 6.0435,-1.1857 -6.125,-0.6433 6.1527,-0.2717 -5.9607,-1.5489 6.1245,0.6483 -5.6633,-2.42 5.9594,1.5539 -5.2393,-3.2371 5.6612,2.4247 -4.6983,-3.9818 5.2366,3.2415 -4.0524,-4.6376 4.6951,3.9857 -3.316,-5.1898 4.0486,4.641 -2.5055,-5.6261 3.3117,5.1926 -1.6389,-5.9366 2.5007,5.6281 -0.7358,-6.1146 1.634,5.938 0.1837,-6.156 0.7308,6.1152 1.0991,-6.0598 -0.1888,6.1558 1.9901,-5.8283 -1.1043,6.0589 2.8366,-5.4666 -1.995,5.8266 3.6196,-4.9827 -2.841,5.4642 4.3218,-4.3877 -3.6238,4.9798 4.9275,-3.6945 -4.3254,4.3841 5.4231,-2.9189 -4.9306,3.6904 5.7976,-2.078 -5.4256,2.9144 6.0425,-1.1907 -5.7992,2.0732 6.1525,-0.2768 -6.0435,1.1856 6.125,0.6433 -6.1527,0.2717 z"
+ inkscape:label="42" />
+ <path
+ d="m 2601.9453,2919.0803 -8.5654,2.8444 -5.6773,7.016 -2.8444,-8.5654 -7.0159,-5.6773 8.5653,-2.8444 5.6774,-7.0159 2.8443,8.5653 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="0.96525166"
+ sodipodi:arg1="0.1798535"
+ sodipodi:r2="6.1245413"
+ sodipodi:r1="12.249084"
+ sodipodi:cy="2916.8892"
+ sodipodi:cx="2589.8938"
+ sodipodi:sides="4"
+ id="path3721"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ sodipodi:type="star"
+ inkscape:label="4" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3723"
+ sodipodi:sides="5"
+ sodipodi:cx="2589.8938"
+ sodipodi:cy="2956.8892"
+ sodipodi:r1="12.249084"
+ sodipodi:r2="6.1245413"
+ sodipodi:arg1="0.1798535"
+ sodipodi:arg2="0.80817203"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 2601.9453,2959.0803 -7.8205,2.2371 -2.5908,7.7105 -4.5442,-6.7465 -8.1338,-0.081 5.012,-6.4066 -2.4361,-7.7608 7.6418,2.787 6.6282,-4.7152 -0.2892,8.1291 z"
+ inkscape:label="5" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path3725"
+ d="m 2600.4968,2792.3613 -8.5391,6.2941 -8.539,6.2941 z"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:label="2" />
+ <circle
+ r="1.2603201"
+ cy="2760.55"
+ cx="2586.7979"
+ id="circle3727"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.21478893px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ inkscape:label="1" />
+ </g>
+ <g
+ transform="translate(-2,20)"
+ inkscape:label="HMI:Switch@/SWITCHSTRING"
+ id="g3681">
+ <path
+ inkscape:label=""mhoo""
+ d="m 1961.9452,2865.0803 -9.9875,3.5751 -9.9874,3.5751 1.8976,-10.4369 1.8976,-10.4369 8.0899,6.8618 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.2270511"
+ sodipodi:arg1="0.1798535"
+ sodipodi:r2="6.1245413"
+ sodipodi:r1="12.249084"
+ sodipodi:cy="2862.8892"
+ sodipodi:cx="1949.8937"
+ sodipodi:sides="3"
+ id="path3653"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ sodipodi:type="star" />
+ <path
+ inkscape:label=""ggg""
+ sodipodi:type="star"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3655"
+ sodipodi:sides="42"
+ sodipodi:cx="1949.8937"
+ sodipodi:cy="2896.8892"
+ sodipodi:r1="12.249084"
+ sodipodi:r2="6.1245413"
+ sodipodi:arg1="0.1798535"
+ sodipodi:arg2="0.25465333"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 1961.9452,2899.0803 -6.1245,-0.6483 5.6633,2.4201 -5.9594,-1.554 5.2393,3.2371 -5.6613,-2.4247 4.6984,3.9818 -5.2367,-3.2415 4.0525,4.6377 -4.6951,-3.9858 3.316,5.1898 -4.0486,-4.641 2.5054,5.6261 -3.3116,-5.1926 1.6389,5.9367 -2.5007,-5.6282 0.7358,6.1146 -1.634,-5.938 -0.1838,6.156 -0.7307,-6.1152 -1.0992,6.0598 0.1889,-6.1558 -1.9901,5.8283 1.1042,-6.0589 -2.8365,5.4666 1.9949,-5.8266 -3.6195,4.9828 2.841,-5.4643 -4.3218,4.3877 3.6237,-4.9798 -4.9274,3.6945 4.3254,-4.384 -5.4231,2.9188 4.9306,-3.6904 -5.7976,2.078 5.4255,-2.9144 -6.0425,1.1907 5.7993,-2.0731 -6.1525,0.2768 6.0435,-1.1857 -6.125,-0.6433 6.1527,-0.2717 -5.9607,-1.5489 6.1244,0.6483 -5.6632,-2.42 5.9594,1.5539 -5.2394,-3.2371 5.6613,2.4247 -4.6983,-3.9818 5.2366,3.2415 -4.0524,-4.6376 4.695,3.9857 -3.3159,-5.1898 4.0485,4.641 -2.5054,-5.6261 3.3117,5.1926 -1.639,-5.9366 2.5008,5.6281 -0.7358,-6.1146 1.634,5.938 0.1837,-6.156 0.7307,6.1152 1.0992,-6.0598 -0.1888,6.1558 1.99,-5.8283 -1.1042,6.0589 2.8365,-5.4666 -1.9949,5.8266 3.6196,-4.9827 -2.8411,5.4642 4.3218,-4.3877 -3.6237,4.9798 4.9275,-3.6945 -4.3254,4.3841 5.423,-2.9189 -4.9305,3.6904 5.7975,-2.078 -5.4255,2.9144 6.0425,-1.1907 -5.7992,2.0732 6.1524,-0.2768 -6.0435,1.1856 6.1251,0.6433 -6.1527,0.2717 z" />
+ <path
+ inkscape:label=""wtf""
+ d="m 1961.9452,2939.0803 -8.5654,2.8444 -5.6773,7.016 -2.8444,-8.5654 -7.0159,-5.6773 8.5653,-2.8444 5.6774,-7.0159 2.8443,8.5653 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="0.96525166"
+ sodipodi:arg1="0.1798535"
+ sodipodi:r2="6.1245413"
+ sodipodi:r1="12.249084"
+ sodipodi:cy="2936.8892"
+ sodipodi:cx="1949.8937"
+ sodipodi:sides="4"
+ id="path3657"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ sodipodi:type="star" />
+ <path
+ inkscape:label=""xxx""
+ sodipodi:type="star"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="path3659"
+ sodipodi:sides="5"
+ sodipodi:cx="1949.8937"
+ sodipodi:cy="2976.8892"
+ sodipodi:r1="12.249084"
+ sodipodi:r2="6.1245413"
+ sodipodi:arg1="0.1798535"
+ sodipodi:arg2="0.80817203"
+ inkscape:flatsided="false"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 1961.9452,2979.0803 -7.8206,2.2371 -2.5907,7.7105 -4.5443,-6.7465 -8.1337,-0.081 5.012,-6.4066 -2.4362,-7.7608 7.6419,2.787 6.6281,-4.7152 -0.2891,8.1291 z" />
+ <path
+ inkscape:label=""abba""
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path3661"
+ d="m 1960.4968,2812.3613 -8.5391,6.2941 -8.539,6.2941 z"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <circle
+ inkscape:label=""aa""
+ r="1.2603201"
+ cy="2780.55"
+ cx="1946.7977"
+ id="circle3663"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.21478893px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ </g>
+ <path
+ id="path3683"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 2225.0033,2700.5501 v -200 m 0,200 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -123.222,-40 h 123.222"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="2045.4561"
+ y="2500.5203"
+ id="text3689"><tspan
+ sodipodi:role="line"
+ id="tspan3685"
+ x="2045.4561"
+ y="2500.5203"
+ style="stroke-width:0.5">HMI:Switch</tspan><tspan
+ sodipodi:role="line"
+ x="2045.4561"
+ y="2525.5203"
+ style="stroke-width:0.5"
+ id="tspan3687">HMI_INT</tspan></text>
+ <text
+ id="text3693"
+ y="2500.5203"
+ x="2305.4561"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="2500.5203"
+ x="2305.4561"
+ id="tspan3691"
+ sodipodi:role="line">1</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="2305.4561"
+ y="2540.5203"
+ id="text3697"><tspan
+ sodipodi:role="line"
+ id="tspan3695"
+ x="2305.4561"
+ y="2540.5203"
+ style="stroke-width:0.5">2</tspan></text>
+ <text
+ id="text3701"
+ y="2580.5203"
+ x="2305.4561"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="2580.5203"
+ x="2305.4561"
+ sodipodi:role="line"
+ id="tspan3699">3</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="2305.4561"
+ y="2620.5203"
+ id="text3705"><tspan
+ id="tspan3703"
+ sodipodi:role="line"
+ x="2305.4561"
+ y="2620.5203"
+ style="stroke-width:0.5">42</tspan></text>
+ <text
+ id="text3709"
+ y="2660.5203"
+ x="2305.4561"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="2660.5203"
+ x="2305.4561"
+ sodipodi:role="line"
+ id="tspan3707">4</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="2305.4561"
+ y="2700.5203"
+ id="text3713"><tspan
+ id="tspan3711"
+ sodipodi:role="line"
+ x="2305.4561"
+ y="2700.5203"
+ style="stroke-width:0.5">5</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ d="m 2345.0033,2700.5501 63.222,-100 m -63.222,60 63.222,-60 m -63.222,20 63.222,-20 m -63.222,-20 63.222,20 m -63.222,-60 63.222,60 m -63.222,-100 63.222,100"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path3715"
+ sodipodi:nodetypes="cccccccccccc" />
+ <g
+ inkscape:label="HMI:Switch@/SWITCHINT"
+ transform="translate(-140,-244)"
+ id="g3805">
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path3717"
+ id="use3757"
+ width="100%"
+ height="100%"
+ transform="translate(-20.000044,-4.6430426e-5)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path3719"
+ id="use3759"
+ width="100%"
+ height="100%"
+ transform="translate(-20.000044,-35.134605)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path3721"
+ id="use3761"
+ width="100%"
+ height="100%"
+ transform="translate(-20.000044,-75.134605)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path3723"
+ id="use3763"
+ width="100%"
+ height="100%"
+ transform="translate(-20.000044,-115.83893)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#path3725"
+ id="use3765"
+ width="100%"
+ height="100%"
+ transform="translate(-20.000044,43.099156)" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#circle3727"
+ id="use3767"
+ width="100%"
+ height="100%"
+ transform="translate(-20.000044,81.204506)" />
+ </g>
+ <path
+ sodipodi:nodetypes="cccccccccccc"
+ id="path3807"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 2516.2253,2700.5501 -63.222,-100 m 63.222,60 -63.222,-60 m 63.222,20 -63.222,-20 m 63.222,-20 -63.222,20 m 63.222,-60 -63.222,60 m 63.222,-100 -63.222,100"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ style="fill:#ffffff;fill-opacity:1;stroke:#fffffc;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend-3)"
+ d="m 2515.0423,2490.0031 h -56.322"
+ id="path8203-6"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffee;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="2459.113"
+ y="2474.7529"
+ id="text8753-2"><tspan
+ sodipodi:role="line"
+ x="2459.113"
+ y="2474.7529"
+ id="tspan8765-1"
+ style="fill:#ffffee;fill-opacity:1;stroke-width:0.5">clone </tspan></text>
+ <g
+ inkscape:label="HMI:Switch@/SWICTHTHREE"
+ id="g5482">
+ <g
+ inkscape:label="3"
+ id="g5259"
+ transform="translate(377.68172,1911.1984)">
+ <use
+ height="100%"
+ width="100%"
+ id="use4514"
+ xlink:href="#g29149"
+ y="0"
+ x="0"
+ transform="matrix(0.1142708,0,0,0.1142708,2084.8332,915.30993)" />
+ <use
+ height="100%"
+ width="100%"
+ id="use4516"
+ xlink:href="#g19348"
+ y="0"
+ x="0"
+ transform="matrix(0.1142708,0,0,0.1142708,2084.8332,915.30993)" />
+ <use
+ height="100%"
+ width="100%"
+ id="use4518"
+ xlink:href="#g24628"
+ y="0"
+ x="0"
+ transform="matrix(0.1142708,0,0,0.1142708,2084.8332,915.30993)" />
+ </g>
+ <use
+ inkscape:label="2"
+ transform="translate(-84.862699,997.78118)"
+ x="0"
+ y="0"
+ xlink:href="#g3034"
+ id="use5261"
+ width="100%"
+ height="100%" />
+ <use
+ inkscape:label="1"
+ x="0"
+ y="0"
+ xlink:href="#g8197"
+ id="use5459"
+ width="100%"
+ height="100%"
+ transform="matrix(0.79711171,0,0,0.79711171,534.15682,1843.6646)" />
+ </g>
+ <text
+ id="text5488"
+ y="2880.5203"
+ x="2133.4561"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ id="tspan5486"
+ style="stroke-width:0.5"
+ y="2880.5203"
+ x="2133.4561"
+ sodipodi:role="line">HMI:Switch</tspan><tspan
+ id="tspan5492"
+ style="stroke-width:0.5"
+ y="2905.5203"
+ x="2133.4561"
+ sodipodi:role="line">can contain</tspan><tspan
+ id="tspan5494"
+ style="stroke-width:0.5"
+ y="2930.5203"
+ x="2133.4561"
+ sodipodi:role="line">other widgets</tspan><tspan
+ id="tspan5498"
+ style="stroke-width:0.5"
+ y="2955.5203"
+ x="2133.4561"
+ sodipodi:role="line">(or clones</tspan><tspan
+ id="tspan5502"
+ style="stroke-width:0.5"
+ y="2980.5203"
+ x="2133.4561"
+ sodipodi:role="line">of them)</tspan></text>
+ </g>
+ <g
+ id="g9918"
+ transform="translate(1340)">
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(2680)"
+ id="use9906"
+ xlink:href="#g9808"
+ y="0"
+ x="0"
+ inkscape:label="HMI:Page:DropDown" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="4192.8076"
+ y="1610.3906"
+ id="text5596"><tspan
+ sodipodi:role="line"
+ id="tspan5594"
+ x="4192.8076"
+ y="1610.3906">HMI:DropDown:[item0:item1:....]@path</tspan></text>
+ <text
+ id="text6121"
+ y="1632.0127"
+ x="4194.1895"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.25"
+ y="1632.0127"
+ x="4194.1895"
+ sodipodi:role="line"
+ id="tspan6119">TODO</tspan></text>
+ </g>
+ <g
+ id="g9926"
+ transform="translate(1340)">
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(2680)"
+ id="use9908"
+ xlink:href="#g9813"
+ y="0"
+ x="0"
+ inkscape:label="HMI:Page:Input" />
+ <text
+ id="text6570"
+ y="2390.4241"
+ x="4192.2148"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="2390.4241"
+ x="4192.2148"
+ id="tspan6568"
+ sodipodi:role="line">HMI:Input@path</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ x="4193.5967"
+ y="2412.0461"
+ id="text6604"><tspan
+ id="tspan6602"
+ sodipodi:role="line"
+ x="4193.5967"
+ y="2412.0461"
+ style="stroke-width:0.25">TODO</tspan></text>
+ </g>
+ <g
+ id="g9933"
+ transform="translate(1340)">
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(2680)"
+ id="use9910"
+ xlink:href="#g9818"
+ y="0"
+ x="0"
+ inkscape:label="HMI:Page:Display" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
+ x="4192.8076"
+ y="3170.3906"
+ id="text6827"><tspan
+ sodipodi:role="line"
+ id="tspan6825"
+ x="4192.8076"
+ y="3170.3906">HMI:Display@path</tspan></text>
+ <text
+ id="text6831"
+ y="3192.0127"
+ x="4194.1895"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#fffffb;fill-opacity:1;stroke:none;stroke-width:0.25"
+ xml:space="preserve"><tspan
+ style="fill:#fffffb;fill-opacity:1;stroke-width:0.25"
+ y="3192.0127"
+ x="4194.1895"
+ sodipodi:role="line"
+ id="tspan6829">TODO</tspan></text>
+ </g>
+ <g
+ id="g9803">
+ <rect
+ style="color:#000000;fill-opacity:1"
+ id="rect8168"
+ width="1280"
+ height="720"
+ x="1480"
+ y="780"
+ inkscape:label="page" />
+ <path
+ inkscape:label="button"
+ style="stroke-width:8.65513134"
+ d="m 2621.5859,851.9308 h -25.9654 L 2664.8616,800 l 69.241,51.9308 h -25.9654 v 51.9308 h -34.6205 v -25.9654 h -17.3103 v 25.9654 h -34.6205 z"
+ id="polygon8206"
+ inkscape:connector-curvature="0" />
+ <text
+ inkscape:label="text"
+ id="text8212"
+ y="859.07928"
+ x="2664.4124"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill-opacity:1;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="text-align:center;text-anchor:middle;fill-opacity:1;stroke-width:0.5"
+ y="859.07928"
+ x="2664.4124"
+ id="tspan8210"
+ sodipodi:role="line">Home</tspan></text>
+ </g>
+ <g
+ id="g9808">
+ <use
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ x="0"
+ y="0"
+ xlink:href="#rect8168"
+ id="use8811"
+ width="100%"
+ height="100%"
+ transform="translate(0,780)" />
+ <g
+ id="g9945"
+ inkscape:label="HMI:Jump:Home">
+ <use
+ transform="translate(0,780)"
+ height="100%"
+ width="100%"
+ id="use8813"
+ xlink:href="#polygon8206"
+ y="0"
+ x="0"
+ style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke-width:8.65513134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ transform="translate(0,780)"
+ height="100%"
+ width="100%"
+ id="use8815"
+ xlink:href="#text8212"
+ y="0"
+ x="0"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.49999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ id="g9813">
+ <use
+ style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:#000000;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ transform="translate(0,1560)"
+ height="100%"
+ width="100%"
+ id="use8838"
+ xlink:href="#rect8168"
+ y="0"
+ x="0" />
+ <g
+ id="g9941"
+ inkscape:label="HMI:Jump:Home">
+ <use
+ x="0"
+ y="0"
+ xlink:href="#polygon8206"
+ id="use8840"
+ width="100%"
+ height="100%"
+ transform="translate(0,1560)"
+ style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke-width:8.65513134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#text8212"
+ id="use8842"
+ width="100%"
+ height="100%"
+ transform="translate(0,1560)"
+ style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.49999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ id="g9818">
+ <use
+ style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ x="0"
+ y="0"
+ xlink:href="#rect8168"
+ id="use8877"
+ width="100%"
+ height="100%"
+ transform="translate(0,2340)" />
+ <g
+ id="g9937"
+ inkscape:label="HMI:Jump:Home">
+ <use
+ transform="translate(0,2340)"
+ height="100%"
+ width="100%"
+ id="use8879"
+ xlink:href="#polygon8206"
+ y="0"
+ x="0"
+ style="opacity:1;vector-effect:none;fill:#fffffc;fill-opacity:1;stroke:none;stroke-width:8.65513134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <use
+ transform="translate(0,2340)"
+ height="100%"
+ width="100%"
+ id="use8881"
+ xlink:href="#text8212"
+ y="0"
+ x="0"
+ style="opacity:1;vector-effect:none;fill:#000009;fill-opacity:1;stroke:none;stroke-width:0.49999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ </g>
+ </g>
+ <g
+ id="g9959"
+ transform="translate(2680)">
+ <use
+ inkscape:label="HMI:Page:Button"
+ x="0"
+ y="0"
+ xlink:href="#g9808"
+ id="use9947"
+ transform="translate(2680)"
+ width="100%"
+ height="100%" />
+ <text
+ id="text9951"
+ y="1610.3906"
+ x="4192.8076"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="1610.3906"
+ x="4192.8076"
+ id="tspan9949"
+ sodipodi:role="line">HMI:Button@path</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ x="4194.1895"
+ y="1632.0127"
+ id="text9957"><tspan
+ id="tspan9955"
+ sodipodi:role="line"
+ x="4194.1895"
+ y="1632.0127"
+ style="stroke-width:0.25">TODO</tspan></text>
+ </g>
+ <g
+ id="g9973"
+ transform="translate(2680)">
+ <use
+ inkscape:label="HMI:Page:ForEach"
+ x="0"
+ y="0"
+ xlink:href="#g9813"
+ id="use9961"
+ transform="translate(2680)"
+ width="100%"
+ height="100%" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="4192.2148"
+ y="2390.4241"
+ id="text9965"><tspan
+ sodipodi:role="line"
+ id="tspan9963"
+ x="4192.2148"
+ y="2390.4241">HMI:ForEach@path</tspan></text>
+ <text
+ id="text9971"
+ y="2412.0461"
+ x="4193.5967"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.25"
+ y="2412.0461"
+ x="4193.5967"
+ sodipodi:role="line"
+ id="tspan9969">TODO</tspan></text>
+ </g>
+ <g
+ id="g9985"
+ transform="translate(2680)">
+ <use
+ inkscape:label="HMI:Page:JsonTable"
+ x="0"
+ y="0"
+ xlink:href="#g9818"
+ id="use9975"
+ transform="translate(2680)"
+ width="100%"
+ height="100%" />
+ <text
+ id="text9979"
+ y="3170.3906"
+ x="4192.8076"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="3170.3906"
+ x="4192.8076"
+ id="tspan9977"
+ sodipodi:role="line">HMI:JsonTable@path</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#fffffb;fill-opacity:1;stroke:none;stroke-width:0.25"
+ x="4194.1895"
+ y="3192.0127"
+ id="text9983"><tspan
+ id="tspan9981"
+ sodipodi:role="line"
+ x="4194.1895"
+ y="3192.0127"
+ style="fill:#fffffb;fill-opacity:1;stroke-width:0.25">TODO</tspan></text>
+ </g>
+ <g
+ id="g31721"
+ inkscape:label="Page Jump and Back">
+ <use
+ inkscape:label="HMI:Page:DropDown"
+ x="0"
+ y="0"
+ xlink:href="#g9808"
+ id="use10505"
+ transform="translate(1340)"
+ width="100%"
+ height="100%"
+ style="display:inline"
+ sodipodi:insensitive="true" />
+ <text
+ id="text10509"
+ y="1610.3906"
+ x="2852.8076"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="1610.3906"
+ x="2852.8076"
+ id="tspan10507"
+ sodipodi:role="line">HMI:Page:PageName[@RootPath]</tspan><tspan
+ y="1660.3906"
+ x="2852.8076"
+ sodipodi:role="line"
+ id="tspan31421">HMI:Jump:PageName[@RelativePath]</tspan><tspan
+ y="1710.3906"
+ x="2852.8076"
+ sodipodi:role="line"
+ id="tspan31423">HMI:Back</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ x="2854.1895"
+ y="1744.0127"
+ id="text10513"><tspan
+ id="tspan10511"
+ sodipodi:role="line"
+ x="2854.1895"
+ y="1744.0127"
+ style="stroke-width:0.25">Pages are full screen, only one is displayed at the same time.</tspan><tspan
+ sodipodi:role="line"
+ x="2854.1895"
+ y="1756.5127"
+ style="stroke-width:0.25"
+ id="tspan31431">If widget's bounding box is included in page bounding box, then widget is part of page.</tspan><tspan
+ sodipodi:role="line"
+ x="2854.1895"
+ y="1769.0127"
+ style="stroke-width:0.25"
+ id="tspan24710">Page change is triggered by HMI:Jump and HMI:Back (TODO: /CURRENTPAGE).</tspan><tspan
+ sodipodi:role="line"
+ x="2854.1895"
+ y="1781.5127"
+ style="stroke-width:0.25"
+ id="tspan31507">HMI:Back takes no parameter and just go back one step in page change history.</tspan><tspan
+ sodipodi:role="line"
+ x="2854.1895"
+ y="1794.0127"
+ style="stroke-width:0.25"
+ id="tspan31509">HMI:Jump can have "inactive", "active" and "disabled" labeled children:</tspan><tspan
+ sodipodi:role="line"
+ x="2854.1895"
+ y="1806.5127"
+ style="stroke-width:0.25"
+ id="tspan31511"> - "inactive" is shown when target page is not currently displayed</tspan><tspan
+ sodipodi:role="line"
+ x="2854.1895"
+ y="1819.0127"
+ style="stroke-width:0.25"
+ id="tspan31513"> - "active" is shown when target page is currently displayed</tspan><tspan
+ sodipodi:role="line"
+ x="2854.1895"
+ y="1831.5127"
+ style="stroke-width:0.25"
+ id="tspan31515"> - "disabled" is shown when relative page's RootPath is set to 0, disabling jump.</tspan></text>
+ <text
+ id="text31455"
+ y="2112.0127"
+ x="2854.1895"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.25"
+ y="2112.0127"
+ x="2854.1895"
+ sodipodi:role="line"
+ id="tspan31466">When [@RootPath] is given, page is a relative page.</tspan><tspan
+ id="tspan31443"
+ style="stroke-width:0.25"
+ y="2124.5127"
+ x="2854.1895"
+ sodipodi:role="line">When using HMI:Jump to reach a relative page, a compatible [@RelativePath] may be provided.</tspan><tspan
+ id="tspan31445"
+ style="stroke-width:0.25"
+ y="2137.0127"
+ x="2854.1895"
+ sodipodi:role="line">To be compatible, RootPath and RelativePath must both point to same HMI_NODE (i.e same POU).</tspan><tspan
+ id="tspan31447"
+ style="stroke-width:0.25"
+ y="2149.5127"
+ x="2854.1895"
+ sodipodi:role="line">Every widget using a path descendant of RootPath in a relative page is relative.</tspan><tspan
+ id="tspan31449"
+ style="stroke-width:0.25"
+ y="2162.0127"
+ x="2854.1895"
+ sodipodi:role="line">Relative widgets get the RootPath section of their path replaced by RelativePath.</tspan><tspan
+ id="tspan31451"
+ style="stroke-width:0.25"
+ y="2174.5127"
+ x="2854.1895"
+ sodipodi:role="line" /><tspan
+ id="tspan31453"
+ style="stroke-width:0.25"
+ y="2187.0127"
+ x="2854.1895"
+ sodipodi:role="line" /></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="2852.8076"
+ y="2082.3906"
+ id="text31500"><tspan
+ id="tspan31498"
+ sodipodi:role="line"
+ x="2852.8076"
+ y="2082.3906">Relative pages</tspan></text>
+ <rect
+ y="1570.8585"
+ x="3642.8337"
+ height="164.25635"
+ width="236.32014"
+ id="rect20533"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <rect
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="rect28563"
+ width="127.0032"
+ height="52.087524"
+ x="3743.3491"
+ y="1588.9159" />
+ <rect
+ y="1674.9159"
+ x="3743.3491"
+ height="54.183105"
+ width="129.09868"
+ id="rect28565"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <rect
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="rect28597"
+ width="236.32014"
+ height="164.25635"
+ x="3642.8337"
+ y="1748.8585" />
+ <rect
+ y="1766.9159"
+ x="3743.3491"
+ height="52.087524"
+ width="127.0032"
+ id="rect28599"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <rect
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="rect28601"
+ width="129.09868"
+ height="54.183105"
+ x="3743.3491"
+ y="1852.9159" />
+ <rect
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="rect28625"
+ width="127.0032"
+ height="52.087524"
+ x="3743.3491"
+ y="1944.9159" />
+ <rect
+ y="2030.9159"
+ x="3743.3491"
+ height="54.183105"
+ width="129.09868"
+ id="rect28627"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <rect
+ y="1926.8585"
+ x="3642.8337"
+ height="164.25635"
+ width="236.32014"
+ id="rect28623"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <rect
+ y="2120.916"
+ x="3743.3491"
+ height="52.087524"
+ width="127.0032"
+ id="rect28651"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <rect
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="rect28653"
+ width="129.09868"
+ height="54.183105"
+ x="3743.3491"
+ y="2206.916" />
+ <rect
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="rect28649"
+ width="236.32014"
+ height="164.25635"
+ x="3642.8337"
+ y="2102.8584" />
+ <rect
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
+ id="rect29757"
+ width="98.502846"
+ height="52.087524"
+ x="3355.3491"
+ y="1870.9159" />
+ <rect
+ y="1958.9159"
+ x="3355.3491"
+ height="54.183105"
+ width="97.664452"
+ id="rect29759"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <g
+ transform="matrix(0.9339736,0,0,0.9339736,570.22762,-7.4794549)"
+ id="g19637">
+ <path
+ style="fill:#41fe00;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 3397.4424,1713.5338 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ id="path841"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:#41fefb;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3397.4424,1998.8049 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ id="circle851"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:#41fe00;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3397.4424,1903.7145 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ id="circle853"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#41fefb;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 3397.4424,1808.6242 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ id="circle855"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#888888;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3179.444,1920.411 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ id="circle843"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:#ffff02;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3288.4432,1951.2597 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ id="circle847"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffff02;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3288.4432,1761.079 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ id="circle849"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker14681)"
+ d="m 3202.1732,1945.5633 64.3092,22.561"
+ id="path873"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker22786)"
+ d="m 3189.8361,1923.0289 81.406,-124.1166"
+ id="path875"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker20902)"
+ d="m 3309.3661,1983.2134 67.1534,29.2922"
+ id="path877"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker14281)"
+ d="m 3309.3661,1964.9604 67.1534,-29.2921"
+ id="path879-5"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker13481)"
+ d="m 3309.3661,1793.0327 67.1534,29.2922"
+ id="path881"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker13093)"
+ d="m 3309.3661,1774.7797 67.1534,-29.2922"
+ id="path883"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path14267"
+ d="m 3397.4424,2188.9856 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ style="opacity:1;vector-effect:none;fill:#41fefb;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path14269"
+ d="m 3397.4424,2093.8953 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ style="opacity:1;vector-effect:none;fill:#41fe00;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path14271"
+ d="m 3288.4432,2141.4404 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ style="opacity:1;vector-effect:none;fill:#ffff02;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path14275"
+ d="m 3309.3661,2173.3942 67.1534,29.2921"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12717)" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path14277"
+ d="m 3309.3661,2155.1411 67.1534,-29.2921"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker13869)" />
+ <path
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path15085"
+ d="m 3185.5597,1965.1532 94.6058,177.9637"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker15089)" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path12689"
+ d="m 3179.444,2205.6822 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ style="fill:#df28c1;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path12695"
+ d="m 2790.1344,2063.0466 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ style="fill:#ba0000;fill-opacity:1;stroke:none;stroke-width:1.88977504;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path12697"
+ d="m 2899.1336,2158.137 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ style="fill:#2e8900;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path12699"
+ d="m 2899.1336,1967.9563 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ style="fill:#d77f00;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path12701"
+ d="m 2807.3355,2100.88 74.597,65.0781"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1197)" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path12703"
+ d="m 2807.3355,2070.8677 74.597,-65.0781"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1207)" />
+ <path
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path12705"
+ d="m 2919.9445,2188.2957 238.5766,31.0872"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1187)" />
+ <path
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path12707"
+ d="m 2917.4342,2170.0427 45.1645,-26.1509"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1177)" />
+ <path
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path12709"
+ d="m 2920.5754,1997.6662 40.6771,27.946"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1167)" />
+ <path
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path12711"
+ d="m 2916.3544,1974.9257 242.1667,-22.5609"
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1157)" />
+ <path
+ style="opacity:1;vector-effect:none;fill:#41fefb;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3397.4424,2378.9856 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ id="path21346"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:#41fe00;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3397.4424,2283.8953 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ id="path21348"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:#ffff02;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3288.4432,2331.4404 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ id="path21350"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12717)"
+ d="m 3309.3661,2363.3942 67.1534,29.2921"
+ id="path21352"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker13869)"
+ d="m 3309.3661,2345.1411 67.1534,-29.2921"
+ id="path21354"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker21366)"
+ d="m 3192.561,2246.4305 82.8503,88.6965"
+ id="path21362"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path12691"
+ d="m 2982.4361,2110.5918 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ style="fill:#4528c1;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path12693"
+ d="m 2982.4361,2015.5015 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
+ style="fill:#4585c1;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ </g>
+ <text
+ id="text20892"
+ y="1947.4917"
+ x="3172.6416"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="1947.4917"
+ x="3172.6416"
+ id="tspan20890"
+ sodipodi:role="line">/</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ x="3644.752"
+ y="1580.1208"
+ id="text23772"><tspan
+ id="tspan28514"
+ sodipodi:role="line"
+ x="3644.752"
+ y="1580.1208"
+ style="stroke-width:0.23349333">HMI:MyPage@/A/B/C0</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ id="path24724"
+ d="M 3988.9001,1724.9696 H 3881.6162"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.7649895;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker25174)" />
+ <text
+ id="text25616"
+ y="1719.4069"
+ x="3911.6536"
+ style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.33149907"
+ y="1719.4069"
+ x="3911.6536"
+ id="tspan25614"
+ sodipodi:role="line">HMI:Jump:MyPage</tspan></text>
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.7649895;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker25626)"
+ d="M 3988.9001,1902.9696 H 3881.6162"
+ id="path25618"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
+ x="3911.6536"
+ y="1897.4069"
+ id="text25622"><tspan
+ sodipodi:role="line"
+ id="tspan25620"
+ x="3911.6536"
+ y="1897.4069"
+ style="stroke-width:0.33149907">HMI:Jump:MyPage@/A/B/C1</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ id="path26120"
+ d="M 3988.9001,2076.9696 H 3881.6162"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.7649895;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker26128)" />
+ <text
+ id="text26124"
+ y="2071.4067"
+ x="3911.6536"
+ style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.33149907"
+ y="2071.4067"
+ x="3911.6536"
+ id="tspan26122"
+ sodipodi:role="line">HMI:Jump:MyPage@/A/B/C2</tspan></text>
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.7649895;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker27950)"
+ d="M 3988.9001,2254.9696 H 3881.6162"
+ id="path27942"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
+ x="3911.6536"
+ y="2249.4067"
+ id="text27946"><tspan
+ sodipodi:role="line"
+ id="tspan27944"
+ x="3911.6536"
+ y="2249.4067"
+ style="stroke-width:0.33149907">HMI:Jump:MyPage@/D/E/F</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3270.6416"
+ y="1859.4917"
+ id="text28484"><tspan
+ sodipodi:role="line"
+ id="tspan28482"
+ x="3270.6416"
+ y="1859.4917"
+ style="stroke-width:0.5">A</tspan></text>
+ <text
+ id="text28488"
+ y="1813.4917"
+ x="3532.6416"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="1813.4917"
+ x="3532.6416"
+ id="tspan28486"
+ sodipodi:role="line">B</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3628.6416"
+ y="1665.4917"
+ id="text28492"><tspan
+ sodipodi:role="line"
+ id="tspan28490"
+ x="3628.6416"
+ y="1665.4917"
+ style="stroke-width:0.5">C0</tspan></text>
+ <text
+ id="text28496"
+ y="1841.4917"
+ x="3628.6416"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="1841.4917"
+ x="3628.6416"
+ id="tspan28494"
+ sodipodi:role="line">C1</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3628.6416"
+ y="2021.4917"
+ id="text28500"><tspan
+ sodipodi:role="line"
+ id="tspan28498"
+ x="3628.6416"
+ y="2021.4917"
+ style="stroke-width:0.5">C2</tspan></text>
+ <text
+ id="text28504"
+ y="2035.4917"
+ x="3270.6416"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="2035.4917"
+ x="3270.6416"
+ id="tspan28502"
+ sodipodi:role="line">D</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3530.6416"
+ y="2079.4917"
+ id="text28508"><tspan
+ sodipodi:role="line"
+ id="tspan28506"
+ x="3530.6416"
+ y="2079.4917"
+ style="stroke-width:0.5">E</tspan></text>
+ <text
+ id="text28512"
+ y="2199.4917"
+ x="3634.6416"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="2199.4917"
+ x="3634.6416"
+ id="tspan28510"
+ sodipodi:role="line">F</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
+ x="3911.6536"
+ y="1739.4069"
+ id="text28532"><tspan
+ sodipodi:role="line"
+ id="tspan28530"
+ x="3911.6536"
+ y="1739.4069"
+ style="stroke-width:0.33149907">HMI:Jump:MyPage@/A/B/C0</tspan></text>
+ <text
+ id="text28488-8"
+ y="1620.8591"
+ x="3736.2322"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="1620.8591"
+ x="3736.2322"
+ id="tspan28486-8"
+ sodipodi:role="line">G</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3736.2322"
+ y="1710.8591"
+ id="text28587"><tspan
+ sodipodi:role="line"
+ id="tspan28585"
+ x="3736.2322"
+ y="1710.8591"
+ style="stroke-width:0.5">H</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ x="3758.752"
+ y="1598.1208"
+ id="text28591"><tspan
+ sodipodi:role="line"
+ id="tspan28589"
+ x="3758.752"
+ y="1598.1208"
+ style="stroke-width:0.23349333">HMI:Widget@/A/B/C0/G</tspan></text>
+ <text
+ id="text28595"
+ y="1684.1208"
+ x="3758.752"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.23349333"
+ y="1684.1208"
+ x="3758.752"
+ id="tspan28593"
+ sodipodi:role="line">HMI:Widget@/A/B/C0/H</tspan></text>
+ <text
+ id="text28605"
+ y="1758.1208"
+ x="3644.752"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.23349333"
+ y="1758.1208"
+ x="3644.752"
+ sodipodi:role="line"
+ id="tspan28603">HMI:MyPage@/A/B/C0</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3736.2322"
+ y="1798.8591"
+ id="text28609"><tspan
+ sodipodi:role="line"
+ id="tspan28607"
+ x="3736.2322"
+ y="1798.8591"
+ style="stroke-width:0.5">G</tspan></text>
+ <text
+ id="text28613"
+ y="1888.8591"
+ x="3736.2322"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="1888.8591"
+ x="3736.2322"
+ id="tspan28611"
+ sodipodi:role="line">H</tspan></text>
+ <text
+ id="text28617"
+ y="1776.1208"
+ x="3758.752"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.23349333"
+ y="1776.1208"
+ x="3758.752"
+ id="tspan28615"
+ sodipodi:role="line">HMI:Widget@/A/B/C0/G</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ x="3758.752"
+ y="1862.1208"
+ id="text28621"><tspan
+ sodipodi:role="line"
+ id="tspan28619"
+ x="3758.752"
+ y="1862.1208"
+ style="stroke-width:0.23349333">HMI:Widget@/A/B/C0/H</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ x="3644.752"
+ y="1936.1208"
+ id="text28631"><tspan
+ id="tspan28629"
+ sodipodi:role="line"
+ x="3644.752"
+ y="1936.1208"
+ style="stroke-width:0.23349333">HMI:MyPage@/A/B/C0</tspan></text>
+ <text
+ id="text28635"
+ y="1976.8591"
+ x="3736.2322"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="1976.8591"
+ x="3736.2322"
+ id="tspan28633"
+ sodipodi:role="line">G</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3736.2322"
+ y="2066.8591"
+ id="text28639"><tspan
+ sodipodi:role="line"
+ id="tspan28637"
+ x="3736.2322"
+ y="2066.8591"
+ style="stroke-width:0.5">H</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ x="3758.752"
+ y="1954.1208"
+ id="text28643"><tspan
+ sodipodi:role="line"
+ id="tspan28641"
+ x="3758.752"
+ y="1954.1208"
+ style="stroke-width:0.23349333">HMI:Widget@/A/B/C0/G</tspan></text>
+ <text
+ id="text28647"
+ y="2040.1208"
+ x="3758.752"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.23349333"
+ y="2040.1208"
+ x="3758.752"
+ id="tspan28645"
+ sodipodi:role="line">HMI:Widget@/A/B/C0/H</tspan></text>
+ <text
+ id="text28657"
+ y="2112.1208"
+ x="3644.752"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.23349333"
+ y="2112.1208"
+ x="3644.752"
+ sodipodi:role="line"
+ id="tspan28655">HMI:MyPage@/A/B/C0</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3736.2322"
+ y="2152.8591"
+ id="text28661"><tspan
+ sodipodi:role="line"
+ id="tspan28659"
+ x="3736.2322"
+ y="2152.8591"
+ style="stroke-width:0.5">G</tspan></text>
+ <text
+ id="text28665"
+ y="2242.8591"
+ x="3736.2322"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="2242.8591"
+ x="3736.2322"
+ id="tspan28663"
+ sodipodi:role="line">H</tspan></text>
+ <text
+ id="text28669"
+ y="2130.1208"
+ x="3758.752"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.23349333"
+ y="2130.1208"
+ x="3758.752"
+ id="tspan28667"
+ sodipodi:role="line">HMI:Widget@/A/B/C0/G</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ x="3758.752"
+ y="2216.1208"
+ id="text28673"><tspan
+ sodipodi:role="line"
+ id="tspan28671"
+ x="3758.752"
+ y="2216.1208"
+ style="stroke-width:0.23349333">HMI:Widget@/A/B/C0/H</tspan></text>
+ <text
+ id="text28677"
+ y="1638.1208"
+ x="3758.752"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.23349333"
+ y="1638.1208"
+ x="3758.752"
+ id="tspan28675"
+ sodipodi:role="line">real path: /A/B/C0/G</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ x="3758.752"
+ y="1724.1208"
+ id="text28681"><tspan
+ sodipodi:role="line"
+ id="tspan28679"
+ x="3758.752"
+ y="1724.1208"
+ style="stroke-width:0.23349333">real path: /A/B/C0/H</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ x="3758.752"
+ y="1816.1208"
+ id="text28685"><tspan
+ sodipodi:role="line"
+ id="tspan28683"
+ x="3758.752"
+ y="1816.1208"
+ style="stroke-width:0.23349333">real path: /A/B/C1/G</tspan></text>
+ <text
+ id="text28689"
+ y="1902.1208"
+ x="3758.752"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.23349333"
+ y="1902.1208"
+ x="3758.752"
+ id="tspan28687"
+ sodipodi:role="line">real path: /A/B/C1/H</tspan></text>
+ <text
+ id="text28693"
+ y="1994.1208"
+ x="3758.752"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.23349333"
+ y="1994.1208"
+ x="3758.752"
+ id="tspan28691"
+ sodipodi:role="line">real path: /A/B/C2/G</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ x="3758.752"
+ y="2080.1208"
+ id="text28697"><tspan
+ sodipodi:role="line"
+ id="tspan28695"
+ x="3758.752"
+ y="2080.1208"
+ style="stroke-width:0.23349333">real path: /A/B/C3/H</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ x="3758.752"
+ y="2168.1208"
+ id="text28701"><tspan
+ sodipodi:role="line"
+ id="tspan28699"
+ x="3758.752"
+ y="2168.1208"
+ style="stroke-width:0.23349333">real path: /D/E/F/G</tspan></text>
+ <text
+ id="text28705"
+ y="2254.1208"
+ x="3758.752"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.23349333"
+ y="2254.1208"
+ x="3758.752"
+ id="tspan28703"
+ sodipodi:role="line">real path: /D/E/F/H</tspan></text>
+ <rect
+ y="1854.8585"
+ x="3314.7683"
+ height="164.25647"
+ width="147.04692"
+ id="rect29755"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ x="3316.752"
+ y="1864.1208"
+ id="text29763"><tspan
+ id="tspan29761"
+ sodipodi:role="line"
+ x="3316.752"
+ y="1864.1208"
+ style="stroke-width:0.23349333">HMI:SomePage</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ x="3370.752"
+ y="1880.1208"
+ id="text29767"><tspan
+ sodipodi:role="line"
+ id="tspan29765"
+ x="3370.752"
+ y="1880.1208"
+ style="stroke-width:0.23349333">HMI:Widget@/A/I</tspan></text>
+ <text
+ id="text29771"
+ y="1968.1208"
+ x="3370.752"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.23349333"
+ y="1968.1208"
+ x="3370.752"
+ id="tspan29769"
+ sodipodi:role="line">HMI:Widget@/D/J</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3352.3206"
+ y="1902.8329"
+ id="text28484-9"><tspan
+ sodipodi:role="line"
+ id="tspan28482-7"
+ x="3352.3206"
+ y="1902.8329"
+ style="stroke-width:0.5">I</tspan></text>
+ <text
+ id="text29985"
+ y="1992.8329"
+ x="3352.3206"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.5"
+ y="1992.8329"
+ x="3352.3206"
+ id="tspan29983"
+ sodipodi:role="line">J</tspan></text>
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.7649895;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker30413)"
+ d="M 3572.4377,1951.115 H 3465.1538"
+ id="path30405"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
+ x="3465.8237"
+ y="1967.2129"
+ id="text30409"><tspan
+ sodipodi:role="line"
+ id="tspan30407"
+ x="3465.8237"
+ y="1967.2129"
+ style="stroke-width:0.33149907">HMI:Jump:SomePage</tspan></text>
+ <text
+ id="text31389"
+ y="1912.1208"
+ x="3124.752"
+ style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.23349333"
+ y="1912.1208"
+ x="3124.752"
+ sodipodi:role="line"
+ id="tspan31387">HMI_TREE root</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ id="path12699-3"
+ d="m 2905.556,1872.8754 a 21.320009,21.320009 0 0 1 21.32,21.32 21.320009,21.320009 0 0 1 -21.32,21.32 21.320009,21.320009 0 0 1 -21.32,-21.32 21.320009,21.320009 0 0 1 21.32,-21.32 z"
+ style="fill:none;fill-opacity:1;stroke:#000100;stroke-width:1.76499999;stroke-miterlimit:4;stroke-dasharray:5.29499996, 1.76499999;stroke-dashoffset:0;stroke-opacity:1"
+ inkscape:transform-center-x="-171.89143"
+ inkscape:transform-center-y="-18.96737" />
+ <path
+ style="fill:none;fill-opacity:1;stroke:#000100;stroke-width:1.7649895;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ d="m 2905.5559,1920.8755 a 21.320009,21.320009 0 0 1 21.32,21.32 21.320009,21.320009 0 0 1 -21.32,21.32 21.320009,21.320009 0 0 1 -21.32,-21.32 21.320009,21.320009 0 0 1 21.32,-21.32 z"
+ id="path841-0"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
+ x="2940.9072"
+ y="1897.7371"
+ id="text30409-9"><tspan
+ sodipodi:role="line"
+ id="tspan30407-2"
+ x="2940.9072"
+ y="1897.7371"
+ style="stroke-width:0.33149907">HMI_NODE in a POU</tspan></text>
+ <text
+ id="text31781"
+ y="1945.7371"
+ x="2940.9072"
+ style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.33149907"
+ y="1945.7371"
+ x="2940.9072"
+ id="tspan31779"
+ sodipodi:role="line">HMI_* variable</tspan></text>
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="2852.2148"
+ y="1710.4241"
+ id="text10521-7"><tspan
+ sodipodi:role="line"
+ id="tspan10519-6"
+ x="2852.2148"
+ y="1745.8147" /></text>
+ <g
+ id="g33071"
+ inkscape:label="KeyPad page">
+ <use
+ inkscape:label="HMI:Page:KeyPad"
+ x="0"
+ y="0"
+ xlink:href="#g9813"
+ id="use10517"
+ transform="translate(1340)"
+ width="100%"
+ height="100%"
+ sodipodi:insensitive="true" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="2852.2148"
+ y="2390.4241"
+ id="text10521"><tspan
+ sodipodi:role="line"
+ id="tspan10519"
+ x="2852.2148"
+ y="2390.4241">HMI:KeyPad:HMI_TYPE[:HMI_TYPE...]</tspan></text>
+ <text
+ id="text10525"
+ y="2412.0461"
+ x="2853.5967"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.25"
+ y="2412.0461"
+ x="2853.5967"
+ sodipodi:role="line"
+ id="tspan10523">KeyPad widget let user draw keyboard for different types of input.</tspan><tspan
+ style="stroke-width:0.25"
+ y="2424.5461"
+ x="2853.5967"
+ sodipodi:role="line"
+ id="tspan33108">It is shown for example when editing a value from HMI:Input widget.</tspan></text>
+ <g
+ id="g33240"
+ transform="translate(0,4.0539551)">
+ <rect
+ style="fill:url(#pattern33036);stroke:none;stroke-width:0.34027249"
+ width="435.5488"
+ height="244.9962"
+ x="2860.2483"
+ y="2779.1428"
+ id="rect32318" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:16.32951546px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40823787"
+ x="2872.0142"
+ y="2770.2192"
+ id="text33049"><tspan
+ sodipodi:role="line"
+ id="tspan33047"
+ x="2872.0142"
+ y="2770.2192"
+ style="stroke-width:0.40823787">HMI:Keypad:HMI_STRING:HMI_LOCAL:PAGE_LOCAL</tspan></text>
+ </g>
+ <g
+ id="g33245"
+ transform="translate(-40)">
+ <rect
+ style="fill:url(#pattern33045);stroke:none;stroke-width:0.34027249"
+ width="435.5488"
+ height="244.9962"
+ x="3541.9167"
+ y="2783.1968"
+ id="rect33043" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:16.32951546px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40823787"
+ x="3631.9973"
+ y="2772.2732"
+ id="text33053"><tspan
+ sodipodi:role="line"
+ id="tspan33051"
+ x="3631.9973"
+ y="2772.2732"
+ style="stroke-width:0.40823787">HMI:Keypad:HMI_INT:HMI_REAL</tspan></text>
+ </g>
+ <g
+ id="g33235"
+ transform="translate(80)">
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3046.575,2704.1388 v -240"
+ id="path33345"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3046.575,2704.1388 h 63.222"
+ id="path33343"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3046.575,2664.1388 h 63.222"
+ id="path33341"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3046.575,2624.1388 h 63.222"
+ id="path33339"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3046.575,2584.1388 h 63.222"
+ id="path33337"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3046.575,2544.1388 h 63.222"
+ id="path33335"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 2986.575,2464.1388 h 123.222"
+ id="path3520-3"
+ inkscape:connector-curvature="0" />
+ <text
+ id="text3543-5"
+ y="2507.3318"
+ x="3118.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2507.3318"
+ x="3118.6919"
+ id="tspan3541-1"
+ sodipodi:role="line">Info</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3118.6919"
+ y="2547.3318"
+ id="text3547-7"><tspan
+ sodipodi:role="line"
+ id="tspan3545-4"
+ x="3118.6919"
+ y="2547.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">Esc</tspan></text>
+ <text
+ id="text3551-3"
+ y="2587.3318"
+ x="3118.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2587.3318"
+ x="3118.6919"
+ sodipodi:role="line"
+ id="tspan3553-1">Shift</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3118.6919"
+ y="2627.3318"
+ id="text3559-4"><tspan
+ id="tspan3557-6"
+ sodipodi:role="line"
+ x="3118.6919"
+ y="2627.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">Enter</tspan></text>
+ <text
+ id="text3563-9"
+ y="2667.3318"
+ x="3118.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2667.3318"
+ x="3118.6919"
+ sodipodi:role="line"
+ id="tspan3565-4">[...]</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3118.6919"
+ y="2707.3318"
+ id="text3571-2"><tspan
+ id="tspan3569-2"
+ sodipodi:role="line"
+ x="3118.6919"
+ y="2707.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">Keys</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3304.6919"
+ y="2707.3318"
+ id="text33160"><tspan
+ sodipodi:role="line"
+ id="tspan33158"
+ x="3304.6919"
+ y="2707.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">0 +</tspan></text>
+ <text
+ id="text33164"
+ y="2747.3318"
+ x="3304.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2747.3318"
+ x="3304.6919"
+ id="tspan33162"
+ sodipodi:role="line">9 -</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3304.6919"
+ y="2787.3318"
+ id="text33168"><tspan
+ id="tspan33166"
+ sodipodi:role="line"
+ x="3304.6919"
+ y="2787.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">8</tspan></text>
+ <text
+ id="text33172"
+ y="2827.3318"
+ x="3304.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2827.3318"
+ x="3304.6919"
+ sodipodi:role="line"
+ id="tspan33170">[...]</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3304.6919"
+ y="2867.3318"
+ id="text33176"><tspan
+ id="tspan33174"
+ sodipodi:role="line"
+ x="3304.6919"
+ y="2867.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">q Q</tspan></text>
+ <text
+ id="text33180"
+ y="2907.3318"
+ x="3304.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2907.3318"
+ x="3304.6919"
+ sodipodi:role="line"
+ id="tspan33178">w W</tspan></text>
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ d="m 3232.575,3024.1388 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,80 v -320 m 0,200 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -123.222,-40 h 123.222"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="path33182" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3304.6919"
+ y="2947.3318"
+ id="text33187"><tspan
+ id="tspan33185"
+ sodipodi:role="line"
+ x="3304.6919"
+ y="2947.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">[...]</tspan></text>
+ <text
+ id="text33191"
+ y="2987.3318"
+ x="3304.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2987.3318"
+ x="3304.6919"
+ sodipodi:role="line"
+ id="tspan33189">, ;</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3304.6919"
+ y="3027.3318"
+ id="text33195"><tspan
+ id="tspan33193"
+ sodipodi:role="line"
+ x="3304.6919"
+ y="3027.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">. :</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="2866.6919"
+ y="2467.3318"
+ id="text33199"><tspan
+ sodipodi:role="line"
+ id="tspan33197"
+ x="2866.6919"
+ y="2467.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">HMI:KeyPad</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ id="path33347"
+ d="m 3046.575,2504.1388 h 63.222"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3118.6919"
+ y="2467.3318"
+ id="text33351"><tspan
+ sodipodi:role="line"
+ id="tspan33349"
+ x="3118.6919"
+ y="2467.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">Value</tspan></text>
+ </g>
+ <g
+ transform="translate(720)"
+ id="g33315">
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3046.575,2744.1388 v -280"
+ id="path33331"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3046.575,2704.1388 h 63.222"
+ id="path33329"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3046.575,2664.1388 h 63.222"
+ id="path33327"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3046.575,2624.1388 h 63.222"
+ id="path33325"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3046.575,2584.1388 h 63.222"
+ id="path33323"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3046.575,2544.1388 h 63.222"
+ id="path33321"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 2986.575,2464.1388 h 123.222"
+ id="path33247"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3118.6919"
+ y="2507.3318"
+ id="text33251"><tspan
+ sodipodi:role="line"
+ id="tspan33249"
+ x="3118.6919"
+ y="2507.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">Info</tspan></text>
+ <text
+ id="text33255"
+ y="2547.3318"
+ x="3118.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2547.3318"
+ x="3118.6919"
+ id="tspan33253"
+ sodipodi:role="line">Esc</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3118.6919"
+ y="2587.3318"
+ id="text33259"><tspan
+ id="tspan33257"
+ sodipodi:role="line"
+ x="3118.6919"
+ y="2587.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">Sign</tspan></text>
+ <text
+ id="text33263"
+ y="2627.3318"
+ x="3118.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2627.3318"
+ x="3118.6919"
+ sodipodi:role="line"
+ id="tspan33261">Enter</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3118.6919"
+ y="2707.3318"
+ id="text33267"><tspan
+ id="tspan33265"
+ sodipodi:role="line"
+ x="3118.6919"
+ y="2707.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">[...]</tspan></text>
+ <text
+ id="text33271"
+ y="2747.3318"
+ x="3118.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2747.3318"
+ x="3118.6919"
+ sodipodi:role="line"
+ id="tspan33269">Keys</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3304.6919"
+ y="2747.3318"
+ id="text33279"><tspan
+ sodipodi:role="line"
+ x="3304.6919"
+ y="2747.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ id="tspan33385">9</tspan></text>
+ <text
+ id="text33283"
+ y="2787.3318"
+ x="3304.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2787.3318"
+ x="3304.6919"
+ sodipodi:role="line"
+ id="tspan33281">8</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3304.6919"
+ y="2827.3318"
+ id="text33287"><tspan
+ id="tspan33285"
+ sodipodi:role="line"
+ x="3304.6919"
+ y="2827.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">7</tspan></text>
+ <text
+ id="text33291"
+ y="2867.3318"
+ x="3304.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2867.3318"
+ x="3304.6919"
+ sodipodi:role="line"
+ id="tspan33289">6</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3304.6919"
+ y="2907.3318"
+ id="text33295"><tspan
+ id="tspan33293"
+ sodipodi:role="line"
+ x="3304.6919"
+ y="2907.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">5</tspan></text>
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3232.575,3024.1388 h 63.222"
+ id="path33377"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3232.575,2984.1388 h 63.222"
+ id="path33375"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3232.575,2944.1388 h 63.222"
+ id="path33373"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3232.575,3024.1388 v -280"
+ id="path33371"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3232.575,2904.1388 h 63.222"
+ id="path33369"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3232.575,2864.1388 h 63.222"
+ id="path33367"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3232.575,2824.1388 h 63.222"
+ id="path33365"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3232.575,2784.1388 h 63.222"
+ id="path33363"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ d="m 3172.575,2744.1388 h 123.222"
+ id="path33297"
+ inkscape:connector-curvature="0" />
+ <text
+ id="text33301"
+ y="2947.3318"
+ x="3304.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2947.3318"
+ x="3304.6919"
+ sodipodi:role="line"
+ id="tspan33299">4</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3304.6919"
+ y="2987.3318"
+ id="text33305"><tspan
+ id="tspan33303"
+ sodipodi:role="line"
+ x="3304.6919"
+ y="2987.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">3</tspan></text>
+ <text
+ id="text33309"
+ y="3027.3318"
+ x="3304.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="3027.3318"
+ x="3304.6919"
+ sodipodi:role="line"
+ id="tspan33307">[...]</tspan></text>
+ <text
+ id="text33313"
+ y="2467.3318"
+ x="2866.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2467.3318"
+ x="2866.6919"
+ id="tspan33311"
+ sodipodi:role="line">HMI:KeyPad</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ id="path33353"
+ d="m 3046.575,2504.1388 h 63.222"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ id="text33357"
+ y="2467.3318"
+ x="3118.6919"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ xml:space="preserve"><tspan
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5"
+ y="2467.3318"
+ x="3118.6919"
+ id="tspan33355"
+ sodipodi:role="line">Value</tspan></text>
+ <path
+ inkscape:connector-curvature="0"
+ id="path33379"
+ d="m 3046.575,2744.1388 h 63.222"
+ style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
+ x="3118.6919"
+ y="2667.3318"
+ id="text33383"><tspan
+ id="tspan33381"
+ sodipodi:role="line"
+ x="3118.6919"
+ y="2667.3318"
+ style="fill:#000000;fill-opacity:1;stroke-width:0.5">NumDot</tspan></text>
+ </g>
+ </g>
+ <g
+ id="g35667">
+ <use
+ inkscape:label="HMI:Page:Slider"
+ x="0"
+ y="0"
+ xlink:href="#g9818"
+ id="use10529"
+ transform="translate(1340)"
+ width="100%"
+ height="100%"
+ style="display:inline" />
+ <text
+ id="text10533"
+ y="3170.3906"
+ x="2852.8076"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="3170.3906"
+ x="2852.8076"
+ id="tspan10531"
+ sodipodi:role="line">HMI:Slider</tspan><tspan
+ y="3220.3906"
+ x="2852.8076"
+ sodipodi:role="line"
+ id="tspan31723">HMI:CircularSlider</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#fffffb;fill-opacity:1;stroke:none;stroke-width:0.25"
+ x="2854.1895"
+ y="3252.0127"
+ id="text10537"><tspan
+ id="tspan10535"
+ sodipodi:role="line"
+ x="2854.1895"
+ y="3252.0127"
+ style="fill:#fffffb;fill-opacity:1;stroke-width:0.25">TODO</tspan></text>
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="rect35600"
+ d="m 3292.1479,3284.5305 10,35 h -20 z"
+ style="fill:url(#linearGradient35602);fill-opacity:1" />
+ <path
+ style="fill:url(#linearGradient35607);fill-opacity:1"
+ d="m 3292.1479,3771.5305 10,-35 h -20 z"
+ id="path35605"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path35649"
+ d="m 3292.0999,3328.0305 v 400"
+ style="fill:none;fill-opacity:1;stroke:#464646;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ <rect
+ rx="10"
+ ry="10"
+ id="rect35590"
+ width="20"
+ height="75"
+ x="3282.1479"
+ y="3490.5305"
+ style="fill:url(#linearGradient35598);fill-opacity:1" />
+ </g>
+ <rect
+ id="rect47533"
+ width="46.545795"
+ height="542.65326"
+ x="3626.9021"
+ y="3249.9719"
+ style="opacity:1;vector-effect:none;fill:#646464;fill-opacity:1;stroke:url(#radialGradient48094);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
+ <rect
+ style="fill:#b4b4b4;fill-opacity:1;stroke:url(#radialGradient48061);stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ y="3466.1411"
+ x="3628.9995"
+ height="106.85596"
+ width="42.225544"
+ id="rect48059" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#f00000;fill-opacity:1;stroke:none"
+ x="3096.4146"
+ y="3422.8428"
+ id="text48098"><tspan
+ sodipodi:role="line"
+ id="tspan48096"
+ x="3096.4146"
+ y="3422.8428">TO BE REWRITTEN, DO NOT USE</tspan></text>
+ <g
+ style="stroke-width:0.35083869"
+ transform="matrix(0.81491208,0,0,0.81491208,5048.484,991.82998)"
+ inkscape:label="HMI:DropDown:1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:16:17:18:19:20:21:22:23:24:25:26:27@/SELECTION"
+ id="g48112">
+ <rect
+ inkscape:label="box"
+ ry="2.4558709"
+ rx="2.4558709"
+ y="923.98993"
+ x="864.00842"
+ height="130.9433"
+ width="391.99988"
+ id="rect48102"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#53676c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <rect
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419331;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ id="rect48104"
+ width="391.99988"
+ height="92.71212"
+ x="864.00842"
+ y="943.10553"
+ rx="2.4558709"
+ ry="2.4558709"
+ inkscape:label="highlight" />
+ <text
+ inkscape:label="text"
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d42aff;fill-opacity:1;stroke:none;stroke-width:0.35083869px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="881.44226"
+ y="1011.9975"
+ id="text48108"><tspan
+ id="tspan48106"
+ sodipodi:role="line"
+ x="881.44226"
+ y="1011.9975"
+ style="text-align:start;text-anchor:start;fill:#d42aff;stroke-width:0.35083869px">sel_0</tspan></text>
+ <path
+ inkscape:label="button"
+ inkscape:transform-center-y="10.92088"
+ d="m 1200.5,1018.6835 -18.9155,-32.76262 -18.9155,-32.76264 37.831,0 37.831,0 -18.9155,32.76264 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="2.6179939"
+ sodipodi:arg1="1.5707963"
+ sodipodi:r2="21.841761"
+ sodipodi:r1="43.683521"
+ sodipodi:cy="975"
+ sodipodi:cx="1200.5"
+ sodipodi:sides="3"
+ id="path48110"
+ style="opacity:1;vector-effect:none;fill:#a7a5a6;fill-opacity:1;stroke:none;stroke-width:0.12376806;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ sodipodi:type="star" />
+ </g>
+ <g
+ id="g48213">
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(6700)"
+ id="use9947-8"
+ xlink:href="#g9808"
+ y="0"
+ x="0"
+ inkscape:label="HMI:Page:Button" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ x="8192.8076"
+ y="1610.3906"
+ id="text9951-1"><tspan
+ sodipodi:role="line"
+ id="tspan9949-2"
+ x="8192.8076"
+ y="1610.3906">HMI:ToggleButton@path</tspan></text>
+ <text
+ id="text9957-3"
+ y="1632.0127"
+ x="8214.1895"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ xml:space="preserve"><tspan
+ style="stroke-width:0.25"
+ y="1632.0127"
+ x="8214.1895"
+ sodipodi:role="line"
+ id="tspan9955-3">TODO</tspan></text>
+ </g>
+ <g
+ id="g48220">
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(6700)"
+ id="use9961-6"
+ xlink:href="#g9813"
+ y="0"
+ x="0"
+ inkscape:label="HMI:Page:ForEach" />
+ <text
+ id="text9965-8"
+ y="2390.4241"
+ x="8192.2148"
+ style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
+ xml:space="preserve"><tspan
+ y="2390.4241"
+ x="8192.2148"
+ id="tspan9963-8"
+ sodipodi:role="line">HMI:Multistate@path</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
+ x="8213.5967"
+ y="2412.0461"
+ id="text9971-3"><tspan
+ id="tspan9969-8"
+ sodipodi:role="line"
+ x="8213.5967"
+ y="2412.0461"
+ style="stroke-width:0.25">TODO</tspan></text>
+ </g>
+ <g
+ id="g48227">
+ <use
+ height="100%"
+ width="100%"
+ transform="translate(6700)"
+ id="use9975-8"
+ xlink:href="#g9818"
+ y="0"
+ x="0"
+ inkscape:label="HMI:Page:JsonTable" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ x="8192.2148"
+ y="3170.4241"
+ id="text35647"><tspan
+ sodipodi:role="line"
+ id="tspan35645"
+ x="8192.2148"
+ y="3170.4241">HMI:CustomHtml@path</tspan></text>
+ <text
+ id="text9983-0"
+ y="3192.0127"
+ x="8214.1895"
+ style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#fffffb;fill-opacity:1;stroke:none;stroke-width:0.25"
+ xml:space="preserve"><tspan
+ style="fill:#fffffb;fill-opacity:1;stroke-width:0.25"
+ y="3192.0127"
+ x="8214.1895"
+ sodipodi:role="line"
+ id="tspan9981-4">TODO</tspan></text>
+ </g>
+</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wamp/.crossbar/config.json Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,56 @@
+{
+ "version": 2,
+ "controller": {},
+ "workers": [
+ {
+ "type": "router",
+ "options": {
+ "pythonpath": [
+ ".."
+ ]
+ },
+ "realms": [
+ {
+ "name": "Automation",
+ "roles": [
+ {
+ "name": "anonymous",
+ "permissions": [
+ {
+ "uri": "",
+ "match": "prefix",
+ "allow": {
+ "call": true,
+ "register": true,
+ "publish": true,
+ "subscribe": true
+ },
+ "disclose": {
+ "caller": false,
+ "publisher": false
+ },
+ "cache": true
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "transports": [
+ {
+ "type": "websocket",
+ "debug": true,
+ "endpoint": {
+ "type": "tcp",
+ "port": 8888
+ },
+ "url": "ws://127.0.0.1:8888/",
+ "serializers": [
+ "msgpack",
+ "json"
+ ]
+ }
+ ]
+ }
+ ]
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wamp/README Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,42 @@
+/* This project contains wamp client config to be loaded at runtime startup. */
+./project_files/wampconf.json
+
+wampconf.json is in "Project Files", so it is copied to runtime's working directory, and then loaded after program transfer + runtime restart.
+
+Otherwise, wamp config file path can be forced :
+./Beremiz_service.py -c /path/to/my/wampconf.json /working/dir
+
+/* Crossbar install */
+#sudo apt-get update
+#sudo apt-get -y dist-upgrade
+sudo apt-get -y install build-essential libssl-dev libffi-dev libreadline-dev libbz2-dev libsqlite3-dev libncurses5dev
+sudo apt-get -y install python3-pip
+sudo python3 -m pip install -U pip
+sudo pip3 install crossbar
+crossbar version
+
+/* Start Crossbar command: */
+crossbar start
+
+/* Crossbar test router configuration is available in .crossbar directory. */
+Tested on version:
+
+ :::::::::::::::::
+ ::::: _____ __
+ ::::: : ::::: / ___/____ ___ ___ ___ / / ___ _ ____
+ ::::::: ::::::: / /__ / __// _ \ (_-< (_-< / _ \/ _ `// __/
+ ::::: : ::::: \___//_/ \___//___//___//_.__/\_,_//_/
+ :::::
+ ::::::::::::::::: Crossbar v18.7.2
+
+ Copyright (c) 2013-2018 Crossbar.io Technologies GmbH, licensed under AGPL 3.0.
+
+ Crossbar.io : 18.7.2
+ Autobahn : 18.7.1
+ Twisted : 18.7.0-EPollReactor
+ LMDB : 0.94/lmdb-0.9.22
+ Python : 3.6.6/CPython
+ Frozen executable : no
+ Operating system : Linux-4.16.0-2-rt-amd64-x86_64-with-debian-buster-sid
+ Host machine : x86_64
+ Release key : RWS9T4NltFjmKSMbEtETnOMxRjLhOEZ6e80T5MYzTTh/+NP9Jk20sJmA
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wamp/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,4 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="WAMP://127.0.0.1:8888#Automation#wamptest">
+ <TargetType/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wamp/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,156 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="Beremiz" productName="Beremiz" productVersion="1" creationDateTime="2015-02-05T11:44:55" contentDescription=" "/>
+ <contentHeader name="WAMPTest" modificationDateTime="2018-08-27T11:11:30">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="0" y="0"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="program0" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="LocalVar0">
+ <type>
+ <DINT/>
+ </type>
+ <initialValue>
+ <simpleValue value="1"/>
+ </initialValue>
+ </variable>
+ </localVars>
+ <externalVars>
+ <variable name="PyVar0">
+ <type>
+ <DINT/>
+ </type>
+ </variable>
+ <variable name="PyVar1">
+ <type>
+ <DINT/>
+ </type>
+ </variable>
+ </externalVars>
+ </interface>
+ <body>
+ <FBD>
+ <inVariable localId="1" executionOrderId="0" height="30" width="55" negated="false">
+ <position x="57" y="540"/>
+ <connectionPointOut>
+ <relPosition x="55" y="15"/>
+ </connectionPointOut>
+ <expression>PyVar0</expression>
+ </inVariable>
+ <block localId="3" typeName="ADD" executionOrderId="0" height="60" width="67">
+ <position x="168" y="525"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="1">
+ <position x="168" y="555"/>
+ <position x="112" y="555"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="4">
+ <position x="168" y="575"/>
+ <position x="151" y="575"/>
+ <position x="151" y="595"/>
+ <position x="112" y="595"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="67" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="4" executionOrderId="0" height="30" width="73" negated="false">
+ <position x="39" y="580"/>
+ <connectionPointOut>
+ <relPosition x="73" y="15"/>
+ </connectionPointOut>
+ <expression>LocalVar0</expression>
+ </inVariable>
+ <comment localId="5" height="459" width="788">
+ <position x="23" y="10"/>
+ <content>
+ <xhtml:p><![CDATA[Communication between Beremiz and PLC runtime isn't bound to any specific protocol and could be extended by writing corresponding connector (see 'connectors' directory).
+Beremiz reference runtime implementation supports PYRO and WAMP protocols.
+This example shows how to use Web Application Messaging Protocol (WAMP).
+
+WAMP can be used to build distributed systems out of application components which are loosely coupled and communicate in real-time. No direct connection between IDE and PLC are necessary.
+
+WAMP is in a process to be published as official IETF standard. Draft specification is already available on IETF website.
+
+To use this example you need WAMP router and standalone running Beremiz_service.
+1. See README file in project's directory with detailed instructions for
+setup Crossbar.io, router for open Web Application Messaging Protocol (WAMP).
+2. Run crossbar
+3. Create service working directory and copy wampconf.json from project_files to created directory
+4. Run Beremiz_service:
+./Beremiz_service.py -x 0 <working directory>
+]]></xhtml:p>
+ </content>
+ </comment>
+ <inOutVariable localId="2" executionOrderId="0" height="30" width="55" negatedOut="false" negatedIn="false">
+ <position x="270" y="540"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="3" formalParameter="OUT">
+ <position x="270" y="555"/>
+ <position x="235" y="555"/>
+ </connection>
+ </connectionPointIn>
+ <connectionPointOut>
+ <relPosition x="55" y="15"/>
+ </connectionPointOut>
+ <expression>PyVar1</expression>
+ </inOutVariable>
+ <outVariable localId="6" executionOrderId="0" height="30" width="55" negated="false">
+ <position x="362" y="540"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="2">
+ <position x="362" y="555"/>
+ <position x="325" y="555"/>
+ </connection>
+ </connectionPointIn>
+ <expression>PyVar0</expression>
+ </outVariable>
+ </FBD>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="resource1">
+ <task name="Task0" priority="0" interval="T#100ms">
+ <pouInstance name="Instance0" typeName="program0"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wamp/project_files/wampconf.json Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,10 @@
+{
+ "ID": "wamptest",
+ "active": true,
+ "protocolOptions": {
+ "autoPingInterval": 60,
+ "autoPingTimeout": 20
+ },
+ "realm": "Automation",
+ "url": "ws://127.0.0.1:8888"
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wamp/py_ext_0@py_ext/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="py_ext_0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wamp/py_ext_0@py_ext/pyfile.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,22 @@
+<?xml version='1.0' encoding='utf-8'?>
+<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+ <variables>
+ <variable name="PyVar0" type="DINT"/>
+ <variable name="PyVar1" type="DINT"/>
+ </variables>
+ <globals>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </globals>
+ <init>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </init>
+ <cleanup>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </cleanup>
+ <start>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </start>
+ <stop>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </stop>
+</PyFile>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wiimote/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<BeremizRoot URI_location="LOCAL://">
+ <TargetType/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wiimote/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,252 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns="http://www.plcopen.org/xml/tc6_0201" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xhtml="http://www.w3.org/1999/xhtml" xsi:schemaLocation="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="Beremiz" productName="Beremiz" productVersion="1" creationDateTime="2012-09-12T23:30:19"/>
+ <contentHeader name="Wiimote example" modificationDateTime="2017-06-06T13:10:31">
+ <coordinateInfo>
+ <fbd>
+ <scaling x="5" y="5"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="main" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="x">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="y">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="a">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="b">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="c">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="b1">
+ <type>
+ <WORD/>
+ </type>
+ </variable>
+ <variable name="b0">
+ <type>
+ <WORD/>
+ </type>
+ </variable>
+ </localVars>
+ <externalVars>
+ <variable name="WiiNunchuckStickX">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="WiiNunchuckStickY">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="WiiNunchuckButtons">
+ <type>
+ <WORD/>
+ </type>
+ </variable>
+ <variable name="WiiButtons">
+ <type>
+ <WORD/>
+ </type>
+ </variable>
+ <variable name="WiiNunchuckAccX">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="WiiNunchuckAccY">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="WiiNunchuckAccZ">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ </externalVars>
+ </interface>
+ <body>
+ <FBD>
+ <outVariable localId="1" height="30" width="20">
+ <position x="345" y="40"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="3">
+ <position x="345" y="55"/>
+ <position x="295" y="55"/>
+ </connection>
+ </connectionPointIn>
+ <expression>x</expression>
+ </outVariable>
+ <inVariable localId="3" height="30" width="150">
+ <position x="145" y="40"/>
+ <connectionPointOut>
+ <relPosition x="150" y="15"/>
+ </connectionPointOut>
+ <expression>WiiNunchuckStickX</expression>
+ </inVariable>
+ <inVariable localId="4" height="30" width="150">
+ <position x="145" y="100"/>
+ <connectionPointOut>
+ <relPosition x="150" y="15"/>
+ </connectionPointOut>
+ <expression>WiiNunchuckStickY</expression>
+ </inVariable>
+ <inVariable localId="5" height="30" width="155">
+ <position x="115" y="175"/>
+ <connectionPointOut>
+ <relPosition x="155" y="15"/>
+ </connectionPointOut>
+ <expression>WiiNunchuckButtons</expression>
+ </inVariable>
+ <inVariable localId="6" height="30" width="90">
+ <position x="180" y="225"/>
+ <connectionPointOut>
+ <relPosition x="90" y="15"/>
+ </connectionPointOut>
+ <expression>WiiButtons</expression>
+ </inVariable>
+ <outVariable localId="8" height="30" width="20">
+ <position x="345" y="100"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="4">
+ <position x="345" y="115"/>
+ <position x="295" y="115"/>
+ </connection>
+ </connectionPointIn>
+ <expression>y</expression>
+ </outVariable>
+ <outVariable localId="9" height="30" width="30">
+ <position x="345" y="175"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="5">
+ <position x="345" y="190"/>
+ <position x="270" y="190"/>
+ </connection>
+ </connectionPointIn>
+ <expression>b1</expression>
+ </outVariable>
+ <outVariable localId="10" height="30" width="30">
+ <position x="345" y="225"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="6">
+ <position x="345" y="240"/>
+ <position x="270" y="240"/>
+ </connection>
+ </connectionPointIn>
+ <expression>b0</expression>
+ </outVariable>
+ <inVariable localId="11" height="30" width="135">
+ <position x="135" y="295"/>
+ <connectionPointOut>
+ <relPosition x="135" y="15"/>
+ </connectionPointOut>
+ <expression>WiiNunchuckAccX</expression>
+ </inVariable>
+ <inVariable localId="12" height="30" width="135">
+ <position x="135" y="340"/>
+ <connectionPointOut>
+ <relPosition x="135" y="15"/>
+ </connectionPointOut>
+ <expression>WiiNunchuckAccY</expression>
+ </inVariable>
+ <inVariable localId="13" height="30" width="130">
+ <position x="140" y="385"/>
+ <connectionPointOut>
+ <relPosition x="130" y="15"/>
+ </connectionPointOut>
+ <expression>WiiNunchuckAccZ</expression>
+ </inVariable>
+ <outVariable localId="14" height="30" width="20">
+ <position x="345" y="295"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="11">
+ <position x="345" y="310"/>
+ <position x="270" y="310"/>
+ </connection>
+ </connectionPointIn>
+ <expression>a</expression>
+ </outVariable>
+ <outVariable localId="15" height="30" width="20">
+ <position x="345" y="340"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="12">
+ <position x="345" y="355"/>
+ <position x="270" y="355"/>
+ </connection>
+ </connectionPointIn>
+ <expression>b</expression>
+ </outVariable>
+ <outVariable localId="16" height="30" width="20">
+ <position x="345" y="385"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="13">
+ <position x="345" y="400"/>
+ <position x="270" y="400"/>
+ </connection>
+ </connectionPointIn>
+ <expression>c</expression>
+ </outVariable>
+ <comment localId="17" height="125" width="500">
+ <position x="450" y="30"/>
+ <content>
+ <xhtml:p><![CDATA[This example shows interaction of PLC program with Nintendo Wii Remote controller.
+
+To work this example requires python-cwiid library to be installed.]]></xhtml:p>
+ </content>
+ </comment>
+ </FBD>
+ </body>
+ <documentation>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </documentation>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="resource1">
+ <task name="tsk1" interval="T#1ms" priority="0">
+ <pouInstance name="inst1" typeName="main"/>
+ </task>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wiimote/py_ext_0@py_ext/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<BaseParams Name="py_ext_0" IEC_Channel="1"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wiimote/py_ext_0@py_ext/pyfile.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,102 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<PyFile>
+ <variables>
+ <variable name="WiiNunchuckStickX" type="INT"/>
+ <variable name="WiiNunchuckStickY" type="INT"/>
+ <variable name="WiiNunchuckAccX" type="INT"/>
+ <variable name="WiiNunchuckAccY" type="INT"/>
+ <variable name="WiiNunchuckAccZ" type="INT"/>
+ <variable name="WiiNunchuckButtons" type="WORD"/>
+ <variable name="WiiButtons" type="WORD"/>
+ </variables>
+ <globals>
+<![CDATA[
+import cwiid,commands,sys,re,os,time
+
+wiimote = None
+WIIMOTE_ADDR_MODEL = re.compile("((?:[0-9A-F]{2})(?::[0-9A-F]{2}){5})\s*Nintendo")
+nunchuckzero = None
+
+def Wiimote_cback(messages, time):
+ global nunchuckzero
+ state = dict(messages)
+ bts = state.get(cwiid.MESG_BTN, None)
+ if bts is not None:
+ PLCGlobals.WiiButtons = bts
+ nunchuck = state.get(cwiid.MESG_NUNCHUK, None)
+ if nunchuck is not None:
+ PLCGlobals.WiiNunchuckButtons = nunchuck['buttons']
+ X,Y = nunchuck['stick']
+ PLCGlobals.WiiNunchuckAccX = nunchuck['acc'][cwiid.X]
+ PLCGlobals.WiiNunchuckAccY = nunchuck['acc'][cwiid.Y]
+ PLCGlobals.WiiNunchuckAccZ = nunchuck['acc'][cwiid.Z]
+ if nunchuckzero is None:
+ nunchuckzero = X,Y
+ (PLCGlobals.WiiNunchuckStickX,
+ PLCGlobals.WiiNunchuckStickY) = X-nunchuckzero[0],Y-nunchuckzero[1]
+
+def Connect_Wiimote(connected_callback):
+ global wiimote,nunchuckzero
+ mac_addr = ''
+ try:
+ mac_addr = file("wiimac.txt","rt").read()
+ except:
+ PLCObject.LogMessage("Wiimote MAC unknown, scanning bluetooth")
+ output = commands.getoutput("hcitool scan")
+ result = WIIMOTE_ADDR_MODEL.search(output)
+ if result is not None:
+ mac_addr = result.group(1)
+ PLCObject.LogMessage("Found Wiimote with MAC %s"%mac_addr)
+ file("wiimac.txt","wt").write(mac_addr)
+
+ # Connect to wiimote
+ if not mac_addr:
+ PLCObject.LogMessage("Connection to unknown Wiimote...")
+ wiimote = cwiid.Wiimote()
+ else:
+ PLCObject.LogMessage("Connection to Wiimote %s..."%mac_addr)
+ wiimote = cwiid.Wiimote(mac_addr)
+
+ if wiimote is not None:
+ nunchuckzero = None
+ wiimote.rpt_mode = cwiid.RPT_BTN | cwiid.RPT_EXT
+ # use the callback interface
+ wiimote.mesg_callback = Wiimote_cback
+ wiimote.enable(cwiid.FLAG_MESG_IFC)
+ connected_callback(mac_addr)
+ PLCObject.LogMessage("Wiimote %s Connected"%mac_addr)
+ else:
+ PLCObject.LogMessage("Wiimote %s not found"%mac_addr)
+ os.remove("wiimac.txt")
+ connected_callback(None)
+
+def Disconnect_Wiimote():
+ global wiimote
+ if wiimote is not None:
+ wiimote.disable(cwiid.FLAG_MESG_IFC)
+ time.sleep(0.1)
+ wiimote.close()
+ wiimote = None
+ PLCObject.LogMessage("Wiimote disconnected")
+
+]]>
+ </globals>
+ <init>
+<![CDATA[
+]]>
+ </init>
+ <cleanup>
+<![CDATA[
+Disconnect_Wiimote()
+
+]]>
+ </cleanup>
+ <start>
+<![CDATA[
+]]>
+ </start>
+ <stop>
+<![CDATA[
+]]>
+ </stop>
+</PyFile>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wiimote/wxglade_hmi@wxglade_hmi/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<BaseParams Name="wxglade_hmi" IEC_Channel="0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wiimote/wxglade_hmi@wxglade_hmi/hmi.wxg Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,53 @@
+<?xml version="1.0"?>
+<!-- generated by wxGlade 0.6.4 on Thu May 16 13:24:16 2013 -->
+
+<application path="" name="" class="" option="0" language="python" top_window="wxglade_hmi" encoding="UTF-8" use_gettext="0" overwrite="0" use_new_namespace="1" for_version="2.8" is_template="0" indent_amount="4" indent_symbol="space" source_extension=".cpp" header_extension=".h">
+ <object class="Class_wxglade_hmi" name="wxglade_hmi" base="EditFrame">
+ <style>wxDEFAULT_FRAME_STYLE</style>
+ <title>frame_1</title>
+ <object class="wxStaticBoxSizer" name="sizer_1" base="EditStaticBoxSizer">
+ <orient>wxVERTICAL</orient>
+ <label>Wiimote Test</label>
+ <object class="sizeritem">
+ <flag>wxEXPAND</flag>
+ <border>0</border>
+ <option>0</option>
+ <object class="wxButton" name="button_1" base="EditButton">
+ <label>Connect Wiimote</label>
+ <events>
+ <handler event="EVT_BUTTON">OnConnectButton</handler>
+ </events>
+ </object>
+ </object>
+ <object class="sizeritem">
+ <flag>wxEXPAND</flag>
+ <border>0</border>
+ <option>0</option>
+ <object class="wxButton" name="button_2" base="EditButton">
+ <label>Disconnect Wiimote</label>
+ <events>
+ <handler event="EVT_BUTTON">OnDisconnectButton</handler>
+ </events>
+ </object>
+ </object>
+ <object class="sizeritem">
+ <flag>wxEXPAND</flag>
+ <border>0</border>
+ <option>0</option>
+ <object class="wxStaticText" name="label_1" base="EditStaticText">
+ <attribute>1</attribute>
+ <label>Status :</label>
+ </object>
+ </object>
+ <object class="sizeritem">
+ <flag>wxEXPAND</flag>
+ <border>0</border>
+ <option>0</option>
+ <object class="wxStaticText" name="label_2" base="EditStaticText">
+ <attribute>1</attribute>
+ <label>no status</label>
+ </object>
+ </object>
+ </object>
+ </object>
+</application>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wiimote/wxglade_hmi@wxglade_hmi/pyfile.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<PyFile>
+ <variables/>
+ <globals>
+<![CDATA[
+from threading import Thread
+
+def OnConnectButton(self, event):
+ def OnWiiConnected(mac_addr):
+ self.label_2.SetLabel(
+ "Wiimote %s connected"%mac_addr
+ if mac_addr else
+ "Wiimote connection failed !")
+
+ def WiiConnected(mac_addr):
+ wx.CallAfter(OnWiiConnected,mac_addr)
+
+ Thread(target = Connect_Wiimote, args = (WiiConnected,)).start()
+ self.label_2.SetLabel("Press wiimote 1+2")
+ event.Skip()
+
+def OnDisconnectButton(self, event):
+ Disconnect_Wiimote()
+ self.label_2.SetLabel("Wiimote disconnected")
+ event.Skip()
+
+]]>
+ </globals>
+ <init>
+<![CDATA[
+]]>
+ </init>
+ <cleanup>
+<![CDATA[
+]]>
+ </cleanup>
+ <start>
+<![CDATA[
+]]>
+ </start>
+ <stop>
+<![CDATA[
+]]>
+ </stop>
+</PyFile>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wxGlade/HMIFrame@wxglade_hmi/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<BaseParams Name="HMIFrame" IEC_Channel="0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wxGlade/HMIFrame@wxglade_hmi/hmi.wxg Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,34 @@
+<?xml version="1.0"?>
+<!-- generated by wxGlade 0.7.2 on Mon Jun 5 14:18:29 2017 -->
+
+<application class="" encoding="UTF-8" for_version="2.8" header_extension=".h" indent_amount="4" indent_symbol="space" is_template="0" language="python" name="" option="0" overwrite="0" path="..py.py" source_extension=".cpp" top_window="HMIFrame" use_gettext="0" use_new_namespace="1">
+ <object class="Class_HMIFrame" name="HMIFrame" base="EditFrame">
+ <style>wxDEFAULT_FRAME_STYLE</style>
+ <title>HMIFrame</title>
+ <object class="wxBoxSizer" name="sizer_1" base="EditBoxSizer">
+ <orient>wxVERTICAL</orient>
+ <object class="sizeritem">
+ <border>0</border>
+ <option>0</option>
+ <object class="wxSpinCtrl" name="spin_ctrl_1" base="EditSpinCtrl">
+ <range>0, 10000</range>
+ </object>
+ </object>
+ <object class="sizeritem">
+ <border>0</border>
+ <option>0</option>
+ <object class="wxCheckBox" name="checkbox_1" base="EditCheckBox">
+ <label>checkbox_1</label>
+ </object>
+ </object>
+ <object class="sizeritem">
+ <border>0</border>
+ <option>0</option>
+ <object class="wxStaticText" name="label_1" base="EditStaticText">
+ <attribute>1</attribute>
+ <label>GUI changed!</label>
+ </object>
+ </object>
+ </object>
+ </object>
+</application>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wxGlade/HMIFrame@wxglade_hmi/pyfile.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,19 @@
+<?xml version='1.0' encoding='utf-8'?>
+<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+ <variables/>
+ <globals>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </globals>
+ <init>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </init>
+ <cleanup>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </cleanup>
+ <start>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </start>
+ <stop>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </stop>
+</PyFile>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wxGlade/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,5 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BeremizRoot URI_location="LOCAL://">
+ <TargetType/>
+ <Libraries Enable_Python_Library="true"/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wxGlade/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,426 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xsi:schemaLocation="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="beremiz" productName="Beremiz" productVersion="0.0" creationDateTime="2008-12-14T16:21:19"/>
+ <contentHeader name="Beremiz wxHMI test" modificationDateTime="2017-06-05T14:01:40">
+ <coordinateInfo>
+ <pageSize x="1024" y="1024"/>
+ <fbd>
+ <scaling x="5" y="5"/>
+ </fbd>
+ <ld>
+ <scaling x="5" y="5"/>
+ </ld>
+ <sfc>
+ <scaling x="5" y="5"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="main_pytest" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="getCheckBoxState">
+ <type>
+ <derived name="python_poll"/>
+ </type>
+ </variable>
+ <variable name="counter">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="setSpinCtrlValue">
+ <type>
+ <derived name="python_poll"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <block localId="24" width="125" height="90" typeName="python_poll" instanceName="getCheckBoxState" executionOrderId="0">
+ <position x="480" y="215"/>
+ <inputVariables>
+ <variable formalParameter="TRIG">
+ <connectionPointIn>
+ <relPosition x="0" y="35"/>
+ <connection refLocalId="25">
+ <position x="480" y="250"/>
+ <position x="420" y="250"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="CODE">
+ <connectionPointIn>
+ <relPosition x="0" y="70"/>
+ <connection refLocalId="26">
+ <position x="480" y="285"/>
+ <position x="420" y="285"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="ACK">
+ <connectionPointOut>
+ <relPosition x="125" y="35"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="RESULT">
+ <connectionPointOut>
+ <relPosition x="125" y="70"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="25" height="30" width="100" executionOrderId="0" negated="false">
+ <position x="320" y="235"/>
+ <connectionPointOut>
+ <relPosition x="100" y="15"/>
+ </connectionPointOut>
+ <expression>BOOL#TRUE</expression>
+ </inVariable>
+ <inVariable localId="26" height="30" width="400" executionOrderId="0" negated="false">
+ <position x="20" y="270"/>
+ <connectionPointOut>
+ <relPosition x="400" y="15"/>
+ </connectionPointOut>
+ <expression>'int(HMIFrame.checkbox_1.GetValue())'</expression>
+ </inVariable>
+ <inVariable localId="27" height="30" width="40" executionOrderId="0" negated="false">
+ <position x="535" y="505"/>
+ <connectionPointOut>
+ <relPosition x="40" y="15"/>
+ </connectionPointOut>
+ <expression>')'</expression>
+ </inVariable>
+ <inVariable localId="28" height="30" width="330" executionOrderId="0" negated="false">
+ <position x="150" y="415"/>
+ <connectionPointOut>
+ <relPosition x="330" y="15"/>
+ </connectionPointOut>
+ <expression>'HMIFrame.spin_ctrl_1.SetValue('</expression>
+ </inVariable>
+ <block localId="30" width="145" height="85" typeName="STRING_TO_INT" executionOrderId="0">
+ <position x="670" y="215"/>
+ <inputVariables>
+ <variable formalParameter="EN">
+ <connectionPointIn>
+ <relPosition x="0" y="35"/>
+ <connection refLocalId="24" formalParameter="ACK">
+ <position x="670" y="250"/>
+ <position x="605" y="250"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="70"/>
+ <connection refLocalId="24" formalParameter="RESULT">
+ <position x="670" y="285"/>
+ <position x="605" y="285"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="ENO">
+ <connectionPointOut>
+ <relPosition x="145" y="35"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="145" y="70"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <block localId="32" width="80" height="80" typeName="ADD" executionOrderId="0">
+ <position x="135" y="450"/>
+ <inputVariables>
+ <variable formalParameter="EN">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="38" formalParameter="OUT">
+ <position x="135" y="480"/>
+ <position x="100" y="480"/>
+ <position x="100" y="330"/>
+ <position x="1140" y="330"/>
+ <position x="1140" y="250"/>
+ <position x="1130" y="250"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="39">
+ <position x="135" y="500"/>
+ <position x="90" y="500"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="70"/>
+ <connection refLocalId="33">
+ <position x="135" y="520"/>
+ <position x="125" y="520"/>
+ <position x="125" y="540"/>
+ <position x="340" y="540"/>
+ <position x="340" y="500"/>
+ <position x="320" y="500"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="ENO">
+ <connectionPointOut>
+ <relPosition x="80" y="30"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="80" y="50"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <block localId="34" width="80" height="100" typeName="CONCAT" executionOrderId="0">
+ <position x="605" y="430"/>
+ <inputVariables>
+ <variable formalParameter="EN">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="35" formalParameter="ENO">
+ <position x="605" y="460"/>
+ <position x="520" y="460"/>
+ <position x="520" y="480"/>
+ <position x="500" y="480"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="28">
+ <position x="605" y="480"/>
+ <position x="562" y="480"/>
+ <position x="562" y="430"/>
+ <position x="480" y="430"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="70"/>
+ <connection refLocalId="35" formalParameter="OUT">
+ <position x="605" y="500"/>
+ <position x="500" y="500"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN3">
+ <connectionPointIn>
+ <relPosition x="0" y="90"/>
+ <connection refLocalId="27">
+ <position x="605" y="520"/>
+ <position x="575" y="520"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="ENO">
+ <connectionPointOut>
+ <relPosition x="80" y="30"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="80" y="50"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inOutVariable localId="33" height="35" width="85" executionOrderId="0" negatedOut="false" negatedIn="false">
+ <position x="235" y="485"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="32" formalParameter="OUT">
+ <position x="235" y="500"/>
+ <position x="215" y="500"/>
+ </connection>
+ </connectionPointIn>
+ <connectionPointOut>
+ <relPosition x="85" y="15"/>
+ </connectionPointOut>
+ <expression>counter</expression>
+ </inOutVariable>
+ <block localId="35" width="145" height="60" typeName="INT_TO_STRING" executionOrderId="0">
+ <position x="355" y="450"/>
+ <inputVariables>
+ <variable formalParameter="EN">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="32" formalParameter="ENO">
+ <position x="355" y="480"/>
+ <position x="215" y="480"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="33">
+ <position x="355" y="500"/>
+ <position x="320" y="500"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="ENO">
+ <connectionPointOut>
+ <relPosition x="145" y="30"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="145" y="50"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <block localId="36" width="125" height="90" typeName="python_poll" instanceName="setSpinCtrlValue" executionOrderId="0">
+ <position x="735" y="425"/>
+ <inputVariables>
+ <variable formalParameter="TRIG">
+ <connectionPointIn>
+ <relPosition x="0" y="35"/>
+ <connection refLocalId="34" formalParameter="ENO">
+ <position x="735" y="460"/>
+ <position x="685" y="460"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="CODE">
+ <connectionPointIn>
+ <relPosition x="0" y="70"/>
+ <connection refLocalId="34" formalParameter="OUT">
+ <position x="735" y="495"/>
+ <position x="715" y="495"/>
+ <position x="715" y="480"/>
+ <position x="685" y="480"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="ACK">
+ <connectionPointOut>
+ <relPosition x="125" y="35"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="RESULT">
+ <connectionPointOut>
+ <relPosition x="125" y="70"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <block localId="37" width="125" height="45" typeName="INT_TO_BOOL" executionOrderId="0">
+ <position x="870" y="255"/>
+ <inputVariables>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="30" formalParameter="OUT">
+ <position x="870" y="285"/>
+ <position x="815" y="285"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="125" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <block localId="38" width="80" height="95" typeName="AND" executionOrderId="0">
+ <position x="1050" y="210"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="40"/>
+ <connection refLocalId="30" formalParameter="ENO">
+ <position x="1050" y="250"/>
+ <position x="815" y="250"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="75"/>
+ <connection refLocalId="37" formalParameter="OUT">
+ <position x="1050" y="285"/>
+ <position x="995" y="285"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="80" y="40"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="39" height="30" width="60" executionOrderId="0" negated="false">
+ <position x="30" y="485"/>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>INT#1</expression>
+ </inVariable>
+ <comment localId="101" height="115" width="680">
+ <position x="10" y="30"/>
+ <content>
+ <xhtml:p><![CDATA[This example shows how IEC program in PLC can interact with UI created using wxGlade.
+
+"WxGlade GUI" is extension to build user interface for PLC using wxGlade.
+To edit user interface click on "WxGlade" icon in extension settings.]]></xhtml:p>
+ </content>
+ </comment>
+ </FBD>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="res_pytest">
+ <task name="pytest_task" interval="t#100ms" priority="0"/>
+ <pouInstance name="pytest_instance" typeName="main_pytest"/>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wxHMI/beremiz.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,5 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BeremizRoot URI_location="LOCAL://">
+ <TargetType/>
+ <Libraries Enable_Python_Library="true"/>
+</BeremizRoot>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wxHMI/plc.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,1639 @@
+<?xml version='1.0' encoding='utf-8'?>
+<project xmlns="http://www.plcopen.org/xml/tc6_0201" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xhtml="http://www.w3.org/1999/xhtml" xsi:schemaLocation="http://www.plcopen.org/xml/tc6_0201">
+ <fileHeader companyName="Unknown" productName="Beremiz" productVersion="1" creationDateTime="2012-09-12T23:30:19"/>
+ <contentHeader name="extended wxHMI example" modificationDateTime="2018-09-26T14:07:02">
+ <coordinateInfo>
+ <pageSize x="1050" y="1485"/>
+ <fbd>
+ <scaling x="5" y="5"/>
+ </fbd>
+ <ld>
+ <scaling x="0" y="0"/>
+ </ld>
+ <sfc>
+ <scaling x="0" y="0"/>
+ </sfc>
+ </coordinateInfo>
+ </contentHeader>
+ <types>
+ <dataTypes/>
+ <pous>
+ <pou name="main" pouType="program">
+ <interface>
+ <externalVars>
+ <variable name="Power_ON">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="Power_OFF">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ </externalVars>
+ <localVars>
+ <variable name="power">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ </localVars>
+ <externalVars>
+ <variable name="DrawTest">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="DrawTestBtn">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="DrawLogo">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="XaxisPos">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="YaxisPos">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="ZaxisPos">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ <variable name="TaxisPos">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ </externalVars>
+ <localVars>
+ <variable name="PowerCtrl">
+ <type>
+ <derived name="RS"/>
+ </type>
+ </variable>
+ <variable name="Xaxis">
+ <type>
+ <derived name="axis"/>
+ </type>
+ </variable>
+ </localVars>
+ <externalVars>
+ <variable name="XAxisMinus">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="XAxisPlus">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="YAxisPlus">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="YAxisMinus">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="ZAxisPlus">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="ZAxisMinus">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="TAxisPlus">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="TAxisMinus">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ </externalVars>
+ <localVars>
+ <variable name="Yaxis">
+ <type>
+ <derived name="axis"/>
+ </type>
+ </variable>
+ <variable name="Taxis">
+ <type>
+ <derived name="axis"/>
+ </type>
+ </variable>
+ <variable name="Zaxis">
+ <type>
+ <derived name="axis"/>
+ </type>
+ </variable>
+ <variable name="DrawTestDo">
+ <type>
+ <derived name="RS"/>
+ </type>
+ </variable>
+ <variable name="DrawLogoDo">
+ <type>
+ <derived name="RS"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <comment localId="296" height="330" width="655">
+ <position x="390" y="10"/>
+ <content>
+ <xhtml:p><![CDATA[Example shows
+- how to use wxGlade extension to create user interface and dynamically extend it using Python,
+- how to respond to user actions in PLC program and
+- how to use several PLC tasks to handle process of different speeds.
+
+Program has two tasks:
+1. Slow task that communicates with user interface created in wxGlade and updates axes state.
+2. Main task that drives virtual axes.
+
+When power is on, user can control axes.
+"Draw Logo" buttons starts X, Y, Z axes. "Draw Test" buttons starts Z and T axes.
+User can adjust position of axes using manual keys.
+
+
+Happy hacking!]]></xhtml:p>
+ </content>
+ </comment>
+ <inVariable localId="288" executionOrderId="0" height="30" width="85" negated="false">
+ <position x="35" y="190"/>
+ <connectionPointOut>
+ <relPosition x="85" y="15"/>
+ </connectionPointOut>
+ <expression>Power_OFF</expression>
+ </inVariable>
+ <inVariable localId="286" executionOrderId="0" height="30" width="85" negated="false">
+ <position x="35" y="155"/>
+ <connectionPointOut>
+ <relPosition x="85" y="15"/>
+ </connectionPointOut>
+ <expression>Power_ON</expression>
+ </inVariable>
+ <block localId="287" typeName="RS" instanceName="PowerCtrl" executionOrderId="0" height="95" width="55">
+ <position x="190" y="130"/>
+ <inputVariables>
+ <variable formalParameter="S">
+ <connectionPointIn>
+ <relPosition x="0" y="40"/>
+ <connection refLocalId="286">
+ <position x="190" y="170"/>
+ <position x="120" y="170"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="R1">
+ <connectionPointIn>
+ <relPosition x="0" y="75"/>
+ <connection refLocalId="288">
+ <position x="190" y="205"/>
+ <position x="120" y="205"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Q1">
+ <connectionPointOut>
+ <relPosition x="55" y="40"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <outVariable localId="289" executionOrderId="0" height="30" width="50" negated="false">
+ <position x="290" y="155"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="287" formalParameter="Q1">
+ <position x="290" y="170"/>
+ <position x="241" y="170"/>
+ </connection>
+ </connectionPointIn>
+ <expression>power</expression>
+ </outVariable>
+ <block localId="297" typeName="axis" instanceName="Xaxis" executionOrderId="0" height="160" width="100">
+ <position x="300" y="770"/>
+ <inputVariables>
+ <variable formalParameter="Power">
+ <connectionPointIn>
+ <relPosition x="0" y="45"/>
+ <connection refLocalId="1">
+ <position x="300" y="815"/>
+ <position x="265" y="815"/>
+ <position x="265" y="755"/>
+ <position x="255" y="755"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="Up">
+ <connectionPointIn>
+ <relPosition x="0" y="90"/>
+ <connection refLocalId="301" formalParameter="OUT">
+ <position x="300" y="860"/>
+ <position x="277" y="860"/>
+ <position x="277" y="835"/>
+ <position x="255" y="835"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="Down">
+ <connectionPointIn>
+ <relPosition x="0" y="135"/>
+ <connection refLocalId="299">
+ <position x="300" y="905"/>
+ <position x="110" y="905"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Out">
+ <connectionPointOut>
+ <relPosition x="100" y="45"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <outVariable localId="298" executionOrderId="0" height="35" width="74" negated="false">
+ <position x="435" y="800"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="297" formalParameter="Out">
+ <position x="435" y="815"/>
+ <position x="375" y="815"/>
+ <position x="375" y="815"/>
+ <position x="416" y="815"/>
+ </connection>
+ </connectionPointIn>
+ <expression>XaxisPos</expression>
+ </outVariable>
+ <inVariable localId="1" executionOrderId="0" height="30" width="50" negated="false">
+ <position x="205" y="740"/>
+ <connectionPointOut>
+ <relPosition x="50" y="15"/>
+ </connectionPointOut>
+ <expression>power</expression>
+ </inVariable>
+ <inVariable localId="299" executionOrderId="0" height="35" width="90" negated="false">
+ <position x="25" y="890"/>
+ <connectionPointOut>
+ <relPosition x="90" y="15"/>
+ </connectionPointOut>
+ <expression>XAxisMinus</expression>
+ </inVariable>
+ <inVariable localId="300" executionOrderId="0" height="35" width="85" negated="false">
+ <position x="25" y="845"/>
+ <connectionPointOut>
+ <relPosition x="85" y="15"/>
+ </connectionPointOut>
+ <expression>XAxisPlus</expression>
+ </inVariable>
+ <block localId="301" typeName="OR" executionOrderId="0" height="65" width="70">
+ <position x="185" y="805"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="2">
+ <position x="185" y="835"/>
+ <position x="162" y="835"/>
+ <position x="162" y="805"/>
+ <position x="140" y="805"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="55"/>
+ <connection refLocalId="300">
+ <position x="185" y="860"/>
+ <position x="110" y="860"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="70" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="2" executionOrderId="0" height="35" width="115" negated="false">
+ <position x="25" y="790"/>
+ <connectionPointOut>
+ <relPosition x="115" y="15"/>
+ </connectionPointOut>
+ <expression>DrawTestDo.Q1</expression>
+ </inVariable>
+ <inVariable localId="3" executionOrderId="0" height="35" width="115" negated="false">
+ <position x="560" y="785"/>
+ <connectionPointOut>
+ <relPosition x="115" y="15"/>
+ </connectionPointOut>
+ <expression>DrawTestDo.Q1</expression>
+ </inVariable>
+ <inVariable localId="4" executionOrderId="0" height="30" width="50" negated="false">
+ <position x="735" y="735"/>
+ <connectionPointOut>
+ <relPosition x="50" y="15"/>
+ </connectionPointOut>
+ <expression>power</expression>
+ </inVariable>
+ <block localId="5" typeName="axis" instanceName="Yaxis" executionOrderId="0" height="160" width="100">
+ <position x="830" y="765"/>
+ <inputVariables>
+ <variable formalParameter="Power">
+ <connectionPointIn>
+ <relPosition x="0" y="45"/>
+ <connection refLocalId="4">
+ <position x="830" y="810"/>
+ <position x="815" y="810"/>
+ <position x="815" y="750"/>
+ <position x="785" y="750"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="Up">
+ <connectionPointIn>
+ <relPosition x="0" y="90"/>
+ <connection refLocalId="9" formalParameter="OUT">
+ <position x="830" y="855"/>
+ <position x="807" y="855"/>
+ <position x="807" y="830"/>
+ <position x="785" y="830"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="Down">
+ <connectionPointIn>
+ <relPosition x="0" y="135"/>
+ <connection refLocalId="7">
+ <position x="830" y="900"/>
+ <position x="645" y="900"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Out">
+ <connectionPointOut>
+ <relPosition x="100" y="45"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <outVariable localId="6" executionOrderId="0" height="35" width="74" negated="false">
+ <position x="955" y="795"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="5" formalParameter="Out">
+ <position x="955" y="810"/>
+ <position x="930" y="810"/>
+ </connection>
+ </connectionPointIn>
+ <expression>YaxisPos</expression>
+ </outVariable>
+ <inVariable localId="7" executionOrderId="0" height="35" width="90" negated="false">
+ <position x="560" y="885"/>
+ <connectionPointOut>
+ <relPosition x="90" y="15"/>
+ </connectionPointOut>
+ <expression>YAxisMinus</expression>
+ </inVariable>
+ <inVariable localId="8" executionOrderId="0" height="35" width="85" negated="false">
+ <position x="560" y="840"/>
+ <connectionPointOut>
+ <relPosition x="85" y="15"/>
+ </connectionPointOut>
+ <expression>YAxisPlus</expression>
+ </inVariable>
+ <block localId="9" typeName="OR" executionOrderId="0" height="65" width="70">
+ <position x="715" y="800"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="3">
+ <position x="715" y="830"/>
+ <position x="657" y="830"/>
+ <position x="657" y="800"/>
+ <position x="645" y="800"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="55"/>
+ <connection refLocalId="8">
+ <position x="715" y="855"/>
+ <position x="645" y="855"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="70" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="10" executionOrderId="0" height="35" width="115" negated="false">
+ <position x="25" y="1045"/>
+ <connectionPointOut>
+ <relPosition x="115" y="15"/>
+ </connectionPointOut>
+ <expression>DrawTestDo.Q1</expression>
+ </inVariable>
+ <inVariable localId="11" executionOrderId="0" height="35" width="115" negated="false">
+ <position x="560" y="1025"/>
+ <connectionPointOut>
+ <relPosition x="115" y="15"/>
+ </connectionPointOut>
+ <expression>DrawLogoDo.Q1</expression>
+ </inVariable>
+ <inVariable localId="12" executionOrderId="0" height="30" width="50" negated="false">
+ <position x="740" y="975"/>
+ <connectionPointOut>
+ <relPosition x="50" y="15"/>
+ </connectionPointOut>
+ <expression>power</expression>
+ </inVariable>
+ <block localId="13" typeName="axis" instanceName="Taxis" executionOrderId="0" height="160" width="100">
+ <position x="835" y="1005"/>
+ <inputVariables>
+ <variable formalParameter="Power">
+ <connectionPointIn>
+ <relPosition x="0" y="45"/>
+ <connection refLocalId="12">
+ <position x="835" y="1050"/>
+ <position x="820" y="1050"/>
+ <position x="820" y="990"/>
+ <position x="790" y="990"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="Up">
+ <connectionPointIn>
+ <relPosition x="0" y="90"/>
+ <connection refLocalId="22" formalParameter="OUT">
+ <position x="835" y="1095"/>
+ <position x="812" y="1095"/>
+ <position x="812" y="1070"/>
+ <position x="790" y="1070"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="Down">
+ <connectionPointIn>
+ <relPosition x="0" y="135"/>
+ <connection refLocalId="23">
+ <position x="835" y="1140"/>
+ <position x="645" y="1140"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Out">
+ <connectionPointOut>
+ <relPosition x="100" y="45"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <outVariable localId="14" executionOrderId="0" height="35" width="74" negated="false">
+ <position x="960" y="1035"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="13" formalParameter="Out">
+ <position x="960" y="1050"/>
+ <position x="935" y="1050"/>
+ </connection>
+ </connectionPointIn>
+ <expression>TaxisPos</expression>
+ </outVariable>
+ <inVariable localId="15" executionOrderId="0" height="30" width="50" negated="false">
+ <position x="200" y="980"/>
+ <connectionPointOut>
+ <relPosition x="50" y="15"/>
+ </connectionPointOut>
+ <expression>power</expression>
+ </inVariable>
+ <inVariable localId="16" executionOrderId="0" height="35" width="85" negated="false">
+ <position x="560" y="1080"/>
+ <connectionPointOut>
+ <relPosition x="85" y="15"/>
+ </connectionPointOut>
+ <expression>TAxisPlus</expression>
+ </inVariable>
+ <block localId="17" typeName="axis" instanceName="Zaxis" executionOrderId="0" height="160" width="100">
+ <position x="300" y="1010"/>
+ <inputVariables>
+ <variable formalParameter="Power">
+ <connectionPointIn>
+ <relPosition x="0" y="45"/>
+ <connection refLocalId="15">
+ <position x="300" y="1055"/>
+ <position x="285" y="1055"/>
+ <position x="285" y="995"/>
+ <position x="250" y="995"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="Up">
+ <connectionPointIn>
+ <relPosition x="0" y="90"/>
+ <connection refLocalId="21" formalParameter="OUT">
+ <position x="300" y="1100"/>
+ <position x="280" y="1100"/>
+ <position x="280" y="1055"/>
+ <position x="270" y="1055"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="Down">
+ <connectionPointIn>
+ <relPosition x="0" y="135"/>
+ <connection refLocalId="19">
+ <position x="300" y="1145"/>
+ <position x="110" y="1145"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Out">
+ <connectionPointOut>
+ <relPosition x="100" y="45"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <outVariable localId="18" executionOrderId="0" height="35" width="74" negated="false">
+ <position x="435" y="1040"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="17" formalParameter="Out">
+ <position x="435" y="1055"/>
+ <position x="400" y="1055"/>
+ </connection>
+ </connectionPointIn>
+ <expression>ZaxisPos</expression>
+ </outVariable>
+ <inVariable localId="19" executionOrderId="0" height="35" width="90" negated="false">
+ <position x="25" y="1130"/>
+ <connectionPointOut>
+ <relPosition x="90" y="15"/>
+ </connectionPointOut>
+ <expression>ZAxisMinus</expression>
+ </inVariable>
+ <inVariable localId="20" executionOrderId="0" height="35" width="85" negated="false">
+ <position x="25" y="1090"/>
+ <connectionPointOut>
+ <relPosition x="85" y="15"/>
+ </connectionPointOut>
+ <expression>ZAxisPlus</expression>
+ </inVariable>
+ <block localId="21" typeName="OR" executionOrderId="0" height="100" width="70">
+ <position x="200" y="1020"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="35"/>
+ <connection refLocalId="24">
+ <position x="200" y="1055"/>
+ <position x="170" y="1055"/>
+ <position x="170" y="1015"/>
+ <position x="140" y="1015"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="60"/>
+ <connection refLocalId="10">
+ <position x="200" y="1080"/>
+ <position x="150" y="1080"/>
+ <position x="150" y="1060"/>
+ <position x="140" y="1060"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN3">
+ <connectionPointIn>
+ <relPosition x="0" y="85"/>
+ <connection refLocalId="20">
+ <position x="200" y="1105"/>
+ <position x="110" y="1105"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="70" y="35"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <block localId="22" typeName="OR" executionOrderId="0" height="65" width="70">
+ <position x="720" y="1040"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="11">
+ <position x="720" y="1070"/>
+ <position x="657" y="1070"/>
+ <position x="657" y="1040"/>
+ <position x="645" y="1040"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="55"/>
+ <connection refLocalId="16">
+ <position x="720" y="1095"/>
+ <position x="645" y="1095"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="70" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="23" executionOrderId="0" height="35" width="90" negated="false">
+ <position x="560" y="1125"/>
+ <connectionPointOut>
+ <relPosition x="90" y="15"/>
+ </connectionPointOut>
+ <expression>TAxisMinus</expression>
+ </inVariable>
+ <inVariable localId="24" executionOrderId="0" height="35" width="115" negated="false">
+ <position x="25" y="1000"/>
+ <connectionPointOut>
+ <relPosition x="115" y="15"/>
+ </connectionPointOut>
+ <expression>DrawLogoDo.Q1</expression>
+ </inVariable>
+ <inVariable localId="25" executionOrderId="0" height="30" width="85" negated="false">
+ <position x="40" y="450"/>
+ <connectionPointOut>
+ <relPosition x="85" y="15"/>
+ </connectionPointOut>
+ <expression>DrawTest</expression>
+ </inVariable>
+ <block localId="26" typeName="RS" instanceName="DrawTestDo" executionOrderId="0" height="115" width="55">
+ <position x="280" y="445"/>
+ <inputVariables>
+ <variable formalParameter="S">
+ <connectionPointIn>
+ <relPosition x="0" y="45"/>
+ <connection refLocalId="28" formalParameter="OUT">
+ <position x="280" y="490"/>
+ <position x="255" y="490"/>
+ <position x="255" y="465"/>
+ <position x="230" y="465"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="R1">
+ <connectionPointIn>
+ <relPosition x="0" y="90"/>
+ <connection refLocalId="33" formalParameter="OUT">
+ <position x="280" y="535"/>
+ <position x="255" y="535"/>
+ <position x="255" y="560"/>
+ <position x="230" y="560"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Q1">
+ <connectionPointOut>
+ <relPosition x="55" y="45"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="27" executionOrderId="0" height="30" width="85" negated="false">
+ <position x="40" y="545"/>
+ <connectionPointOut>
+ <relPosition x="85" y="15"/>
+ </connectionPointOut>
+ <expression>Power_OFF</expression>
+ </inVariable>
+ <block localId="28" typeName="OR" executionOrderId="0" height="85" width="70">
+ <position x="160" y="430"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="35"/>
+ <connection refLocalId="25">
+ <position x="160" y="465"/>
+ <position x="125" y="465"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="70"/>
+ <connection refLocalId="29">
+ <position x="160" y="500"/>
+ <position x="135" y="500"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="70" y="35"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="29" executionOrderId="0" height="30" width="98" negated="false">
+ <position x="40" y="485"/>
+ <connectionPointOut>
+ <relPosition x="98" y="15"/>
+ </connectionPointOut>
+ <expression>DrawTestBtn</expression>
+ </inVariable>
+ <block localId="33" typeName="OR" executionOrderId="0" height="85" width="70">
+ <position x="160" y="525"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="35"/>
+ <connection refLocalId="27">
+ <position x="160" y="560"/>
+ <position x="125" y="560"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="70"/>
+ <connection refLocalId="35">
+ <position x="160" y="595"/>
+ <position x="125" y="595"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="70" y="35"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="35" executionOrderId="0" height="30" width="85" negated="false">
+ <position x="40" y="580"/>
+ <connectionPointOut>
+ <relPosition x="85" y="15"/>
+ </connectionPointOut>
+ <expression>DrawLogo</expression>
+ </inVariable>
+ <comment localId="36" height="45" width="215">
+ <position x="20" y="670"/>
+ <content>
+ <xhtml:p><![CDATA[Control virtual axes.]]></xhtml:p>
+ </content>
+ </comment>
+ <inVariable localId="30" executionOrderId="0" height="30" width="85" negated="false">
+ <position x="510" y="475"/>
+ <connectionPointOut>
+ <relPosition x="85" y="15"/>
+ </connectionPointOut>
+ <expression>DrawLogo</expression>
+ </inVariable>
+ <block localId="31" typeName="RS" instanceName="DrawLogoDo" executionOrderId="0" height="115" width="55">
+ <position x="740" y="445"/>
+ <inputVariables>
+ <variable formalParameter="S">
+ <connectionPointIn>
+ <relPosition x="0" y="45"/>
+ <connection refLocalId="30">
+ <position x="740" y="490"/>
+ <position x="595" y="490"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="R1">
+ <connectionPointIn>
+ <relPosition x="0" y="90"/>
+ <connection refLocalId="39" formalParameter="OUT">
+ <position x="740" y="535"/>
+ <position x="715" y="535"/>
+ <position x="715" y="560"/>
+ <position x="690" y="560"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Q1">
+ <connectionPointOut>
+ <relPosition x="55" y="45"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="32" executionOrderId="0" height="30" width="85" negated="false">
+ <position x="500" y="545"/>
+ <connectionPointOut>
+ <relPosition x="85" y="15"/>
+ </connectionPointOut>
+ <expression>Power_OFF</expression>
+ </inVariable>
+ <inVariable localId="38" executionOrderId="0" height="30" width="85" negated="false">
+ <position x="500" y="580"/>
+ <connectionPointOut>
+ <relPosition x="85" y="15"/>
+ </connectionPointOut>
+ <expression>DrawTest</expression>
+ </inVariable>
+ <block localId="39" typeName="OR" executionOrderId="0" height="85" width="70">
+ <position x="620" y="525"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="35"/>
+ <connection refLocalId="32">
+ <position x="620" y="560"/>
+ <position x="585" y="560"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="70"/>
+ <connection refLocalId="38">
+ <position x="620" y="595"/>
+ <position x="585" y="595"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="70" y="35"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <comment localId="34" height="45" width="365">
+ <position x="15" y="55"/>
+ <content>
+ <xhtml:p><![CDATA[Turn on/off power, Power on enables axes control.]]></xhtml:p>
+ </content>
+ </comment>
+ <comment localId="37" height="45" width="550">
+ <position x="35" y="360"/>
+ <content>
+ <xhtml:p><![CDATA[Only one mode can be selected at any time ("Draw Logo" or "Draw Test").]]></xhtml:p>
+ </content>
+ </comment>
+ </FBD>
+ </body>
+ <documentation>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </documentation>
+ </pou>
+ <pou name="ReadGUIdata" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="python_poll0">
+ <type>
+ <derived name="python_poll"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <block localId="220" typeName="python_poll" instanceName="python_poll0" executionOrderId="0" height="85" width="104">
+ <position x="338" y="130"/>
+ <inputVariables>
+ <variable formalParameter="TRIG">
+ <connectionPointIn>
+ <relPosition x="0" y="35"/>
+ <connection refLocalId="221">
+ <position x="338" y="165"/>
+ <position x="268" y="165"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="CODE">
+ <connectionPointIn>
+ <relPosition x="0" y="70"/>
+ <connection refLocalId="222">
+ <position x="338" y="200"/>
+ <position x="296" y="200"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="ACK">
+ <connectionPointOut>
+ <relPosition x="104" y="35"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="RESULT">
+ <connectionPointOut>
+ <relPosition x="104" y="70"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="221" executionOrderId="0" height="30" width="93" negated="false">
+ <position x="175" y="150"/>
+ <connectionPointOut>
+ <relPosition x="93" y="15"/>
+ </connectionPointOut>
+ <expression>BOOL#TRUE</expression>
+ </inVariable>
+ <inVariable localId="222" executionOrderId="0" height="30" width="186" negated="false">
+ <position x="110" y="185"/>
+ <connectionPointOut>
+ <relPosition x="186" y="15"/>
+ </connectionPointOut>
+ <expression>'wxglade_hmi.UpdPos()'</expression>
+ </inVariable>
+ <comment localId="296" height="55" width="445">
+ <position x="35" y="25"/>
+ <content>
+ <xhtml:p><![CDATA[This is slow PLC task. It just updates state of axes on HMI.]]></xhtml:p>
+ </content>
+ </comment>
+ </FBD>
+ </body>
+ <documentation>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </documentation>
+ </pou>
+ <pou name="Declarations" pouType="program">
+ <interface>
+ <localVars>
+ <variable name="InitValue">
+ <type>
+ <DINT/>
+ </type>
+ <initialValue>
+ <simpleValue value="17"/>
+ </initialValue>
+ </variable>
+ <variable name="NotInitializedVariable">
+ <type>
+ <DINT/>
+ </type>
+ </variable>
+ <variable name="counter">
+ <type>
+ <DINT/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <inVariable localId="127" executionOrderId="0" height="30" width="82" negated="false">
+ <position x="60" y="180"/>
+ <connectionPointOut>
+ <relPosition x="82" y="15"/>
+ </connectionPointOut>
+ <expression>InitValue</expression>
+ </inVariable>
+ <outVariable localId="128" executionOrderId="0" height="30" width="235" negated="false">
+ <position x="180" y="180"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="127">
+ <position x="180" y="195"/>
+ <position x="142" y="195"/>
+ </connection>
+ </connectionPointIn>
+ <expression>NotInitializedVariable</expression>
+ </outVariable>
+ <comment localId="129" height="90" width="395">
+ <position x="65" y="40"/>
+ <content>
+ <xhtml:p><![CDATA[This program called only once at start.
+See task configuration in config.resource1.]]></xhtml:p>
+ </content>
+ </comment>
+ <block localId="131" typeName="ADD" executionOrderId="0" height="95" width="70">
+ <position x="160" y="340"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="40"/>
+ <connection refLocalId="130">
+ <position x="160" y="380"/>
+ <position x="125" y="380"/>
+ <position x="125" y="325"/>
+ <position x="380" y="325"/>
+ <position x="380" y="380"/>
+ <position x="365" y="380"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="75"/>
+ <connection refLocalId="1">
+ <position x="160" y="415"/>
+ <position x="120" y="415"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="70" y="40"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="1" executionOrderId="0" height="35" width="60" negated="false">
+ <position x="60" y="400"/>
+ <connectionPointOut>
+ <relPosition x="60" y="15"/>
+ </connectionPointOut>
+ <expression>1</expression>
+ </inVariable>
+ <inOutVariable localId="130" executionOrderId="0" height="35" width="90" negatedOut="false" negatedIn="false">
+ <position x="275" y="365"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="131" formalParameter="OUT">
+ <position x="275" y="380"/>
+ <position x="230" y="380"/>
+ </connection>
+ </connectionPointIn>
+ <connectionPointOut>
+ <relPosition x="90" y="15"/>
+ </connectionPointOut>
+ <expression>counter</expression>
+ </inOutVariable>
+ <comment localId="2" height="75" width="390">
+ <position x="70" y="240"/>
+ <content>
+ <xhtml:p><![CDATA[Counts how many times the program is called.
+Check counter value in debugger.]]></xhtml:p>
+ </content>
+ </comment>
+ </FBD>
+ </body>
+ <documentation>
+ <xhtml:p><![CDATA[]]></xhtml:p>
+ </documentation>
+ </pou>
+ <pou name="clock" pouType="functionBlock">
+ <interface>
+ <localVars>
+ <variable name="TimerOn">
+ <type>
+ <derived name="TON"/>
+ </type>
+ </variable>
+ </localVars>
+ <outputVars>
+ <variable name="Out">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ </outputVars>
+ <inputVars>
+ <variable name="Period">
+ <type>
+ <TIME/>
+ </type>
+ <initialValue>
+ <simpleValue value="T#3s"/>
+ </initialValue>
+ </variable>
+ </inputVars>
+ <localVars>
+ <variable name="TimerOff">
+ <type>
+ <derived name="TON"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <block localId="14" typeName="TON" instanceName="TimerOn" executionOrderId="0" height="100" width="50">
+ <position x="260" y="70"/>
+ <inputVariables>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="40"/>
+ <connection refLocalId="2" formalParameter="Q">
+ <position x="260" y="110"/>
+ <position x="225" y="110"/>
+ <position x="225" y="10"/>
+ <position x="550" y="10"/>
+ <position x="550" y="110"/>
+ <position x="510" y="110"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="PT">
+ <connectionPointIn>
+ <relPosition x="0" y="80"/>
+ <connection refLocalId="16" formalParameter="OUT">
+ <position x="260" y="150"/>
+ <position x="225" y="150"/>
+ <position x="225" y="255"/>
+ <position x="190" y="255"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Q">
+ <connectionPointOut>
+ <relPosition x="50" y="40"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="ET">
+ <connectionPointOut>
+ <relPosition x="50" y="80"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <block localId="2" typeName="TON" instanceName="TimerOff" executionOrderId="0" height="100" width="50">
+ <position x="460" y="70"/>
+ <inputVariables>
+ <variable formalParameter="IN">
+ <connectionPointIn>
+ <relPosition x="0" y="40"/>
+ <connection refLocalId="14" formalParameter="Q">
+ <position x="460" y="110"/>
+ <position x="310" y="110"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="PT">
+ <connectionPointIn>
+ <relPosition x="0" y="80"/>
+ <connection refLocalId="16" formalParameter="OUT">
+ <position x="460" y="150"/>
+ <position x="350" y="150"/>
+ <position x="350" y="255"/>
+ <position x="190" y="255"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Q" negated="true">
+ <connectionPointOut>
+ <relPosition x="50" y="40"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="ET">
+ <connectionPointOut>
+ <relPosition x="50" y="80"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <outVariable localId="15" executionOrderId="0" height="35" width="35" negated="false">
+ <position x="365" y="25"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="14" formalParameter="Q">
+ <position x="365" y="40"/>
+ <position x="340" y="40"/>
+ <position x="340" y="110"/>
+ <position x="310" y="110"/>
+ </connection>
+ </connectionPointIn>
+ <expression>Out</expression>
+ </outVariable>
+ <block localId="16" typeName="DIV" executionOrderId="0" height="95" width="70">
+ <position x="120" y="215"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="40"/>
+ <connection refLocalId="1">
+ <position x="120" y="255"/>
+ <position x="78" y="255"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="75"/>
+ <connection refLocalId="4">
+ <position x="120" y="290"/>
+ <position x="75" y="290"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="70" y="40"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="1" executionOrderId="0" height="30" width="58" negated="false">
+ <position x="20" y="240"/>
+ <connectionPointOut>
+ <relPosition x="58" y="15"/>
+ </connectionPointOut>
+ <expression>Period</expression>
+ </inVariable>
+ <inVariable localId="4" executionOrderId="0" height="30" width="55" negated="false">
+ <position x="20" y="275"/>
+ <connectionPointOut>
+ <relPosition x="55" y="15"/>
+ </connectionPointOut>
+ <expression>2</expression>
+ </inVariable>
+ </FBD>
+ </body>
+ </pou>
+ <pou name="axis" pouType="functionBlock">
+ <interface>
+ <inputVars>
+ <variable name="Power">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="Up">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ <variable name="Down">
+ <type>
+ <BOOL/>
+ </type>
+ </variable>
+ </inputVars>
+ <outputVars>
+ <variable name="Out">
+ <type>
+ <INT/>
+ </type>
+ </variable>
+ </outputVars>
+ <localVars>
+ <variable name="axis_conuter">
+ <type>
+ <derived name="CTUD"/>
+ </type>
+ </variable>
+ <variable name="clock0">
+ <type>
+ <derived name="clock"/>
+ </type>
+ </variable>
+ </localVars>
+ </interface>
+ <body>
+ <FBD>
+ <block localId="297" typeName="CTUD" instanceName="axis_conuter" executionOrderId="0" height="310" width="70">
+ <position x="645" y="30"/>
+ <inputVariables>
+ <variable formalParameter="CU" edge="rising">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="303" formalParameter="OUT">
+ <position x="645" y="80"/>
+ <position x="580" y="80"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="CD" edge="rising">
+ <connectionPointIn>
+ <relPosition x="0" y="105"/>
+ <connection refLocalId="2" formalParameter="OUT">
+ <position x="645" y="135"/>
+ <position x="612" y="135"/>
+ <position x="612" y="150"/>
+ <position x="580" y="150"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="R">
+ <connectionPointIn>
+ <relPosition x="0" y="165"/>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="LD">
+ <connectionPointIn>
+ <relPosition x="0" y="225"/>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="PV">
+ <connectionPointIn>
+ <relPosition x="0" y="280"/>
+ <connection refLocalId="3">
+ <position x="645" y="310"/>
+ <position x="610" y="310"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="QU">
+ <connectionPointOut>
+ <relPosition x="70" y="50"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="QD">
+ <connectionPointOut>
+ <relPosition x="70" y="105"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="CV">
+ <connectionPointOut>
+ <relPosition x="70" y="165"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="CD_T">
+ <connectionPointOut>
+ <relPosition x="70" y="225"/>
+ </connectionPointOut>
+ </variable>
+ <variable formalParameter="CU_T">
+ <connectionPointOut>
+ <relPosition x="70" y="280"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <outVariable localId="298" executionOrderId="0" height="35" width="35" negated="false">
+ <position x="750" y="180"/>
+ <connectionPointIn>
+ <relPosition x="0" y="15"/>
+ <connection refLocalId="297" formalParameter="CV">
+ <position x="750" y="195"/>
+ <position x="715" y="195"/>
+ </connection>
+ </connectionPointIn>
+ <expression>Out</expression>
+ </outVariable>
+ <block localId="299" typeName="clock" instanceName="clock0" executionOrderId="0" height="70" width="87">
+ <position x="165" y="270"/>
+ <inputVariables>
+ <variable formalParameter="Period">
+ <connectionPointIn>
+ <relPosition x="0" y="45"/>
+ <connection refLocalId="1">
+ <position x="165" y="315"/>
+ <position x="110" y="315"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="Out">
+ <connectionPointOut>
+ <relPosition x="87" y="45"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="300" executionOrderId="0" height="35" width="55" negated="false">
+ <position x="35" y="205"/>
+ <connectionPointOut>
+ <relPosition x="55" y="15"/>
+ </connectionPointOut>
+ <expression>Power</expression>
+ </inVariable>
+ <inVariable localId="1" executionOrderId="0" height="35" width="75" negated="false">
+ <position x="35" y="300"/>
+ <connectionPointOut>
+ <relPosition x="75" y="15"/>
+ </connectionPointOut>
+ <expression>T#100ms</expression>
+ </inVariable>
+ <inVariable localId="301" executionOrderId="0" height="35" width="55" negated="false">
+ <position x="340" y="85"/>
+ <connectionPointOut>
+ <relPosition x="55" y="15"/>
+ </connectionPointOut>
+ <expression>Up</expression>
+ </inVariable>
+ <inVariable localId="302" executionOrderId="0" height="35" width="50" negated="false">
+ <position x="340" y="155"/>
+ <connectionPointOut>
+ <relPosition x="50" y="15"/>
+ </connectionPointOut>
+ <expression>Down</expression>
+ </inVariable>
+ <block localId="303" typeName="AND" executionOrderId="0" height="60" width="110">
+ <position x="470" y="50"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="4" formalParameter="OUT">
+ <position x="470" y="80"/>
+ <position x="432" y="80"/>
+ <position x="432" y="275"/>
+ <position x="395" y="275"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="301">
+ <position x="470" y="100"/>
+ <position x="395" y="100"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="110" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <block localId="2" typeName="AND" executionOrderId="0" height="60" width="110">
+ <position x="470" y="120"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="30"/>
+ <connection refLocalId="4" formalParameter="OUT">
+ <position x="470" y="150"/>
+ <position x="432" y="150"/>
+ <position x="432" y="275"/>
+ <position x="395" y="275"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="50"/>
+ <connection refLocalId="302">
+ <position x="470" y="170"/>
+ <position x="390" y="170"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="110" y="30"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ <inVariable localId="3" executionOrderId="0" height="35" width="85" negated="false">
+ <position x="525" y="295"/>
+ <connectionPointOut>
+ <relPosition x="85" y="15"/>
+ </connectionPointOut>
+ <expression>INT#32767</expression>
+ </inVariable>
+ <block localId="4" typeName="AND" executionOrderId="0" height="100" width="110">
+ <position x="285" y="235"/>
+ <inputVariables>
+ <variable formalParameter="IN1">
+ <connectionPointIn>
+ <relPosition x="0" y="40"/>
+ <connection refLocalId="300">
+ <position x="285" y="275"/>
+ <position x="265" y="275"/>
+ <position x="265" y="220"/>
+ <position x="90" y="220"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ <variable formalParameter="IN2">
+ <connectionPointIn>
+ <relPosition x="0" y="80"/>
+ <connection refLocalId="299" formalParameter="Out">
+ <position x="285" y="315"/>
+ <position x="250" y="315"/>
+ </connection>
+ </connectionPointIn>
+ </variable>
+ </inputVariables>
+ <inOutVariables/>
+ <outputVariables>
+ <variable formalParameter="OUT">
+ <connectionPointOut>
+ <relPosition x="110" y="40"/>
+ </connectionPointOut>
+ </variable>
+ </outputVariables>
+ </block>
+ </FBD>
+ </body>
+ </pou>
+ </pous>
+ </types>
+ <instances>
+ <configurations>
+ <configuration name="config">
+ <resource name="resource1">
+ <task name="InitOneShot" priority="0" single="Initialize">
+ <pouInstance name="Initializer" typeName="Declarations"/>
+ </task>
+ <task name="ControlTask" priority="1" interval="T#2ms">
+ <pouInstance name="MainInstance" typeName="main"/>
+ </task>
+ <task name="GUIupdate" priority="0" interval="T#200ms">
+ <pouInstance name="PosReader" typeName="ReadGUIdata"/>
+ </task>
+ <globalVars>
+ <variable name="Initialize">
+ <type>
+ <BOOL/>
+ </type>
+ <initialValue>
+ <simpleValue value="TRUE"/>
+ </initialValue>
+ </variable>
+ </globalVars>
+ </resource>
+ </configuration>
+ </configurations>
+ </instances>
+</project>
Binary file tests/projects/wxHMI/project_files/Detect_Circle.png has changed
Binary file tests/projects/wxHMI/project_files/DrawEscher.png has changed
Binary file tests/projects/wxHMI/project_files/DrawLogo.png has changed
Binary file tests/projects/wxHMI/project_files/DrawTest.png has changed
Binary file tests/projects/wxHMI/project_files/Power_OFF.png has changed
Binary file tests/projects/wxHMI/project_files/Power_ON.png has changed
Binary file tests/projects/wxHMI/project_files/TaxisMinus.png has changed
Binary file tests/projects/wxHMI/project_files/TaxisPlus.png has changed
Binary file tests/projects/wxHMI/project_files/XaxisMinus.png has changed
Binary file tests/projects/wxHMI/project_files/XaxisPlus.png has changed
Binary file tests/projects/wxHMI/project_files/YaxisMinus.png has changed
Binary file tests/projects/wxHMI/project_files/YaxisPlus.png has changed
Binary file tests/projects/wxHMI/project_files/ZaxisMinus.png has changed
Binary file tests/projects/wxHMI/project_files/ZaxisPlus.png has changed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wxHMI/wxglade_hmi@wxglade_hmi/baseconfnode.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,2 @@
+<?xml version='1.0' encoding='utf-8'?>
+<BaseParams Name="wxglade_hmi" IEC_Channel="0"/>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wxHMI/wxglade_hmi@wxglade_hmi/hmi.wxg Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,96 @@
+<?xml version="1.0"?>
+<!-- generated by wxGlade 0.8.3 on Mon Aug 13 17:04:28 2018 -->
+
+<application encoding="UTF-8" for_version="3.0" header_extension=".h" indent_amount="4" indent_symbol="space" is_template="0" language="python" option="0" overwrite="0" path="..py.py" source_extension=".cpp" top_window="wxglade_hmi" use_gettext="1" use_new_namespace="1">
+ <object class="Class_wxglade_hmi" name="wxglade_hmi" base="EditFrame">
+ <title>frame_1</title>
+ <style>wxDEFAULT_FRAME_STYLE|wxMAXIMIZE</style>
+ <object class="wxFlexGridSizer" name="grid_sizer_1" base="EditFlexGridSizer">
+ <rows>1</rows>
+ <cols>4</cols>
+ <vgap>0</vgap>
+ <hgap>0</hgap>
+ <growable_rows>0</growable_rows>
+ <growable_cols>0</growable_cols>
+ <object class="sizeritem">
+ <option>1</option>
+ <border>0</border>
+ <flag>wxALIGN_CENTER</flag>
+ <object class="ThreeDee" name="window_1" base="CustomWidget">
+ <size>400,400</size>
+ <arguments>
+ <argument>$parent</argument>
+ <argument>$id</argument>
+ </arguments>
+ </object>
+ </object>
+ <object class="sizeritem">
+ <option>1</option>
+ <border>0</border>
+ <flag>wxEXPAND</flag>
+ <object class="wxFlexGridSizer" name="sizer_1" base="EditFlexGridSizer">
+ <rows>2</rows>
+ <cols>1</cols>
+ <vgap>0</vgap>
+ <hgap>0</hgap>
+ <growable_rows>0</growable_rows>
+ <object class="sizeritem">
+ <option>1</option>
+ <border>0</border>
+ <flag>wxEXPAND</flag>
+ <object class="wxBoxSizer" name="sizer_2" base="EditBoxSizer">
+ <orient>wxVERTICAL</orient>
+ <object class="sizerslot" />
+ <object class="sizerslot" />
+ <object class="sizerslot" />
+ <object class="sizerslot" />
+ </object>
+ </object>
+ <object class="sizeritem">
+ <option>1</option>
+ <border>0</border>
+ <flag>wxEXPAND</flag>
+ <object class="wxGridSizer" name="sizer_3" base="EditGridSizer">
+ <rows>6</rows>
+ <cols>2</cols>
+ <vgap>0</vgap>
+ <hgap>0</hgap>
+ <object class="sizerslot" />
+ <object class="sizerslot" />
+ <object class="sizerslot" />
+ <object class="sizerslot" />
+ <object class="sizerslot" />
+ <object class="sizerslot" />
+ <object class="sizerslot" />
+ <object class="sizerslot" />
+ <object class="sizerslot" />
+ <object class="sizerslot" />
+ <object class="sizerslot" />
+ <object class="sizerslot" />
+ </object>
+ </object>
+ </object>
+ </object>
+ <object class="sizeritem">
+ <option>0</option>
+ <border>0</border>
+ <object class="wxToggleButton" name="DrawTestBt" base="EditToggleButton">
+ <events>
+ <handler event="EVT_TOGGLEBUTTON">SetPLCTestBtnGlobalVar</handler>
+ </events>
+ <label>Please Draw!</label>
+ </object>
+ </object>
+ <object class="sizeritem">
+ <option>0</option>
+ <border>0</border>
+ <object class="wxToggleButton" name="DrawTestBt2" base="EditToggleButton">
+ <events>
+ <handler event="EVT_TOGGLEBUTTON">SetPLCTestBtn2GlobalVar</handler>
+ </events>
+ <label>Please Draw copy!</label>
+ </object>
+ </object>
+ </object>
+ </object>
+</application>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/projects/wxHMI/wxglade_hmi@wxglade_hmi/pyfile.xml Wed Feb 02 20:27:17 2022 +0100
@@ -0,0 +1,148 @@
+<?xml version='1.0' encoding='utf-8'?>
+<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml">
+ <variables>
+ <variable name="Power_ON" type="BOOL"/>
+ <variable name="Power_OFF" type="BOOL"/>
+ <variable name="DrawTest" type="BOOL"/>
+ <variable name="DrawLogo" type="BOOL"/>
+ <variable name="DrawEscher" type="BOOL"/>
+ <variable name="Detect_Circle" type="BOOL"/>
+ <variable name="XaxisPos" type="INT"/>
+ <variable name="YaxisPos" type="INT"/>
+ <variable name="ZaxisPos" type="INT"/>
+ <variable name="TaxisPos" type="INT"/>
+ <variable name="XaxisMinus" type="BOOL"/>
+ <variable name="YaxisMinus" type="BOOL"/>
+ <variable name="ZaxisMinus" type="BOOL"/>
+ <variable name="TaxisMinus" type="BOOL"/>
+ <variable name="XaxisPlus" type="BOOL"/>
+ <variable name="YaxisPlus" type="BOOL"/>
+ <variable name="ZaxisPlus" type="BOOL"/>
+ <variable name="TaxisPlus" type="BOOL"/>
+ <variable name="DrawTestBtn" type="BOOL"/>
+ <variable name="DrawTestBtn2" type="BOOL"/>
+ </variables>
+ <globals>
+ <xhtml:p><![CDATA[
+import ctypes
+import wx, sys
+
+AxisList = ["X","Y","Z","T"]
+
+PwrButtons = ['Power_ON',
+ 'Power_OFF']
+
+ActionButtons = ['Detect_Circle',
+ 'DrawTest',
+ 'DrawLogo',
+ 'DrawEscher']
+
+class ThreeDee(wx.StaticText):
+ def __init__(self, *args, **kwargs):
+ self.initialized = False
+ kwargs["style"] = wx.ALIGN_CENTRE_HORIZONTAL
+ super(ThreeDee, self).__init__(*args, **kwargs)
+
+ self.SetFont(wx.Font(24, wx.SWISS, wx.NORMAL, wx.BOLD))
+
+ self.positions = [0.]*4
+
+ self.Message = None
+ self.NegLimits = None
+ self.Disk = None
+
+
+ def UpdatePositions(self, positions):
+ # get globals from PLC
+ self.positions = positions
+ self.SetLabel(
+ ((self.Message +'\n\n') if self.Message else '' )+
+ " ".join(["%s %+.2f"%(axis,self.positions[i])
+ for i,axis in enumerate(AxisList)]))
+
+def MakeButtonFunc(window, sizer, btname):
+ def ButtonDown(event):
+ setattr(PLCGlobals,btname,1)
+ event.Skip()
+ def ButtonUp(event):
+ setattr(PLCGlobals,btname,0)
+ event.Skip()
+ obj = wx.BitmapButton(window, -1, wx.Bitmap('%s.png'%btname))
+ sizer.Add(obj, 2, wx.EXPAND, 0)
+ obj.Bind(wx.EVT_LEFT_DOWN, ButtonDown)
+ obj.Bind(wx.EVT_LEFT_UP, ButtonUp)
+ return obj
+
+def UpdPos(self):
+ positions = [getattr(PLCGlobals,axname+"axisPos") for axname in AxisList]
+
+ self.window_1.UpdatePositions(positions)
+
+Class_wxglade_hmi.UpdPos = UpdPos
+
+
+#def UpdatePositions(self, event):
+#
+# positions = [getattr(PLCGlobals,axname+"axisPos") for axname in AxisList]
+#
+# self.window_1.UpdatePositions(positions)
+#
+# event.Skip()
+
+#Class_wxglade_hmi.UpdatePositions = UpdatePositions
+
+def CleanSizer(sizer):
+ sizer_len = sizer.GetItemCount()
+ if sizer_len > 0:
+ for i in reversed(range(sizer_len)):
+ sizer.Remove(i)
+
+initorig = Class_wxglade_hmi.__init__
+def Init(self,*args,**kargs):
+ initorig(self,*args,**kargs)
+ sizer = self.GetSizer().GetItem(1).GetSizer().GetItem(0).GetSizer()
+ CleanSizer(sizer)
+ self.main_buttons = map(
+ lambda btname: MakeButtonFunc(self, sizer, btname), PwrButtons)
+ sizer = self.GetSizer().GetItem(1).GetSizer().GetItem(1).GetSizer()
+ CleanSizer(sizer)
+ self.main_buttons = map(
+ lambda btname: MakeButtonFunc(self, sizer, btname), ActionButtons)
+ self.axis_buttons = map(
+ lambda axis:( MakeButtonFunc(self, sizer, axis+"axisMinus"),
+ MakeButtonFunc(self, sizer, axis+"axisPlus")),
+ AxisList)
+
+
+ # self.timer = wx.Timer(self, -1)
+ # self.Bind(wx.EVT_TIMER, self.UpdatePositions, self.timer)
+ # self.ShowFullScreen(True,wx.FULLSCREEN_ALL)
+ # wx.CallAfter(self.timer.Start,200)
+
+Class_wxglade_hmi.__init__ = Init
+
+def SetPLCTestBtnGlobalVar(self, evt):
+ setattr(PLCGlobals, "DrawTestBtn", evt.GetEventObject().GetValue())
+
+def SetPLCTestBtn2GlobalVar(self, evt):
+ setattr(PLCGlobals, "DrawTestBtn2", evt.GetEventObject().GetValue())
+
+]]></xhtml:p>
+ </globals>
+ <init>
+ <xhtml:p><![CDATA[
+]]></xhtml:p>
+ </init>
+ <cleanup>
+ <xhtml:p><![CDATA[
+]]></xhtml:p>
+ </cleanup>
+ <start>
+ <xhtml:p><![CDATA[
+]]></xhtml:p>
+ </start>
+ <stop>
+ <xhtml:p><![CDATA[
+]]></xhtml:p>
+ </stop>
+</PyFile>
--- a/tests/svghmi/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="LOCAL://">
- <TargetType/>
- <Libraries Enable_SVGHMI_Library="true"/>
-</BeremizRoot>
--- a/tests/svghmi/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1104 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
- <contentHeader name="Unnamed" modificationDateTime="2021-11-08T13:54:01">
- <coordinateInfo>
- <fbd>
- <scaling x="5" y="5"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="MainStuff" pouType="program">
- <interface>
- <localVars>
- <variable name="TargetPressure">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- <variable name="selection">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- <variable name="Pump0">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="Pump1">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="Pump2">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="Pump3">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="Pump4">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="Pump5">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="Pump6">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="Pump7">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- </localVars>
- <externalVars>
- <variable name="CURRENT_PAGE_0">
- <type>
- <derived name="HMI_STRING"/>
- </type>
- </variable>
- </externalVars>
- <localVars>
- <variable name="PAGESWITCH">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="R_TRIG0">
- <type>
- <derived name="R_TRIG"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <block localId="4" typeName="PumpControl" instanceName="Pump0" executionOrderId="0" height="60" width="127">
- <position x="595" y="50"/>
- <inputVariables>
- <variable formalParameter="Pump">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- </connectionPointIn>
- </variable>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="5">
- <position x="595" y="100"/>
- <position x="582" y="100"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
- <position x="445" y="65"/>
- <connectionPointOut>
- <relPosition x="125" y="15"/>
- </connectionPointOut>
- <expression>TargetPressure</expression>
- </inVariable>
- <block localId="1" typeName="PumpControl" instanceName="Pump1" executionOrderId="0" height="60" width="127">
- <position x="595" y="280"/>
- <inputVariables>
- <variable formalParameter="Pump">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- </connectionPointIn>
- </variable>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="5">
- <position x="595" y="330"/>
- <position x="582" y="330"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <block localId="2" typeName="PumpControl" instanceName="Pump2" executionOrderId="0" height="60" width="127">
- <position x="595" y="160"/>
- <inputVariables>
- <variable formalParameter="Pump">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- </connectionPointIn>
- </variable>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="5">
- <position x="595" y="210"/>
- <position x="582" y="210"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <block localId="3" typeName="PumpControl" instanceName="Pump3" executionOrderId="0" height="60" width="127">
- <position x="595" y="395"/>
- <inputVariables>
- <variable formalParameter="Pump">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- </connectionPointIn>
- </variable>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="5">
- <position x="595" y="445"/>
- <position x="582" y="445"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <block localId="6" typeName="PumpControl" instanceName="Pump4" executionOrderId="0" height="60" width="127">
- <position x="595" y="515"/>
- <inputVariables>
- <variable formalParameter="Pump">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- </connectionPointIn>
- </variable>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="5">
- <position x="595" y="565"/>
- <position x="582" y="565"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <block localId="7" typeName="PumpControl" instanceName="Pump5" executionOrderId="0" height="60" width="127">
- <position x="595" y="645"/>
- <inputVariables>
- <variable formalParameter="Pump">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="11">
- <position x="595" y="675"/>
- <position x="570" y="675"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="5">
- <position x="595" y="695"/>
- <position x="582" y="695"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <block localId="8" typeName="PumpControl" instanceName="Pump6" executionOrderId="0" height="60" width="127">
- <position x="595" y="775"/>
- <inputVariables>
- <variable formalParameter="Pump">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- </connectionPointIn>
- </variable>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="5">
- <position x="595" y="825"/>
- <position x="582" y="825"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <block localId="9" typeName="PumpControl" instanceName="Pump7" executionOrderId="0" height="60" width="127">
- <position x="595" y="895"/>
- <inputVariables>
- <variable formalParameter="Pump">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="10">
- <position x="595" y="925"/>
- <position x="560" y="925"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="5">
- <position x="595" y="945"/>
- <position x="582" y="945"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <inVariable localId="10" executionOrderId="0" height="25" width="20" negated="false">
- <position x="540" y="915"/>
- <connectionPointOut>
- <relPosition x="20" y="10"/>
- </connectionPointOut>
- <expression>0</expression>
- </inVariable>
- <inVariable localId="11" executionOrderId="0" height="25" width="20" negated="false">
- <position x="550" y="665"/>
- <connectionPointOut>
- <relPosition x="20" y="10"/>
- </connectionPointOut>
- <expression>0</expression>
- </inVariable>
- <inOutVariable localId="12" executionOrderId="0" height="25" width="125" negatedOut="false" negatedIn="false">
- <position x="410" y="205"/>
- <connectionPointIn>
- <relPosition x="0" y="10"/>
- <connection refLocalId="13" formalParameter="OUT">
- <position x="410" y="215"/>
- <position x="385" y="215"/>
- </connection>
- </connectionPointIn>
- <connectionPointOut>
- <relPosition x="125" y="10"/>
- </connectionPointOut>
- <expression>CURRENT_PAGE_0</expression>
- </inOutVariable>
- <block localId="13" typeName="SEL" executionOrderId="0" height="80" width="65">
- <position x="320" y="185"/>
- <inputVariables>
- <variable formalParameter="G">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="17" formalParameter="Q">
- <position x="320" y="215"/>
- <position x="280" y="215"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN0">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="12">
- <position x="320" y="235"/>
- <position x="60" y="235"/>
- <position x="60" y="155"/>
- <position x="550" y="155"/>
- <position x="550" y="215"/>
- <position x="535" y="215"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="70"/>
- <connection refLocalId="16">
- <position x="320" y="255"/>
- <position x="290" y="255"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="15" executionOrderId="0" height="25" width="90" negated="false">
- <position x="100" y="205"/>
- <connectionPointOut>
- <relPosition x="90" y="10"/>
- </connectionPointOut>
- <expression>PAGESWITCH</expression>
- </inVariable>
- <inVariable localId="16" executionOrderId="0" height="25" width="220" negated="false">
- <position x="70" y="245"/>
- <connectionPointOut>
- <relPosition x="220" y="10"/>
- </connectionPointOut>
- <expression>'!RelativePageTest@/PUMP2'</expression>
- </inVariable>
- <block localId="17" typeName="R_TRIG" instanceName="R_TRIG0" executionOrderId="0" height="40" width="60">
- <position x="220" y="185"/>
- <inputVariables>
- <variable formalParameter="CLK">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="15">
- <position x="220" y="215"/>
- <position x="190" y="215"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Q">
- <connectionPointOut>
- <relPosition x="60" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- </FBD>
- </body>
- </pou>
- <pou name="PumpControl" pouType="functionBlock">
- <interface>
- <inputVars>
- <variable name="Pump">
- <type>
- <derived name="HMI_NODE"/>
- </type>
- <initialValue>
- <simpleValue value="1"/>
- </initialValue>
- </variable>
- </inputVars>
- <localVars>
- <variable name="Pressure">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- </localVars>
- <inputVars>
- <variable name="TargetPressure">
- <type>
- <INT/>
- </type>
- </variable>
- </inputVars>
- <localVars>
- <variable name="Sloth">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- <variable name="boolout">
- <type>
- <derived name="HMI_BOOL"/>
- </type>
- </variable>
- <variable name="boolin">
- <type>
- <derived name="HMI_BOOL"/>
- </type>
- <initialValue>
- <simpleValue value="True"/>
- </initialValue>
- </variable>
- <variable name="strout">
- <type>
- <derived name="HMI_STRING"/>
- </type>
- </variable>
- <variable name="strin">
- <type>
- <derived name="HMI_STRING"/>
- </type>
- <initialValue>
- <simpleValue value="blup"/>
- </initialValue>
- </variable>
- <variable name="floating">
- <type>
- <derived name="HMI_REAL"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
- <position x="150" y="100"/>
- <connectionPointOut>
- <relPosition x="125" y="15"/>
- </connectionPointOut>
- <expression>TargetPressure</expression>
- </inVariable>
- <inOutVariable localId="4" executionOrderId="0" height="30" width="60" negatedOut="false" negatedIn="false">
- <position x="510" y="80"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="6" formalParameter="OUT">
- <position x="510" y="95"/>
- <position x="470" y="95"/>
- </connection>
- </connectionPointIn>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>Sloth</expression>
- </inOutVariable>
- <block localId="6" typeName="ADD" executionOrderId="0" height="60" width="65">
- <position x="405" y="65"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="4">
- <position x="405" y="95"/>
- <position x="385" y="95"/>
- <position x="385" y="50"/>
- <position x="580" y="50"/>
- <position x="580" y="95"/>
- <position x="570" y="95"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="7" formalParameter="OUT">
- <position x="405" y="115"/>
- <position x="360" y="115"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="1" executionOrderId="0" height="30" width="75" negated="false">
- <position x="150" y="135"/>
- <connectionPointOut>
- <relPosition x="75" y="15"/>
- </connectionPointOut>
- <expression>Pressure</expression>
- </inVariable>
- <block localId="7" typeName="SUB" executionOrderId="0" height="60" width="65">
- <position x="295" y="85"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="5">
- <position x="295" y="115"/>
- <position x="275" y="115"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="1">
- <position x="295" y="135"/>
- <position x="285" y="135"/>
- <position x="285" y="150"/>
- <position x="225" y="150"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="2" executionOrderId="0" height="30" width="60" negated="false">
- <position x="240" y="190"/>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>Sloth</expression>
- </inVariable>
- <outVariable localId="3" executionOrderId="0" height="30" width="75" negated="false">
- <position x="435" y="205"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="8" formalParameter="OUT">
- <position x="435" y="220"/>
- <position x="410" y="220"/>
- </connection>
- </connectionPointIn>
- <expression>Pressure</expression>
- </outVariable>
- <block localId="8" typeName="DIV" executionOrderId="0" height="60" width="65">
- <position x="345" y="190"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="2">
- <position x="345" y="220"/>
- <position x="335" y="220"/>
- <position x="335" y="205"/>
- <position x="300" y="205"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="9">
- <position x="345" y="240"/>
- <position x="300" y="240"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="9" executionOrderId="0" height="30" width="60" negated="false">
- <position x="240" y="225"/>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>100</expression>
- </inVariable>
- <block localId="10" typeName="CONCAT" executionOrderId="0" height="60" width="65">
- <position x="360" y="345"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="13" formalParameter="OUT">
- <position x="360" y="375"/>
- <position x="330" y="375"/>
- <position x="330" y="332"/>
- <position x="440" y="332"/>
- <position x="440" y="300"/>
- <position x="430" y="300"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="14">
- <position x="360" y="395"/>
- <position x="322" y="395"/>
- <position x="322" y="400"/>
- <position x="285" y="400"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <outVariable localId="11" executionOrderId="0" height="30" width="58" negated="false">
- <position x="495" y="355"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="10" formalParameter="OUT">
- <position x="495" y="370"/>
- <position x="450" y="370"/>
- <position x="450" y="375"/>
- <position x="425" y="375"/>
- </connection>
- </connectionPointIn>
- <expression>strout</expression>
- </outVariable>
- <inVariable localId="12" executionOrderId="0" height="30" width="125" negated="false">
- <position x="145" y="285"/>
- <connectionPointOut>
- <relPosition x="125" y="15"/>
- </connectionPointOut>
- <expression>TargetPressure</expression>
- </inVariable>
- <block localId="13" typeName="INT_TO_STRING" executionOrderId="0" height="40" width="115">
- <position x="315" y="270"/>
- <inputVariables>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="12">
- <position x="315" y="300"/>
- <position x="270" y="300"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="115" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="14" executionOrderId="0" height="30" width="50" negated="false">
- <position x="235" y="385"/>
- <connectionPointOut>
- <relPosition x="50" y="15"/>
- </connectionPointOut>
- <expression>strin</expression>
- </inVariable>
- <inVariable localId="15" executionOrderId="0" height="30" width="60" negated="false">
- <position x="690" y="210"/>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>boolin</expression>
- </inVariable>
- <outVariable localId="16" executionOrderId="0" height="30" width="70" negated="false">
- <position x="915" y="240"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="17" formalParameter="OUT">
- <position x="915" y="255"/>
- <position x="880" y="255"/>
- </connection>
- </connectionPointIn>
- <expression>boolout</expression>
- </outVariable>
- <block localId="17" typeName="AND" executionOrderId="0" height="60" width="65">
- <position x="815" y="225"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="15">
- <position x="815" y="255"/>
- <position x="762" y="255"/>
- <position x="762" y="225"/>
- <position x="750" y="225"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="21" formalParameter="OUT">
- <position x="815" y="275"/>
- <position x="750" y="275"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="18" executionOrderId="0" height="30" width="75" negated="false">
- <position x="455" y="260"/>
- <connectionPointOut>
- <relPosition x="75" y="15"/>
- </connectionPointOut>
- <expression>Pressure</expression>
- </inVariable>
- <block localId="19" typeName="MOD" executionOrderId="0" height="60" width="65">
- <position x="585" y="245"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="18">
- <position x="585" y="275"/>
- <position x="530" y="275"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="20">
- <position x="585" y="295"/>
- <position x="555" y="295"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="20" executionOrderId="0" height="30" width="20" negated="false">
- <position x="535" y="280"/>
- <connectionPointOut>
- <relPosition x="20" y="15"/>
- </connectionPointOut>
- <expression>2</expression>
- </inVariable>
- <block localId="21" typeName="EQ" executionOrderId="0" height="60" width="65">
- <position x="685" y="245"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="19" formalParameter="OUT">
- <position x="685" y="275"/>
- <position x="650" y="275"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="22">
- <position x="685" y="295"/>
- <position x="670" y="295"/>
- <position x="670" y="330"/>
- <position x="650" y="330"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="22" executionOrderId="0" height="30" width="20" negated="false">
- <position x="630" y="315"/>
- <connectionPointOut>
- <relPosition x="20" y="15"/>
- </connectionPointOut>
- <expression>0</expression>
- </inVariable>
- <outVariable localId="23" executionOrderId="0" height="25" width="75" negated="false">
- <position x="935" y="120"/>
- <connectionPointIn>
- <relPosition x="0" y="10"/>
- <connection refLocalId="25" formalParameter="OUT">
- <position x="935" y="130"/>
- <position x="922" y="130"/>
- <position x="922" y="110"/>
- <position x="910" y="110"/>
- </connection>
- </connectionPointIn>
- <expression>floating</expression>
- </outVariable>
- <inVariable localId="24" executionOrderId="0" height="30" width="60" negated="false">
- <position x="615" y="65"/>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>Sloth</expression>
- </inVariable>
- <block localId="25" typeName="DIV" executionOrderId="0" height="60" width="65">
- <position x="845" y="80"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="27" formalParameter="OUT">
- <position x="845" y="110"/>
- <position x="822" y="110"/>
- <position x="822" y="80"/>
- <position x="800" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="26">
- <position x="845" y="130"/>
- <position x="810" y="130"/>
- <position x="810" y="135"/>
- <position x="800" y="135"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="26" executionOrderId="0" height="30" width="90" negated="false">
- <position x="710" y="120"/>
- <connectionPointOut>
- <relPosition x="90" y="15"/>
- </connectionPointOut>
- <expression>REAL#100.0</expression>
- </inVariable>
- <block localId="27" typeName="INT_TO_REAL" executionOrderId="0" height="40" width="100">
- <position x="700" y="50"/>
- <inputVariables>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="24">
- <position x="700" y="80"/>
- <position x="675" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="100" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <block localId="28" typeName="EQ" executionOrderId="0" height="60" width="65">
- <position x="410" y="430"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="36">
- <position x="418" y="460"/>
- <position x="401" y="460"/>
- <position x="401" y="435"/>
- <position x="380" y="435"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="29">
- <position x="410" y="480"/>
- <position x="367" y="480"/>
- <position x="367" y="475"/>
- <position x="325" y="475"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="29" executionOrderId="0" height="30" width="20" negated="false">
- <position x="305" y="460"/>
- <connectionPointOut>
- <relPosition x="20" y="15"/>
- </connectionPointOut>
- <expression>0</expression>
- </inVariable>
- <inVariable localId="32" executionOrderId="0" height="30" width="20" negated="false">
- <position x="765" y="505"/>
- <connectionPointOut>
- <relPosition x="20" y="15"/>
- </connectionPointOut>
- <expression>0</expression>
- </inVariable>
- <outVariable localId="31" executionOrderId="0" height="30" width="75" negated="false">
- <position x="925" y="460"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="33" formalParameter="OUT">
- <position x="925" y="475"/>
- <position x="890" y="475"/>
- </connection>
- </connectionPointIn>
- <expression>Sloth</expression>
- </outVariable>
- <block localId="33" typeName="MUX" executionOrderId="0" height="80" width="65">
- <position x="825" y="445"/>
- <inputVariables>
- <variable formalParameter="K">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="34" formalParameter="OUT">
- <position x="825" y="475"/>
- <position x="685" y="475"/>
- <position x="685" y="465"/>
- <position x="675" y="465"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN0">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="30">
- <position x="825" y="495"/>
- <position x="800" y="495"/>
- <position x="800" y="485"/>
- <position x="790" y="485"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="70"/>
- <connection refLocalId="32">
- <position x="825" y="515"/>
- <position x="795" y="515"/>
- <position x="795" y="520"/>
- <position x="785" y="520"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="30" executionOrderId="0" height="30" width="75" negated="false">
- <position x="715" y="470"/>
- <connectionPointOut>
- <relPosition x="75" y="15"/>
- </connectionPointOut>
- <expression>Sloth</expression>
- </inVariable>
- <block localId="34" typeName="BOOL_TO_SINT" executionOrderId="0" height="40" width="110">
- <position x="565" y="435"/>
- <inputVariables>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="28" formalParameter="OUT">
- <position x="565" y="465"/>
- <position x="520" y="465"/>
- <position x="520" y="460"/>
- <position x="475" y="460"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="110" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <connector name="Connection0" localId="35" height="25" width="125">
- <position x="400" y="140"/>
- <connectionPointIn>
- <relPosition x="0" y="10"/>
- <connection refLocalId="7" formalParameter="OUT">
- <position x="400" y="150"/>
- <position x="375" y="150"/>
- <position x="375" y="115"/>
- <position x="360" y="115"/>
- </connection>
- </connectionPointIn>
- </connector>
- <continuation name="Connection0" localId="36" height="25" width="125">
- <position x="255" y="425"/>
- <connectionPointOut>
- <relPosition x="125" y="10"/>
- </connectionPointOut>
- </continuation>
- </FBD>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="resource1">
- <task name="task0" priority="0" interval="T#20ms">
- <pouInstance name="instance0" typeName="MainStuff"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/svghmi/py_ext_0@py_ext/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="1" Name="py_ext_0"/>
--- a/tests/svghmi/py_ext_0@py_ext/pyfile.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,99 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <variables>
- <variable name="AlarmNotify" type="HMI_INT"/>
- <variable name="SendAlarm" type="HMI_INT" onchange="TriggerAlarm"/>
- <variable name="AlarmText" type="HMI_STRING" initial="'POS'"/>
- <variable name="AlarmStatus" type="HMI_STRING" initial="'alarm'"/>
- </variables>
- <globals>
- <xhtml:p><![CDATA[
-from twisted.web.resource import Resource
-import json, time, random, collections
-
-Alarms = []
-AlarmIndex = {}
-lastid = 0
-
-def TriggerAlarm(changed_var_name):
- global Alarms, lastid
- new_entry = [time.time(), PLCGlobals.AlarmText, PLCGlobals.AlarmStatus, lastid]
- Alarms.append(new_entry)
- AlarmIndex[lastid] = new_entry
- lastid = lastid + 1
- PLCGlobals.AlarmNotify = random.randint(0, 4294967296)
-
-class AlarmJsonResource(Resource):
- def render_GET(self, request):
- return ''
-
- def render_POST(self, request):
- newstr = request.content.getvalue()
- newdata = json.loads(newstr)
- args = newdata[u'args']
- range_feedback = newdata[u'range']
- slider_position = newdata[u'position']
- visible = newdata[u'visible']
- extra = newdata[u'extra']
- options = newdata[u'options']
-
- if len(options) == 1 :
- action, = options
- if action == "action_reset":
- del Alarms[:]
- AlarmIndex.clear()
- elif len(options) == 2 :
- action, alarmid = options
- if action == "onClick[acknowledge]":
- AlarmIndex[int(alarmid)][2] = "ack"
-
- answer = self.renderTable(range_feedback, slider_position, visible, extra)
- janswer = json.dumps(answer)
- return janswer
-
- def renderTable(self, old_range, old_position, visible, extra):
- if len(extra) > 0 and extra[0] != "":
- fAlarms = [alrm for alrm in Alarms if alrm[1].find(extra[0])!=-1]
- else:
- fAlarms = Alarms[:]
- fAlarms.reverse()
- new_range = len(fAlarms)
- delta = new_range - visible
- new_position = 0 if delta <= 0 else delta if old_position > delta else old_position
- new_visible = new_range if delta <= 0 else visible
-
- visible_alarms = []
- for ts, text, status, alarmid in fAlarms[new_position:new_position + new_visible]:
- visible_alarms.append({
- "time": time.ctime(ts),
- "text": text, # TODO translate text
- "status": status,
- "alarmid": alarmid
- })
-
- return new_range, new_position, visible_alarms
-
-
-]]></xhtml:p>
- </globals>
- <init>
- <xhtml:p><![CDATA[
-]]></xhtml:p>
- </init>
- <cleanup>
- <xhtml:p><![CDATA[
-]]></xhtml:p>
- </cleanup>
- <start>
- <xhtml:p><![CDATA[
-
-AddPathToSVGHMIServers("alarms", AlarmJsonResource)
-
-
-]]></xhtml:p>
- </start>
- <stop>
- <xhtml:p><![CDATA[
-]]></xhtml:p>
- </stop>
-</PyFile>
--- a/tests/svghmi/svghmi_0@svghmi/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="svghmi_0"/>
--- a/tests/svghmi/svghmi_0@svghmi/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<SVGHMI xmlns:xsd="http://www.w3.org/2001/XMLSchema" OnWatchdog="echo Watchdog for {name} !" WatchdogInitial="10" WatchdogInterval="5" EnableWatchdog="true" Path="{name}"/>
--- a/tests/svghmi/svghmi_0@svghmi/svghmi.svg Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7563 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
- sodipodi:docname="svghmi.svg"
- id="hmi0"
- version="1.1"
- viewBox="0 0 1280 720"
- height="720"
- width="1280">
- <metadata
- id="metadata4542">
- <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>
- <defs
- id="defs2">
- <linearGradient
- id="linearGradient34303"
- osb:paint="solid">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop34301" />
- </linearGradient>
- <linearGradient
- id="linearGradient20537"
- osb:paint="solid">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop20535" />
- </linearGradient>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker1971"
- 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- id="path1969"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker1656"
- 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- id="path1654"
- inkscape:connector-curvature="0" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient962">
- <stop
- style="stop-color:#ff3000;stop-opacity:1;"
- offset="0"
- id="stop958" />
- <stop
- style="stop-color:#0022ff;stop-opacity:1"
- offset="1"
- id="stop960" />
- </linearGradient>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lend"
- style="overflow:visible"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- inkscape:connector-curvature="0"
- id="path895"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient962"
- id="linearGradient964"
- x1="113.38908"
- y1="-62.210247"
- x2="113.38908"
- y2="4.0725975"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5,0,0,0.5,73.144796,-1.4471993)" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:document-units="px"
- inkscape:current-layer="hmi0"
- showgrid="false"
- units="px"
- inkscape:zoom="0.84355636"
- inkscape:cx="-1054.5035"
- inkscape:cy="482.64214"
- inkscape:window-width="1600"
- inkscape:window-height="836"
- inkscape:window-x="0"
- inkscape:window-y="27"
- inkscape:window-maximized="1"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-global="true"
- inkscape:snap-bbox="true"
- inkscape:bbox-nodes="true" />
- <use
- x="0"
- y="0"
- xlink:href="#g7994"
- id="use7996"
- transform="translate(1480,800)"
- width="100%"
- height="100%"
- inkscape:label="HMI:Page:RelativePageTest@/PUMP0" />
- <rect
- sodipodi:insensitive="true"
- inkscape:label="HMI:Page:Conf"
- y="780"
- x="0"
- height="720"
- width="1280"
- id="rect1016"
- style="color:#000000;fill:#000000" />
- <g
- id="g1082"
- inkscape:label="HMI:Jump:Home"
- transform="translate(-940,-558)">
- <g
- id="g1152"
- inkscape:label="button">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
- id="rect1022"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cssssccc" />
- </g>
- <g
- id="g1149"
- inkscape:label="text">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="1436.9814"
- id="home_jmp"
- inkscape:label="home_jmp"><tspan
- sodipodi:role="line"
- id="tspan1028"
- x="1090.7626"
- y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
- </g>
- </g>
- <rect
- style="color:#000000;fill:#4d4d4d"
- id="page0"
- width="1280"
- height="720"
- x="0"
- y="0"
- inkscape:label="HMI:Page:Home" />
- <g
- id="g1077"
- inkscape:label="HMI:Jump:Conf"
- transform="matrix(0.57180538,0,0,0.57180538,-373.64055,248.51305)">
- <g
- id="g1159"
- inkscape:label="button">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1020"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- id="g1156"
- inkscape:label="text">
- <text
- inkscape:label="setting_jmp"
- id="setting_jmp"
- y="656.98151"
- x="1090.7626"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="656.98151"
- x="1090.7626"
- id="tspan1024"
- sodipodi:role="line">Settings</tspan></text>
- </g>
- </g>
- <g
- id="g84"
- inkscape:label="HMI:Input@/TARGETPRESSURE,0,100"
- transform="matrix(0.35865594,0,0,0.35865594,22.072155,63.074421)">
- <text
- inkscape:label="value"
- id="text5151"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="218.24219"
- x="136.32812"
- id="tspan5149"
- sodipodi:role="line">8888</tspan></text>
- <path
- transform="scale(1,-1)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path89"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="14.956363"
- inkscape:label="-100" />
- <path
- inkscape:label="-10"
- inkscape:transform-center-y="7.4781812"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path88"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="scale(1,-1)" />
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect85"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <path
- inkscape:label="+100"
- inkscape:transform-center-y="-14.956361"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path87"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path86"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-7.4781804"
- inkscape:label="+10" />
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path91"
- sodipodi:sides="4"
- sodipodi:cx="80.740723"
- sodipodi:cy="165.17262"
- sodipodi:r1="57.015106"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.77793027"
- sodipodi:arg2="1.5633284"
- inkscape:flatsided="true"
- inkscape:rounded="-0.65084865"
- inkscape:randomized="0"
- d="M 121.35644,205.1862 C 158.18649,167.80191 3.342862,168.95829 40.72715,205.78834 78.111437,242.61839 76.95506,87.774762 40.125008,125.15905 3.2949549,162.54334 158.13858,161.38696 120.7543,124.55691 83.370008,87.726855 84.526385,242.57048 121.35644,205.1862 Z"
- inkscape:transform-center-y="-14.956361"
- inkscape:label="=0" />
- </g>
- <text
- inkscape:label="HMI:Display@/PUMP0/PRESSURE"
- id="text823"
- y="141.34827"
- x="293.33374"
- style="font-style:normal;font-weight:normal;font-size:57.38494873px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.35865593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.35865593px"
- y="141.34827"
- x="293.33374"
- id="tspan821"
- sodipodi:role="line">8888</tspan></text>
- <g
- id="g4523"
- transform="matrix(2.1611542,0,0,2.1611542,142.76714,468.92423)"
- inkscape:label="HMI:Meter@/PUMP0/SLOTH">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3ee800;stroke-width:26.45833397;stroke-miterlimit:4;stroke-dasharray:2.64583333, 2.64583333;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path4499"
- sodipodi:type="arc"
- sodipodi:cx="128.02208"
- sodipodi:cy="2.2017097"
- sodipodi:rx="64.411957"
- sodipodi:ry="64.411957"
- sodipodi:start="3.1415927"
- sodipodi:end="4.712389"
- d="M 63.610123,2.2017068 A 64.411957,64.411957 0 0 1 128.02208,-62.210247"
- sodipodi:open="true"
- inkscape:label="range" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#ff3000;stroke-width:2.96333337;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0, 32.59666667;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-end:url(#Arrow2Lend)"
- d="M 130.96206,4.0725977 79.111776,-41.363223"
- id="path4501"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- inkscape:label="needle" />
- <text
- inkscape:label="min"
- id="text4505"
- y="4.9187088"
- x="49.132977"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px"
- y="4.9187088"
- x="49.132977"
- id="tspan4503"
- sodipodi:role="line">0</tspan></text>
- <text
- inkscape:label="max"
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="127.48073"
- y="-78.144218"
- id="text4509"><tspan
- sodipodi:role="line"
- id="tspan4507"
- x="127.48073"
- y="-78.144218"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px">10000</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="124.77896"
- y="1.1408259"
- id="text4521"
- inkscape:label="unit"><tspan
- sodipodi:role="line"
- x="124.77896"
- y="1.1408259"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- id="tspan4519">bar</tspan></text>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:14.34623718px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.35865593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="114.11434"
- y="90.742165"
- id="text827"
- inkscape:label="setpoint_label"><tspan
- sodipodi:role="line"
- id="tspan825"
- x="114.11434"
- y="90.742165"
- style="stroke-width:0.35865593px">SetPoint</tspan></text>
- <text
- id="text831"
- y="90.742165"
- x="344.50876"
- style="font-style:normal;font-weight:normal;font-size:14.34623718px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.35865593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="actual_label"><tspan
- y="90.742165"
- x="344.50876"
- id="tspan829"
- sodipodi:role="line"
- style="stroke-width:0.35865593px">Actual</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.57180536px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="206.73413"
- y="336.90073"
- id="text4497"
- inkscape:label="pressure_label"><tspan
- sodipodi:role="line"
- id="tspan4495"
- x="206.73413"
- y="336.90073"
- style="fill:#ff6600;stroke-width:0.57180536px">Pressure</tspan></text>
- <g
- inkscape:label="HMI:Meter@/PUMP0/SLOTH"
- transform="matrix(7.5590552,0,0,7.5590552,-244.3956,1321.2434)"
- id="g110">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="M 113.38908,2.2017068 V -62.210247"
- id="path90"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- inkscape:label="range" />
- <path
- inkscape:label="needle"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path92"
- d="M 113.38908,4.0725977 V -62.210247"
- style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient964);stroke-width:13.22916698;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="115.07632"
- y="9.3424692"
- id="text96"
- inkscape:label="min"><tspan
- sodipodi:role="line"
- id="tspan94"
- x="115.07632"
- y="9.3424692"
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
- <text
- id="text100"
- y="-64.195457"
- x="113.27539"
- style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="max"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="-64.195457"
- x="113.27539"
- id="tspan98"
- sodipodi:role="line">10000</tspan></text>
- <text
- inkscape:label="unit"
- id="text108"
- y="-9.4425077"
- x="140.65398"
- style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- id="tspan106"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="-9.4425077"
- x="140.65398"
- sodipodi:role="line">€£$¥</tspan></text>
- </g>
- <g
- inkscape:label="HMI:Input@/TARGETPRESSURE"
- id="g991"
- transform="matrix(0.5,0,0,0.5,230.11026,885.7162)"
- style="stroke-width:2">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text977"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan975"
- x="136.32812"
- y="218.24219"
- style="stroke-width:2px">8888</tspan></text>
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect983"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- id="g1086"
- inkscape:label="=0"
- transform="translate(-416.52022,170.47452)"
- style="stroke-width:2">
- <path
- inkscape:connector-curvature="0"
- id="path989"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1048"
- y="111.05016"
- x="733.58197"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="733.58197"
- id="tspan1046"
- sodipodi:role="line">→0←</tspan></text>
- </g>
- <g
- id="g1091"
- inkscape:label="-10"
- transform="translate(-416.52022,170.47452)"
- style="stroke-width:2">
- <path
- inkscape:transform-center-x="14.956371"
- inkscape:transform-center-y="-3.6154501e-05"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path981"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="633.09552"
- y="111.05016"
- id="text1059"><tspan
- sodipodi:role="line"
- id="tspan1057"
- x="633.09552"
- y="111.05016"
- style="stroke-width:1px">-10</tspan></text>
- </g>
- <g
- id="g1096"
- inkscape:label="-100"
- transform="translate(-416.52022,170.47452)"
- style="stroke-width:2">
- <path
- inkscape:transform-center-x="14.956364"
- transform="rotate(-90,746.45698,-44.543641)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path979"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="-5.9989963e-06" />
- <text
- id="text1063"
- y="111.05016"
- x="537.25018"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="537.25018"
- id="tspan1061"
- sodipodi:role="line">-100</tspan></text>
- </g>
- <g
- id="g1076"
- inkscape:label="+100"
- transform="translate(-416.52022,170.47452)"
- style="stroke-width:2">
- <path
- inkscape:transform-center-x="-14.956365"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-y="-5.5023185e-06"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path985"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <text
- id="text1067"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="925.82605"
- id="tspan1065"
- sodipodi:role="line">+100</tspan></text>
- </g>
- <g
- id="g1081"
- inkscape:label="+10"
- transform="translate(-416.52022,170.47452)"
- style="stroke-width:2">
- <path
- inkscape:transform-center-x="-14.956349"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path987"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.3040441e-05" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="842.71497"
- y="111.05016"
- id="text1071"><tspan
- sodipodi:role="line"
- id="tspan1069"
- x="842.71497"
- y="111.05016"
- style="stroke-width:1px">+10</tspan></text>
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#82ff77;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
- x="736.32812"
- y="1478.2422"
- id="text995"
- inkscape:label="HMI:Display@/PUMP0/PRESSURE"><tspan
- sodipodi:role="line"
- id="tspan993"
- x="736.32812"
- y="1478.2422"
- style="fill:#82ff77;fill-opacity:1;stroke-width:1px;">8888</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="28.181862"
- y="365.32291"
- id="text134"
- inkscape:label="HMI:Display@/PUMP0/STROUT"><tspan
- sodipodi:role="line"
- id="tspan132"
- x="28.181862"
- y="365.32291"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
- <text
- inkscape:label="HMI:Display@/PUMP0/BOOLOUT"
- id="text138"
- y="422.50345"
- x="28.181862"
- style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
- y="422.50345"
- x="28.181862"
- id="tspan136"
- sodipodi:role="line">8888</tspan></text>
- <g
- transform="matrix(0.28590269,0,0,0.28590269,0.70444171,226.1427)"
- id="g208-1"
- inkscape:label="HMI:Input@/PUMP0/STRIN"
- style="stroke-width:2">
- <text
- inkscape:label="value"
- id="text164"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="218.24219"
- x="136.32812"
- id="tspan162"
- sodipodi:role="line">8888</tspan></text>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect166"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="+"dhu""
- id="g174"
- style="stroke-width:2">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:transform-center-y="-14.956361"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- id="path168"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="733.58197"
- y="111.05016"
- id="text172"><tspan
- sodipodi:role="line"
- id="tspan170"
- x="733.58197"
- y="111.05016"
- style="stroke-width:1px">dhu</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="plop""
- id="g182"
- style="stroke-width:2">
- <path
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path176"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-184.98808"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.6154501e-05"
- inkscape:transform-center-x="14.956371" />
- <text
- id="text180"
- y="111.05016"
- x="633.09552"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="633.09552"
- id="tspan178"
- sodipodi:role="line">plop</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhoo""
- id="g190"
- style="stroke-width:2">
- <path
- inkscape:transform-center-y="-5.9989963e-06"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-216.2599"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path184"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="rotate(-90,746.45698,-44.543641)"
- inkscape:transform-center-x="14.956364" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="537.25018"
- y="111.05016"
- id="text188"><tspan
- sodipodi:role="line"
- id="tspan186"
- x="537.25018"
- y="111.05016"
- style="stroke-width:1px">mhoo</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="yodl""
- id="g198"
- style="stroke-width:2">
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path192"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="105.17262"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:transform-center-y="-5.5023185e-06"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-x="-14.956365" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="925.82605"
- y="111.05016"
- id="text196"><tspan
- sodipodi:role="line"
- id="tspan194"
- x="925.82605"
- y="111.05016"
- style="stroke-width:1px">yodl</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhe""
- id="g206-1"
- style="stroke-width:2">
- <path
- inkscape:transform-center-y="-3.3040441e-05"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="136.44444"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path200"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- inkscape:transform-center-x="-14.956349" />
- <text
- id="text204"
- y="111.05016"
- x="842.71497"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="842.71497"
- id="tspan202"
- sodipodi:role="line">mhe</tspan></text>
- </g>
- </g>
- <g
- inkscape:label="HMI:Keypad:HMI_INT:HMI_REAL"
- id="g2432"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- transform="matrix(3.3549332,0,0,3.14525,-181.87457,2336.0198)">
- <path
- sodipodi:nodetypes="ccccc"
- inkscape:label="Background"
- inkscape:connector-curvature="0"
- id="path2136"
- d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <rect
- ry="3.8152773"
- rx="3.8152773"
- y="15.77106"
- x="64.024963"
- height="30.150299"
- width="361.89996"
- id="rect2426"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:label="Field" />
- <text
- id="text2430"
- y="37.408375"
- x="72.50132"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="Value"><tspan
- style="text-align:start;text-anchor:start;stroke-width:0.47690967px"
- y="37.408375"
- x="72.50132"
- id="tspan2428"
- sodipodi:role="line">number</tspan></text>
- <g
- style="fill-rule:evenodd;stroke-width:0.13585199"
- inkscape:label="Enter"
- id="g4947"
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
- <path
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.10074362;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path193"
- d="m 750,175 c 0,-2 -1,-3 -3,-3 h -20 c -1,0 -3,1 -3,3 v 43 c 0,1 2,2 3,2 h 20 c 2,0 3,-1 3,-2 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -1244.2949,1166.5938 v 15.791 h -38.6875 v -2.9981 l -6.9199,4 6.9199,4 v -2.998 h 40.6836 v -17.7949 z"
- transform="matrix(0.28557246,0,0,0.28557246,1098.7155,-140.51013)"
- id="path6545-4"
- inkscape:connector-curvature="0" />
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.13585199"
- inkscape:label="Keys"
- id="g4993"
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
- <g
- style="stroke-width:0.13585199"
- inkscape:label="7"
- id="g4892">
- <path
- inkscape:connector-curvature="0"
- d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path163"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text331"
- y="129.38269"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">7</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="4"
- id="g4907">
- <path
- inkscape:connector-curvature="0"
- d="m 638,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path169"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text335"
- y="154.10822"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">4</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="1"
- id="g4922">
- <path
- inkscape:connector-curvature="0"
- d="m 638,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path175"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text339"
- y="179.82285"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">1</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="8"
- id="g4897">
- <path
- inkscape:connector-curvature="0"
- d="m 668,120 h 19 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path165"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text347"
- y="129.38269"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">8</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="5"
- id="g4912">
- <path
- inkscape:connector-curvature="0"
- d="m 668,146 h 19 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path171"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text351"
- y="154.10822"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">5</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="2"
- id="g4927">
- <path
- inkscape:connector-curvature="0"
- d="m 668,172 h 19 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path177"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text355"
- y="179.82285"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">2</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="9"
- id="g4902">
- <path
- inkscape:connector-curvature="0"
- d="m 697,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path167"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text363"
- y="129.38269"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">9</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="6"
- id="g4917">
- <path
- inkscape:connector-curvature="0"
- d="m 697,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path173"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text367"
- y="154.10822"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">6</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="3"
- id="g4932">
- <path
- inkscape:connector-curvature="0"
- d="m 697,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path179"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text371"
- y="179.82285"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">3</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="0"
- id="g4937">
- <path
- inkscape:connector-curvature="0"
- d="m 638,220 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 h 49 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 z"
- id="path373"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text377"
- y="205.53712"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">0</text>
- </g>
- </g>
- <g
- id="g3113"
- inkscape:label="Esc"
- transform="translate(-318.22576)">
- <path
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path167-3"
- d="m 387.26079,54.792986 h 33.40019 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -33.40019 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
- inkscape:connector-curvature="0" />
- <text
- x="394.42801"
- y="78.632088"
- id="text469-4"
- style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928511)">Esc</text>
- </g>
- <g
- id="g3109"
- inkscape:label="BackSpace"
- transform="translate(0,-43.420332)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path173-1"
- d="m 387.26079,98.213318 h 33.40019 c 3.34,0 5.01006,1.670013 5.01006,5.010032 v 30.06024 c 0,3.34002 -1.67006,5.01003 -5.01006,5.01003 h -33.40019 c -1.67006,0 -5.01007,-1.67001 -5.01007,-5.01003 v -30.06024 c 0,-3.340019 3.34001,-5.010032 5.01007,-5.010032 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -1278.9668,1041.3047 -6.9199,4 6.9199,4 v -3 h 33.416 v -1.9981 h -33.416 z"
- transform="matrix(0.47690966,0,0,0.47690966,1008.0304,-380.26227)"
- id="path11623-1-0-2"
- inkscape:connector-curvature="0" />
- </g>
- <g
- id="g787"
- inkscape:label="Sign"
- style="fill-rule:evenodd;stroke-width:0.13585199"
- transform="matrix(1.6700128,0,0,1.6700128,-678.20742,-102.18822)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path781"
- d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="642.1239"
- y="135.09822"
- id="text783"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- transform="scale(1.0007154,0.99928514)">+/-</text>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="252.9579"
- y="12.333653"
- id="text509"
- transform="scale(0.96824589,1.0327955)"
- inkscape:label="Info"><tspan
- sodipodi:role="line"
- id="tspan507"
- x="252.9579"
- y="12.333653"
- style="stroke-width:0.30784383px">information</tspan></text>
- <g
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60856)"
- style="fill-rule:evenodd;stroke-width:0.13585199"
- id="g4942"
- inkscape:label="NumDot">
- <path
- inkscape:connector-curvature="0"
- d="m 697,197 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path181"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:6.96602964px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text771"
- y="204.54802"
- x="696.7464"
- transform="scale(1.0007154,0.99928514)">.</text>
- </g>
- </g>
- <g
- transform="matrix(3.3549332,0,0,3.14525,-181.87457,1556.0198)"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4278"
- inkscape:label="HMI:Keypad:HMI_STRING:HMI_LOCAL:PAGE_LOCAL">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="M 54.211084,1.2654702 H 435.7388 V 230.18209 H 54.211084 Z"
- id="rect1006-3"
- inkscape:connector-curvature="0"
- inkscape:label="Background"
- sodipodi:nodetypes="ccccc" />
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path185"
- d="m 162,197 h -11 c -2,0 -3,1 -3,3 v 18 c 0,2 1,3 3,3 h 11 168 18 c 0,0 1,-1 1,-3 v -18 c 0,-2 -1,-3 -1,-3 h -18 z"
- inkscape:connector-curvature="0"
- inkscape:label="Space" />
- <g
- id="g4380"
- inkscape:label="Keys"
- style="stroke-width:0.47631353"
- transform="translate(0,-19.076386)">
- <g
- id="g4283"
- inkscape:label="q Q"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path41"
- d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="99.378708"
- y="138.28395"
- id="text203"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">Q</text>
- </g>
- <g
- id="g4337"
- inkscape:label="w W"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path43"
- d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="127.0709"
- y="138.28395"
- id="text207"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">W</text>
- </g>
- <g
- id="g4332"
- inkscape:label="e E"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path45"
- d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="159.70854"
- y="138.28395"
- id="text211"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">E</text>
- </g>
- <g
- id="g4326"
- inkscape:label="r R"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path47"
- d="m 184,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="188.39003"
- y="138.28395"
- id="text215"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">R</text>
- </g>
- <g
- id="g4321"
- inkscape:label="t T"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path49"
- d="m 213,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="219.04961"
- y="138.28395"
- id="text219"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">T</text>
- </g>
- <g
- id="g4316"
- inkscape:label="y Y"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path51"
- d="m 243,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="248.72017"
- y="138.28395"
- id="text223"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">Y</text>
- </g>
- <g
- id="g4311"
- inkscape:label="u U"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path53"
- d="m 273,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="278.39075"
- y="138.28395"
- id="text227"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">U</text>
- </g>
- <g
- id="g4306"
- inkscape:label="i I"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path55"
- d="m 302,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="311.02859"
- y="138.28395"
- id="text231"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">I</text>
- </g>
- <g
- id="g4301"
- inkscape:label="o O"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path57"
- d="m 332,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="336.74319"
- y="138.28395"
- id="text235"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">O</text>
- </g>
- <g
- id="g4296"
- inkscape:label="p P"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path59"
- d="m 362,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="367.40256"
- y="138.28395"
- id="text239"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">P</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4511"
- inkscape:label="a A">
- <path
- inkscape:connector-curvature="0"
- d="m 103,147 h 19 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path65"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text243"
- y="163.99854"
- x="107.29005"
- transform="scale(1.0007154,0.99928514)">A</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4516"
- inkscape:label="s S">
- <path
- inkscape:connector-curvature="0"
- d="m 132,147 h 20 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path67"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text247"
- y="163.99854"
- x="137.95012"
- transform="scale(1.0007154,0.99928514)">S</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4521"
- inkscape:label="d D">
- <path
- inkscape:connector-curvature="0"
- d="m 162,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path69"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text251"
- y="163.99854"
- x="166.63159"
- transform="scale(1.0007154,0.99928514)">D</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4526"
- inkscape:label="f F">
- <path
- inkscape:connector-curvature="0"
- d="m 192,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path71"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text255"
- y="163.99854"
- x="197.29166"
- transform="scale(1.0007154,0.99928514)">F</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4531"
- inkscape:label="g G">
- <path
- inkscape:connector-curvature="0"
- d="m 221,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path73"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text259"
- y="163.99854"
- x="225.97284"
- transform="scale(1.0007154,0.99928514)">G</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4536"
- inkscape:label="h H">
- <path
- inkscape:connector-curvature="0"
- d="m 251,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path75"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text263"
- y="163.99854"
- x="255.64342"
- transform="scale(1.0007154,0.99928514)">H</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4541"
- inkscape:label="j J">
- <path
- inkscape:connector-curvature="0"
- d="m 281,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path77"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text267"
- y="163.99854"
- x="287.29208"
- transform="scale(1.0007154,0.99928514)">J</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4546"
- inkscape:label="k K">
- <path
- inkscape:connector-curvature="0"
- d="m 310,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path79"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text271"
- y="163.99854"
- x="314.98465"
- transform="scale(1.0007154,0.99928514)">K</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4551"
- inkscape:label="l L">
- <path
- inkscape:connector-curvature="0"
- d="m 340,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path81"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text275"
- y="163.99854"
- x="345.64444"
- transform="scale(1.0007154,0.99928514)">L</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4586"
- inkscape:label="z Z"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 113,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
- id="path87-3"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text279"
- y="188.72411"
- x="119.15855"
- transform="scale(1.0007154,0.99928514)">Z</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4581"
- inkscape:label="x X"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 143,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
- id="path89-6"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text283"
- y="188.72411"
- x="148.82933"
- transform="scale(1.0007154,0.99928514)">X</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4576"
- inkscape:label="c C"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 173,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
- id="path91-7"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text287"
- y="188.72411"
- x="178.50011"
- transform="scale(1.0007154,0.99928514)">C</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4571"
- inkscape:label="v V"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 202,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c 0,0 -1,-1 -1,-3 v -17 c 0,-1 1,-3 1,-3 z"
- id="path195"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text291"
- y="188.72411"
- x="208.16988"
- transform="scale(1.0007154,0.99928514)">V</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4566"
- inkscape:label="b B"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 233,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path93"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text295"
- y="188.72411"
- x="237.84096"
- transform="scale(1.0007154,0.99928514)">B</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4561"
- inkscape:label="n N"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 263,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path95"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text299"
- y="188.72411"
- x="267.51193"
- transform="scale(1.0007154,0.99928514)">N</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4556"
- inkscape:label="m M"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 293,172 h 19 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -19 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path97"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text303"
- y="188.72411"
- x="296.1933"
- transform="scale(1.0007154,0.99928514)">M</text>
- </g>
- <g
- id="g4818"
- inkscape:label=". :"
- style="stroke-width:0.47631353"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 352,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path101"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928513)"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- id="text719"
- y="189.66107"
- x="359.58276">.</text>
- <text
- x="359.58276"
- y="181.64532"
- id="text4834"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928512)">:</text>
- </g>
- <g
- id="g4813"
- inkscape:label=", ;"
- style="stroke-width:0.47631353"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 322,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path99"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- id="text727"
- y="181.64532"
- x="330.00806"
- transform="scale(1.0007154,0.99928512)">;</text>
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- y="189.66107"
- x="330.00806"
- transform="scale(1.0007154,0.99928512)"
- id="text4826">,</text>
- </g>
- <g
- style="stroke-width:0.47631353"
- inkscape:label="1"
- id="g2845"
- transform="translate(-13.353469,-45.783327)">
- <path
- inkscape:connector-curvature="0"
- d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path2839"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2841"
- y="138.28395"
- x="101.07153"
- transform="scale(1.0007154,0.99928513)">1</text>
- </g>
- <g
- style="stroke-width:0.47631353"
- inkscape:label="2"
- id="g2853"
- transform="translate(-13.353469,-45.783327)">
- <path
- inkscape:connector-curvature="0"
- d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path2847"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2849"
- y="138.28395"
- x="130.18704"
- transform="scale(1.0007154,0.99928513)">2</text>
- </g>
- <g
- inkscape:label="3"
- id="g2861"
- style="stroke-width:0.47631353"
- transform="translate(-13.353469,-45.783327)">
- <path
- inkscape:connector-curvature="0"
- d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path2855"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2857"
- y="138.28395"
- x="159.70854"
- transform="scale(1.0007154,0.99928514)">3</text>
- </g>
- <g
- id="g2957"
- inkscape:label="4"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 170.64653,94.293059 h 19 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 V 97.293059 c 0,-2 2,-3 3,-3 z"
- id="path2865"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2867"
- y="111.55791"
- x="176.39188"
- transform="scale(1.0007154,0.99928514)">4</text>
- </g>
- <g
- id="g2962"
- inkscape:label="5"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 199.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2873"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2875"
- y="111.55791"
- x="205.70567"
- transform="scale(1.0007154,0.99928514)">5</text>
- </g>
- <g
- id="g2967"
- inkscape:label="6"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 229.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2881"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2883"
- y="111.55791"
- x="236.15851"
- transform="scale(1.0007154,0.99928514)">6</text>
- </g>
- <g
- id="g2972"
- inkscape:label="7"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 259.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2889"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2891"
- y="111.55791"
- x="266.06564"
- transform="scale(1.0007154,0.99928514)">7</text>
- </g>
- <g
- id="g2977"
- inkscape:label="8"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 288.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2897"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2899"
- y="111.55791"
- x="295.08231"
- transform="scale(1.0007154,0.99928514)">8</text>
- </g>
- <g
- id="g2982"
- inkscape:label="9 -"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 318.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2905"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2907"
- y="111.55791"
- x="325.05408"
- transform="scale(1.0007154,0.99928514)">9</text>
- <text
- transform="scale(1.0007154,0.99928511)"
- x="335.72681"
- y="102.42173"
- id="text806"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826">-</text>
- </g>
- <g
- id="g2987"
- inkscape:label="0 +"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 348.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2913"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2915"
- y="111.55791"
- x="355.05984"
- transform="scale(1.0007154,0.99928514)">0</text>
- <text
- transform="scale(1.0007154,0.99928511)"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- id="text804"
- y="102.42173"
- x="365.30151">+</text>
- </g>
- </g>
- <g
- transform="translate(335.89988,-58.934803)"
- id="g3544"
- inkscape:label="Esc"
- style="stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path105"
- d="m 47.948645,115.07509 h 39.076386 c 1,0 3,1 3,3 v 18 c 0,1 -2,3 -3,3 H 47.948645 c -2,0 -3,-2 -3,-3 v -18 c 0,-2 1,-3 3,-3 z"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="sssssssss" />
- <text
- transform="scale(1.0007154,0.99928512)"
- style="font-weight:normal;font-size:9.37966251px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- id="text469"
- y="130.02028"
- x="59.288635">Esc</text>
- </g>
- <g
- inkscape:label="Enter"
- id="g4291"
- style="stroke-width:0.47631353"
- transform="translate(0,-19.076386)">
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path3616"
- d="m 368.68274,170 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 54.24217 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -260.23633,1080.8125 v 15.7949 h -38.68555 v -3 l -6.91992,4 6.91992,4 v -3.0019 h 40.6836 v -17.793 z"
- transform="matrix(0.47690966,0,0,0.47690966,531.12074,-361.18588)"
- id="path6545"
- inkscape:connector-curvature="0" />
- </g>
- <g
- inkscape:label="BackSpace"
- id="g4287"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- transform="translate(2.3648311e-6,-28.614579)">
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path3624"
- d="m 391.97749,144 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 30.94742 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -268.72656,1011.1777 -6.91992,4 6.91992,4 v -3.0019 h 29.18945 v -1.9981 h -29.18945 z"
- transform="matrix(0.47690966,0,0,0.47690966,531.12074,-351.64769)"
- id="path11623-1-0"
- inkscape:connector-curvature="0" />
- </g>
- <g
- id="g934"
- inkscape:label="CapsLock">
- <g
- inkscape:label="inactive"
- id="g942"
- style="display:inline;fill-rule:evenodd;stroke-width:0.47631353"
- transform="translate(0,-19.076386)">
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path936"
- d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
- inkscape:connector-curvature="0" />
- <text
- x="69.789322"
- y="156.71973"
- id="text938-5"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
- transform="scale(1.0007154,0.99928515)">Caps</text>
- <text
- x="69.789322"
- y="166.5585"
- id="text940"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
- transform="scale(1.0007154,0.99928515)">Lock</text>
- </g>
- <g
- transform="translate(0,-19.076386)"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4429"
- inkscape:label="active">
- <path
- inkscape:connector-curvature="0"
- d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
- id="path199"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <text
- transform="scale(1.0007154,0.99928515)"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
- id="text647"
- y="156.71973"
- x="69.789322">Caps</text>
- <text
- transform="scale(1.0007154,0.99928515)"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
- id="text651"
- y="166.5585"
- x="69.789322">Lock</text>
- </g>
- </g>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect2130"
- width="361.89996"
- height="30.150299"
- x="64.024956"
- y="15.771065"
- rx="3.8152773"
- ry="3.8152773"
- inkscape:label="Field" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="72.50132"
- y="38.296417"
- id="text1309"
- inkscape:label="Value"><tspan
- sodipodi:role="line"
- id="tspan1307"
- x="72.50132"
- y="38.296417"
- style="text-align:start;text-anchor:start;stroke-width:0.47690967px">text</tspan></text>
- <g
- id="g437"
- inkscape:label="Shift">
- <g
- id="g421"
- inkscape:label="inactive">
- <path
- inkscape:connector-curvature="0"
- d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- id="path910"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <text
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text912"
- y="177.90059"
- x="392.55679"
- transform="scale(1.0007154,0.99928513)">Shift</text>
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path856"
- d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
- inkscape:connector-curvature="0" />
- <text
- x="75.85218"
- y="177.90059"
- id="text858"
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928513)">Shift</text>
- </g>
- <g
- id="g413"
- inkscape:label="active">
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path551"
- d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928513)"
- x="392.55679"
- y="177.90059"
- id="text629"
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;stroke-width:0.36866826">Shift</text>
- <path
- inkscape:connector-curvature="0"
- d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
- id="path879"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <text
- transform="scale(1.0007154,0.99928513)"
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- id="text881"
- y="177.90059"
- x="75.85218">Shift</text>
- </g>
- </g>
- <text
- transform="scale(0.96824588,1.0327955)"
- id="text471"
- y="12.333657"
- x="252.9579"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="Info"><tspan
- style="stroke-width:0.30784383px"
- y="12.333657"
- x="252.9579"
- id="tspan469"
- sodipodi:role="line">information</tspan></text>
- </g>
- <g
- id="g14237"
- inkscape:label="HMI:DropDown:1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:16:17:18:19:20:21:22:23:24:25:26:27@/SELECTION"
- transform="matrix(0.81491208,0,0,0.81491208,243.6641,-510.30491)"
- style="stroke-width:0.35083869">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#53676c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect14212"
- width="391.99988"
- height="130.9433"
- x="864.00842"
- y="923.98993"
- rx="2.4558709"
- ry="2.4558709"
- inkscape:label="box" />
- <rect
- inkscape:label="highlight"
- ry="2.4558709"
- rx="2.4558709"
- y="943.10553"
- x="864.00842"
- height="92.71212"
- width="391.99988"
- id="rect5497"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419331;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text14183"
- y="1011.9975"
- x="881.44226"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d42aff;fill-opacity:1;stroke:none;stroke-width:0.35083869px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="text"><tspan
- style="text-align:start;text-anchor:start;fill:#d42aff;stroke-width:0.35083869px"
- y="1011.9975"
- x="881.44226"
- sodipodi:role="line"
- id="tspan421">sel_0</tspan></text>
- <path
- sodipodi:type="star"
- style="opacity:1;vector-effect:none;fill:#a7a5a6;fill-opacity:1;stroke:none;stroke-width:0.12376806;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path424"
- sodipodi:sides="3"
- sodipodi:cx="1200.5"
- sodipodi:cy="975"
- sodipodi:r1="43.683521"
- sodipodi:r2="21.841761"
- sodipodi:arg1="1.5707963"
- sodipodi:arg2="2.6179939"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 1200.5,1018.6835 -18.9155,-32.76262 -18.9155,-32.76264 37.831,0 37.831,0 -18.9155,32.76264 z"
- inkscape:transform-center-y="10.92088"
- inkscape:label="button" />
- </g>
- <g
- id="g14274"
- inkscape:label="HMI:List:HoodNames:ForEach:HOOD:NAME@/" />
- <g
- inkscape:label="HMI:Input@/SELECTION"
- id="g446"
- transform="matrix(0.28590269,0,0,0.28590269,85.246911,560.98603)">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="216.32812"
- y="218.24219"
- id="text432"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan430"
- x="216.32812"
- y="218.24219"
- style="text-align:end;text-anchor:end;stroke-width:1px">8</tspan></text>
- <path
- transform="scale(1,-1)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path436"
- sodipodi:sides="3"
- sodipodi:cx="276.74072"
- sodipodi:cy="-224.98808"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 302.6459,-210.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="7.4781812"
- inkscape:label="-1" />
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="-174.94055"
- height="128"
- width="407.7037"
- id="rect438"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:label="+1"
- inkscape:transform-center-y="-7.4781804"
- d="m 302.6459,111.4008 -51.81035,0 25.90517,-44.869079 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="96.444443"
- sodipodi:cx="276.74072"
- sodipodi:sides="3"
- id="path442"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <path
- inkscape:label="=0"
- inkscape:transform-center-y="-10.828983"
- d="m 306.14807,189.68763 -58.37872,0.43598 -0.43597,-58.37872 58.37871,-0.43597 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5633284"
- sodipodi:arg1="0.77793027"
- sodipodi:r2="21.657967"
- sodipodi:r1="41.281136"
- sodipodi:cy="160.71626"
- sodipodi:cx="276.74072"
- sodipodi:sides="4"
- id="path444"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- inkscape:transform-center-x="1.0089177e-06" />
- </g>
- <g
- transform="matrix(0.57180538,0,0,0.57180538,-522.96165,161.69266)"
- id="g443"
- inkscape:label="HMI:Button@/SELECTION"
- style="stroke-width:1">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect5492"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="23.930969"
- inkscape:label="inactive"
- rx="23.930969" />
- <rect
- rx="23.930969"
- inkscape:label="active"
- ry="23.930969"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect433"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fdfdfd;fill-opacity:1;fill-rule:nonzero;stroke:#ffd0b2;stroke-width:28.60938263;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- style="stroke-width:1"
- inkscape:label="text"
- id="g952">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="656.98151"
- id="text950"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- id="tspan948"
- x="1090.7626"
- y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">up</tspan></text>
- </g>
- </g>
- <g
- id="g5053"
- inkscape:label="HMI:Switch@/PUMP0/BOOLOUT"
- transform="translate(43.983597,40.477445)">
- <g
- id="g473"
- style="fill:#ff0000;stroke:#ff00ff"
- inkscape:label="true">
- <path
- d="M 825.90067,963.24473 V 1105.042 L 960.08282,916.47893 V 809.26931 Z"
- style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3451"
- inkscape:connector-curvature="0" />
- <path
- d="m 825.90067,1105.042 90.50966,81.6485 121.15167,-225.30346 -77.47918,-44.90811 z"
- style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3453"
- inkscape:connector-curvature="0" />
- <path
- d="m 960.08282,809.26931 77.47918,36.25625 v 115.86148 l -77.47918,-44.90811 z"
- style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3455"
- inkscape:connector-curvature="0" />
- <path
- d="M 825.90067,963.24473 916.41033,1029.3537 1037.562,845.52556 960.08282,809.26931 Z"
- style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3457"
- inkscape:connector-curvature="0" />
- <path
- d="m 916.41033,1029.3537 v 157.3368 L 1037.562,961.38704 V 845.52556 Z"
- style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3459"
- inkscape:connector-curvature="0" />
- <path
- d="m 825.90067,963.24473 90.50966,66.10897 v 157.3368 l -90.50966,-81.6485 z"
- style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3461"
- inkscape:connector-curvature="0" />
- </g>
- <g
- id="g501"
- style="fill:#ff0000;stroke:#ff00ff"
- inkscape:label="false">
- <path
- d="M 855.90069,905.24473 V 1047.042 L 978.3745,966.29311 V 859.0835 Z"
- style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3437"
- inkscape:connector-curvature="0" />
- <path
- d="m 855.90069,1047.042 90.50966,81.6485 108.49845,-108.7886 -76.5343,-53.60879 z"
- style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3439"
- inkscape:connector-curvature="0" />
- <path
- d="m 978.3745,859.0835 76.5343,44.95689 v 115.86151 l -76.5343,-53.60879 z"
- style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3441"
- inkscape:connector-curvature="0" />
- <path
- d="m 855.90069,905.24473 90.50966,66.10901 108.49845,-67.31335 -76.5343,-44.95689 z"
- style="fill:#4d389f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3443"
- inkscape:connector-curvature="0" />
- <path
- d="M 946.41035,971.35374 V 1128.6905 L 1054.9088,1019.9019 V 904.04039 Z"
- style="fill:#d78bff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3445"
- inkscape:connector-curvature="0" />
- <path
- d="m 855.90069,905.24473 90.50966,66.10901 v 157.33676 l -90.50966,-81.6485 z"
- style="fill:#8667bf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3447"
- inkscape:connector-curvature="0" />
- <g
- inkscape:label="HMI:Switch@/TARGETPRESSURE"
- id="g991-3"
- transform="matrix(0.5,0,0,0.5,699.09791,793.95217)"
- style="stroke-width:2">
- <g
- id="g1091-3"
- inkscape:label="4"
- transform="translate(-136.52022,250.47452)"
- style="stroke-width:2">
- <path
- inkscape:transform-center-x="14.956371"
- inkscape:transform-center-y="-3.6154501e-05"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path981-1"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="661.09552"
- y="111.05016"
- id="text1059-7"><tspan
- sodipodi:role="line"
- id="tspan1057-5"
- x="661.09552"
- y="111.05016"
- style="stroke-width:1px">4</tspan></text>
- </g>
- <g
- id="g1096-9"
- inkscape:label="3"
- transform="translate(-136.52022,250.47452)"
- style="stroke-width:2">
- <path
- inkscape:transform-center-x="14.956364"
- transform="rotate(-90,746.45698,-44.543641)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path979-6"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="-5.9989963e-06" />
- <text
- id="text1063-2"
- y="111.05016"
- x="565.25018"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="565.25018"
- id="tspan1061-1"
- sodipodi:role="line">3</tspan></text>
- </g>
- <g
- id="g1076-7"
- inkscape:label="2"
- transform="translate(-416.52022,170.47452)"
- style="stroke-width:2">
- <path
- inkscape:transform-center-x="-14.956365"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-y="-5.5023185e-06"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path985-8"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <text
- id="text1067-5"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="925.82605"
- id="tspan1065-7"
- sodipodi:role="line">2</tspan></text>
- </g>
- <g
- id="g1081-4"
- inkscape:label="1"
- transform="translate(-416.52022,170.47452)"
- style="stroke-width:2">
- <path
- inkscape:transform-center-x="-14.956349"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path987-1"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.3040441e-05" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="842.71497"
- y="111.05016"
- id="text1071-8"><tspan
- sodipodi:role="line"
- id="tspan1069-5"
- x="842.71497"
- y="111.05016"
- style="stroke-width:1px">1</tspan></text>
- </g>
- </g>
- </g>
- </g>
- <g
- transform="matrix(3.3549332,0,0,3.14525,-181.87457,3116.0198)"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g1490"
- inkscape:label="HMI:ModalOKDialog">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
- id="path1386"
- inkscape:connector-curvature="0"
- inkscape:label="Background"
- sodipodi:nodetypes="ccccc" />
- <rect
- inkscape:label="Field"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1388"
- width="314.68832"
- height="68.369255"
- x="87.630791"
- y="56.041908"
- rx="3.8152773"
- ry="3.8152773" />
- <text
- inkscape:label="Message"
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="243.24242"
- y="94.637527"
- id="text1392"><tspan
- sodipodi:role="line"
- id="tspan1390"
- x="243.24242"
- y="94.637527"
- style="text-align:center;text-anchor:middle;stroke-width:0.47690967px">message</tspan></text>
- <g
- transform="translate(-158.98593,95.381925)"
- inkscape:label="OK"
- id="g1466">
- <path
- inkscape:connector-curvature="0"
- d="m 363.41531,54.792986 h 81.09115 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -81.09115 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
- id="path1462"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <text
- transform="scale(1.0007154,0.99928511)"
- style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- id="text1464"
- y="78.632088"
- x="402.71881">
- <tspan
- style="text-align:center;text-anchor:middle"
- id="tspan5195">OK</tspan>
- </text>
- </g>
- <text
- inkscape:label="Info"
- transform="scale(0.96824589,1.0327955)"
- id="text1482"
- y="12.333653"
- x="252.9579"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.30784383px"
- y="12.333653"
- x="252.9579"
- id="tspan1480"
- sodipodi:role="line">information</tspan></text>
- </g>
- <g
- inkscape:label="HMI:Meter@/PUMP0/SLOTH"
- transform="matrix(3.7795276,0,0,3.7795276,1628.51,630.30393)"
- id="g1338">
- <path
- inkscape:label="range"
- sodipodi:open="true"
- d="M 63.610123,2.2017068 A 64.411957,64.411957 0 0 1 128.02208,-62.210247"
- sodipodi:end="4.712389"
- sodipodi:start="3.1415927"
- sodipodi:ry="64.411957"
- sodipodi:rx="64.411957"
- sodipodi:cy="2.2017097"
- sodipodi:cx="128.02208"
- sodipodi:type="arc"
- id="path1318"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3ee800;stroke-width:26.45833397;stroke-miterlimit:4;stroke-dasharray:2.64583333, 2.64583333;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:label="needle"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path1320"
- d="M 130.96206,4.0725977 79.111776,-41.363223"
- style="fill:none;fill-rule:evenodd;stroke:#ff3000;stroke-width:2.96333337;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-end:url(#marker1656)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="49.132977"
- y="4.9187088"
- id="text1324"
- inkscape:label="min"><tspan
- sodipodi:role="line"
- id="tspan1322"
- x="49.132977"
- y="4.9187088"
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
- <text
- id="text1328"
- y="-78.144218"
- x="127.48073"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="max"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="-78.144218"
- x="127.48073"
- id="tspan1326"
- sodipodi:role="line">10000</tspan></text>
- <text
- inkscape:label="unit"
- id="text1336"
- y="1.1408259"
- x="124.77896"
- style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- id="tspan1334"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="1.1408259"
- x="124.77896"
- sodipodi:role="line">bar</tspan></text>
- </g>
- <g
- inkscape:label="HMI:Switch@/PUMP0/BOOLOUT"
- id="g1368"
- transform="translate(1424.3019,-503.18786)">
- <g
- id="g1352"
- style="fill:#ff0000;stroke:#ff00ff"
- inkscape:label="true">
- <path
- d="M 825.90072,963.24473 V 1105.042 L 960.08286,916.47892 V 809.26931 Z"
- style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3479"
- inkscape:connector-curvature="0" />
- <path
- d="m 825.90072,1105.042 90.50967,81.6485 121.15161,-225.30347 -77.47914,-44.90811 z"
- style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3481"
- inkscape:connector-curvature="0" />
- <path
- d="m 960.08286,809.26931 77.47914,36.25624 v 115.86148 l -77.47914,-44.90811 z"
- style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3483"
- inkscape:connector-curvature="0" />
- <path
- d="M 825.90072,963.24473 916.41039,1029.3537 1037.562,845.52555 960.08286,809.26931 Z"
- style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3485"
- inkscape:connector-curvature="0" />
- <path
- d="m 916.41039,1029.3537 v 157.3368 L 1037.562,961.38703 V 845.52555 Z"
- style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3487"
- inkscape:connector-curvature="0" />
- <path
- d="m 825.90072,963.24473 90.50967,66.10897 v 157.3368 l -90.50967,-81.6485 z"
- style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3489"
- inkscape:connector-curvature="0" />
- </g>
- <g
- id="g1366"
- style="fill:#ff0000;stroke:#ff00ff"
- inkscape:label="false">
- <path
- d="M 855.90072,905.24473 V 1047.042 L 978.37453,966.29311 V 859.08349 Z"
- style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3465"
- inkscape:connector-curvature="0" />
- <path
- d="m 855.90072,1047.042 90.50967,81.6485 108.49841,-108.7886 -76.53427,-53.60879 z"
- style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3467"
- inkscape:connector-curvature="0" />
- <path
- d="m 978.37453,859.08349 76.53427,44.9569 v 115.86151 l -76.53427,-53.60879 z"
- style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3469"
- inkscape:connector-curvature="0" />
- <path
- d="m 855.90072,905.24473 90.50967,66.109 108.49841,-67.31334 -76.53427,-44.9569 z"
- style="fill:#4d389f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3471"
- inkscape:connector-curvature="0" />
- <path
- d="M 946.41039,971.35373 V 1128.6905 L 1054.9088,1019.9019 V 904.04039 Z"
- style="fill:#d78bff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3473"
- inkscape:connector-curvature="0" />
- <path
- d="m 855.90072,905.24473 90.50967,66.109 v 157.33677 l -90.50967,-81.6485 z"
- style="fill:#8667bf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3475"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- <g
- transform="matrix(0.63690435,0,0,0.63690435,1576.4961,80.355376)"
- inkscape:label="HMI:Input@/PUMP0/PRESSURE"
- id="g1394">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text1380"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1378"
- x="136.32812"
- y="218.24219"
- style="stroke-width:1px">8888</tspan></text>
- <path
- inkscape:label="-100"
- inkscape:transform-center-y="14.956363"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-216.2599"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1382"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="scale(1,-1)" />
- <path
- transform="scale(1,-1)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1384"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-184.98808"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="7.4781812"
- inkscape:label="-10" />
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect1386"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1388"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="105.17262"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:transform-center-y="-14.956361"
- inkscape:label="+100" />
- <path
- inkscape:label="+10"
- inkscape:transform-center-y="-7.4781804"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="136.44444"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1390"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <path
- inkscape:label="=0"
- inkscape:transform-center-y="-14.956361"
- d="M 121.35644,205.1862 C 158.18649,167.80191 3.342862,168.95829 40.72715,205.78834 78.111437,242.61839 76.95506,87.774762 40.125008,125.15905 3.2949549,162.54334 158.13858,161.38696 120.7543,124.55691 83.370008,87.726855 84.526385,242.57048 121.35644,205.1862 Z"
- inkscape:randomized="0"
- inkscape:rounded="-0.65084865"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5633284"
- sodipodi:arg1="0.77793027"
- sodipodi:r2="29.912722"
- sodipodi:r1="57.015106"
- sodipodi:cy="165.17262"
- sodipodi:cx="80.740723"
- sodipodi:sides="4"
- id="path1392"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- </g>
- <g
- style="stroke-width:2"
- inkscape:label="HMI:Input@/PUMP0/STRIN"
- id="g1442"
- transform="matrix(0.5,0,0,0.5,1470.1103,205.71623)">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text1398"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1396"
- x="136.32812"
- y="218.24219"
- style="stroke-width:2px">8888</tspan></text>
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect1400"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- style="stroke-width:2"
- id="g1408"
- inkscape:label="+"dhu""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:connector-curvature="0"
- id="path1402"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1406"
- y="111.05016"
- x="733.58197"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="733.58197"
- id="tspan1404"
- sodipodi:role="line">dhu</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1416"
- inkscape:label="="plop""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956371"
- inkscape:transform-center-y="-3.6154501e-05"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1410"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="633.09552"
- y="111.05016"
- id="text1414"><tspan
- sodipodi:role="line"
- id="tspan1412"
- x="633.09552"
- y="111.05016"
- style="stroke-width:1px">plop</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1424"
- inkscape:label="="mhoo""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956364"
- transform="rotate(-90,746.45698,-44.543641)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1418"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="-5.9989963e-06" />
- <text
- id="text1422"
- y="111.05016"
- x="537.25018"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="537.25018"
- id="tspan1420"
- sodipodi:role="line">mhoo</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1432"
- inkscape:label="="yodl""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956365"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-y="-5.5023185e-06"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1426"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <text
- id="text1430"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="925.82605"
- id="tspan1428"
- sodipodi:role="line">yodl</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1440"
- inkscape:label="="mhe""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956349"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1434"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.3040441e-05" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="842.71497"
- y="111.05016"
- id="text1438"><tspan
- sodipodi:role="line"
- id="tspan1436"
- x="842.71497"
- y="111.05016"
- style="stroke-width:1px">mhe</tspan></text>
- </g>
- </g>
- <text
- inkscape:label="HMI:Display@/PUMP0/STROUT"
- id="text1446"
- y="469.12109"
- x="1578.1641"
- style="font-style:normal;font-weight:normal;font-size:80px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.5px"
- y="469.12109"
- x="1578.1641"
- id="tspan1444"
- sodipodi:role="line">8888</tspan></text>
- <g
- transform="matrix(0.57180538,0,0,0.57180538,-153.64055,248.51305)"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP0"
- id="g1458">
- <g
- inkscape:label="button"
- id="g1450">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect1448"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- inkscape:label="text"
- id="g1456">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="656.98151"
- id="text1454"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- x="1090.7626"
- y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- id="tspan1460">Pump 0</tspan></text>
- </g>
- </g>
- <g
- id="g1475"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP1"
- transform="matrix(0.57180538,0,0,0.57180538,6.35945,248.51305)">
- <g
- id="g1467"
- inkscape:label="button">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1464"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- id="g1473"
- inkscape:label="text">
- <text
- inkscape:label="setting_jmp"
- id="text1471"
- y="656.98151"
- x="1090.7626"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- id="tspan1469"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="656.98151"
- x="1090.7626"
- sodipodi:role="line">Pump 1</tspan><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="706.98151"
- x="1090.7626"
- sodipodi:role="line"
- id="tspan1477" /></text>
- </g>
- </g>
- <g
- transform="matrix(0.57180538,0,0,0.57180538,166.35945,248.51305)"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP2"
- id="g1491">
- <g
- inkscape:label="button"
- id="g1481">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect1479"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- inkscape:label="text"
- id="g1489">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="656.98151"
- id="text1487"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- x="1090.7626"
- y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- id="tspan1493">Pump 2</tspan><tspan
- id="tspan1485"
- sodipodi:role="line"
- x="1090.7626"
- y="706.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px" /></text>
- </g>
- </g>
- <g
- id="g1509"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP3"
- transform="matrix(0.57180538,0,0,0.57180538,326.35945,248.51305)">
- <g
- id="g1499"
- inkscape:label="button">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1497"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- id="g1507"
- inkscape:label="text">
- <text
- inkscape:label="setting_jmp"
- id="text1505"
- y="656.98151"
- x="1090.7626"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="656.98151"
- x="1090.7626"
- sodipodi:role="line"
- id="tspan1511">Pump 3</tspan><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="706.98151"
- x="1090.7626"
- sodipodi:role="line"
- id="tspan1503" /></text>
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="403.8551"
- y="700.05371"
- id="text1517"
- inkscape:label="HMI:Display@/PUMP0/STROUT"><tspan
- sodipodi:role="line"
- id="tspan1515"
- x="403.8551"
- y="700.05371"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px">8888</tspan></text>
- <text
- inkscape:label="HMI:Display@/PUMP1/STROUT"
- id="text1521"
- y="700.05371"
- x="563.8551"
- style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px"
- y="700.05371"
- x="563.8551"
- id="tspan1519"
- sodipodi:role="line">8888</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="723.8551"
- y="700.05371"
- id="text1525"
- inkscape:label="HMI:Display@/PUMP2/STROUT"><tspan
- sodipodi:role="line"
- id="tspan1523"
- x="723.8551"
- y="700.05371"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px">8888</tspan></text>
- <text
- inkscape:label="HMI:Display@/PUMP3/STROUT"
- id="text1529"
- y="700.05371"
- x="883.8551"
- style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px"
- y="700.05371"
- x="883.8551"
- id="tspan1527"
- sodipodi:role="line">8888</tspan></text>
- <g
- id="g6077"
- inkscape:label="HMI:ForEach:PUMP@/">
- <g
- id="g6130"
- inkscape:label="PUMP:1">
- <g
- transform="matrix(0.57180538,0,0,0.57180538,1024.0513,-317.49049)"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP0"
- id="g1458-8">
- <g
- inkscape:label="disabled"
- id="g1450-4"
- style="display:inline">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect1448-8"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.28600003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- id="g1067"
- inkscape:label="inactive"
- style="display:inline">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1065"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- inkscape:label="active"
- id="g1071"
- style="display:inline">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect1069"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- inkscape:label="text"
- id="g1456-1">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1038.2972"
- y="635.99542"
- id="text1454-0"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- x="1038.2972"
- y="635.99542"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- id="tspan1460-3">Pump</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="992.45087"
- y="674.76117"
- id="text1517-8"
- inkscape:label="HMI:Display@/PUMP0/STROUT"><tspan
- sodipodi:role="line"
- id="tspan1515-5"
- x="992.45087"
- y="674.76117"
- style="fill:#000000;fill-opacity:1;stroke-width:0.24579209px">8888</tspan></text>
- </g>
- </g>
- </g>
- <g
- id="g6122"
- inkscape:label="PUMP:2">
- <g
- id="g1475-0"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP1"
- transform="matrix(0.57180538,0,0,0.57180538,1184.0513,-317.49049)">
- <g
- id="g1467-4"
- inkscape:label="disabled">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.28600003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1464-4"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- inkscape:label="inactive"
- id="g1898"
- style="display:inline">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect1896"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- id="g1902"
- inkscape:label="active"
- style="display:inline">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1900"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- id="g1473-4"
- inkscape:label="text">
- <text
- inkscape:label="setting_jmp"
- id="text1471-4"
- y="635.99542"
- x="1038.2972"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="635.99542"
- x="1038.2972"
- sodipodi:role="line"
- id="tspan1477-6">Pump</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579208px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="992.8111"
- y="674.76117"
- id="text1517-8-5"
- inkscape:label="HMI:Display@/PUMP1/STROUT"><tspan
- sodipodi:role="line"
- id="tspan1515-5-3"
- x="992.8111"
- y="674.76117"
- style="fill:#000000;fill-opacity:1;stroke-width:0.24579208px">8888</tspan></text>
- </g>
- </g>
- </g>
- <g
- id="g6113"
- inkscape:label="PUMP:3">
- <g
- transform="matrix(0.57180538,0,0,0.57180538,1344.0513,-317.49049)"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP2"
- id="g1491-3">
- <g
- inkscape:label="disabled"
- id="g1481-1">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect1479-7"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.28600003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- id="g1906"
- inkscape:label="inactive">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1904"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- inkscape:label="active"
- id="g1910">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect1908"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- inkscape:label="text"
- id="g1489-5">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1038.2972"
- y="635.99542"
- id="text1487-9"
- inkscape:label="setting_jmp"><tspan
- id="tspan1485-2"
- sodipodi:role="line"
- x="1038.2972"
- y="635.99542"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Pump</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579208px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="993.17108"
- y="674.76117"
- id="text1517-8-8"
- inkscape:label="HMI:Display@/PUMP2/STROUT"><tspan
- sodipodi:role="line"
- id="tspan1515-5-8"
- x="993.17108"
- y="674.76117"
- style="fill:#000000;fill-opacity:1;stroke-width:0.24579208px">8888</tspan></text>
- </g>
- </g>
- </g>
- <g
- id="g6104"
- inkscape:label="PUMP:4">
- <g
- id="g1509-1"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP3"
- transform="matrix(0.57180538,0,0,0.57180538,1504.0513,-317.49049)">
- <g
- id="g1499-7"
- inkscape:label="disabled"
- style="display:inline">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.28600003;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1497-8"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- id="g1918"
- inkscape:label="inactive"
- style="display:inline">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#3d3d3d;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1916"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- inkscape:label="active"
- id="g1914"
- style="display:inline">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect1912"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- id="g1507-5"
- inkscape:label="text">
- <text
- inkscape:label="setting_jmp"
- id="text1505-7"
- y="635.99542"
- x="1038.2972"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="635.99542"
- x="1038.2972"
- sodipodi:role="line"
- id="tspan1511-4">Pump</tspan><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="685.99542"
- x="1038.2972"
- sodipodi:role="line"
- id="tspan1503-1" /></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579208px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="993.53101"
- y="674.76117"
- id="text1517-8-3"
- inkscape:label="HMI:Display@/PUMP3/STROUT"><tspan
- sodipodi:role="line"
- id="tspan1515-5-1"
- x="993.53101"
- y="674.76117"
- style="fill:#000000;fill-opacity:1;stroke-width:0.24579208px">8888</tspan></text>
- </g>
- </g>
- </g>
- <g
- inkscape:label="PUMP:+1"
- id="g6241"
- transform="matrix(0.57180538,0,0,0.57180538,1461.2541,-321.48847)">
- <rect
- style="fill:#000000;fill-opacity:1;stroke:#ff0000;stroke-width:1.74884677"
- id="rect6235"
- width="89.036743"
- height="79.143768"
- x="1326.8333"
- y="612.41589"
- rx="22.385239"
- ry="20.986162" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:42.81540298px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.0703851"
- x="1340.5292"
- y="663.73657"
- id="text6239"><tspan
- sodipodi:role="line"
- id="tspan6237"
- x="1340.5292"
- y="663.73657"
- style="fill:#ffffff;stroke-width:1.0703851">+1</tspan></text>
- </g>
- <g
- transform="matrix(0.57180538,0,0,0.57180538,752.02604,-322.19558)"
- id="g6209"
- inkscape:label="PUMP:-1">
- <rect
- ry="20.986162"
- rx="22.385239"
- y="612.41589"
- x="1326.8333"
- height="79.143768"
- width="89.036743"
- id="rect6200"
- style="fill:#000000;fill-opacity:1;stroke:#ff0000;stroke-width:1.74884677" />
- <text
- id="text6204"
- y="663.73657"
- x="1340.5292"
- style="font-style:normal;font-weight:normal;font-size:42.81540298px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.0703851"
- xml:space="preserve"><tspan
- style="fill:#ffffff;stroke-width:1.0703851"
- y="663.73657"
- x="1340.5292"
- id="tspan6202"
- sodipodi:role="line">-1</tspan></text>
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:59.01374435px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#82ff77;fill-opacity:1;stroke:none;stroke-width:0.3688359px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="689.9715"
- y="539.24927"
- id="text995-6"
- inkscape:label="HMI:Display:Ploc %d (%d) grmbl !@/PUMP0/PRESSURE@/PUMP0/SLOTH"><tspan
- sodipodi:role="line"
- id="tspan993-3"
- x="689.9715"
- y="539.24927"
- style="text-align:center;text-anchor:middle;fill:#82ff77;fill-opacity:1;stroke-width:0.3688359px">8888</tspan></text>
- <text
- id="text831-1"
- y="477.76758"
- x="581.62634"
- style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="actual_label"><tspan
- y="477.76758"
- x="581.62634"
- id="tspan829-7"
- sodipodi:role="line"
- style="stroke-width:0.63690436px">Multiple variables</tspan></text>
- <text
- inkscape:label="HMI:Display@paff"
- id="text1457"
- y="68.844757"
- x="750.28473"
- style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
- y="68.844757"
- x="750.28473"
- id="tspan1455"
- sodipodi:role="line">8888</tspan></text>
- <g
- style="stroke-width:4"
- inkscape:label="HMI:Input@paff"
- id="g1505"
- transform="matrix(0.14295135,0,0,0.14295135,589.21833,37.615184)">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text1461"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1459"
- x="136.32812"
- y="218.24219"
- style="stroke-width:4px">8888</tspan></text>
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect1463"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- style="stroke-width:4"
- id="g1471"
- inkscape:label="+"dhu""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:connector-curvature="0"
- id="path1465"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1469"
- y="111.05016"
- x="733.58197"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="733.58197"
- id="tspan1467"
- sodipodi:role="line">dhu</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g1479"
- inkscape:label="="plop""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956371"
- inkscape:transform-center-y="-3.6154501e-05"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1473"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="633.09552"
- y="111.05016"
- id="text1477"><tspan
- sodipodi:role="line"
- id="tspan1475"
- x="633.09552"
- y="111.05016"
- style="stroke-width:2px">plop</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g1487"
- inkscape:label="="mhoo""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956364"
- transform="rotate(-90,746.45698,-44.543641)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1481"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="-5.9989963e-06" />
- <text
- id="text1485"
- y="111.05016"
- x="537.25018"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="537.25018"
- id="tspan1483"
- sodipodi:role="line">mhoo</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g1495"
- inkscape:label="="yodl""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956365"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-y="-5.5023185e-06"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1489"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <text
- id="text1493"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="925.82605"
- id="tspan1491"
- sodipodi:role="line">yodl</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g1503"
- inkscape:label="="mhe""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956349"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1497"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.3040441e-05" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="842.71497"
- y="111.05016"
- id="text1501"><tspan
- sodipodi:role="line"
- id="tspan1499"
- x="842.71497"
- y="111.05016"
- style="stroke-width:2px">mhe</tspan></text>
- </g>
- </g>
- <text
- inkscape:label="actual_label"
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:12.7380867px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="509.67926"
- y="43.42762"
- id="text1527"><tspan
- style="stroke-width:0.63690436px"
- sodipodi:role="line"
- id="tspan1525"
- x="509.67926"
- y="43.42762">HMI_LOCAL variables</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="750.28473"
- y="128.84476"
- id="text1557"
- inkscape:label="HMI:Display@.piff"><tspan
- sodipodi:role="line"
- id="tspan1555"
- x="750.28473"
- y="128.84476"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
- <g
- transform="matrix(0.14295135,0,0,0.14295135,589.21833,97.61518)"
- id="g1605"
- inkscape:label="HMI:Input@.piff"
- style="stroke-width:4">
- <text
- inkscape:label="value"
- id="text1561"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:4px"
- y="218.24219"
- x="136.32812"
- id="tspan1559"
- sodipodi:role="line">8888</tspan></text>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1563"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="+"dhu""
- id="g1571"
- style="stroke-width:4">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:transform-center-y="-14.956361"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- id="path1565"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="733.58197"
- y="111.05016"
- id="text1569"><tspan
- sodipodi:role="line"
- id="tspan1567"
- x="733.58197"
- y="111.05016"
- style="stroke-width:2px">dhu</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="plop""
- id="g1579"
- style="stroke-width:4">
- <path
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1573"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-184.98808"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.6154501e-05"
- inkscape:transform-center-x="14.956371" />
- <text
- id="text1577"
- y="111.05016"
- x="633.09552"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="633.09552"
- id="tspan1575"
- sodipodi:role="line">plop</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhoo""
- id="g1587"
- style="stroke-width:4">
- <path
- inkscape:transform-center-y="-5.9989963e-06"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-216.2599"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1581"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="rotate(-90,746.45698,-44.543641)"
- inkscape:transform-center-x="14.956364" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="537.25018"
- y="111.05016"
- id="text1585"><tspan
- sodipodi:role="line"
- id="tspan1583"
- x="537.25018"
- y="111.05016"
- style="stroke-width:2px">mhoo</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="yodl""
- id="g1595"
- style="stroke-width:4">
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1589"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="105.17262"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:transform-center-y="-5.5023185e-06"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-x="-14.956365" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="925.82605"
- y="111.05016"
- id="text1593"><tspan
- sodipodi:role="line"
- id="tspan1591"
- x="925.82605"
- y="111.05016"
- style="stroke-width:2px">yodl</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhe""
- id="g1603"
- style="stroke-width:4">
- <path
- inkscape:transform-center-y="-3.3040441e-05"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="136.44444"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1597"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- inkscape:transform-center-x="-14.956349" />
- <text
- id="text1601"
- y="111.05016"
- x="842.71497"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="842.71497"
- id="tspan1599"
- sodipodi:role="line">mhe</tspan></text>
- </g>
- </g>
- <text
- id="text1609"
- y="103.42763"
- x="509.67926"
- style="font-style:normal;font-weight:normal;font-size:12.7380867px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="actual_label"><tspan
- y="103.42763"
- x="509.67926"
- sodipodi:role="line"
- style="stroke-width:0.63690436px"
- id="tspan1611">PAGE_LOCAL variables</tspan></text>
- <g
- inkscape:label="HMI:Meter@level"
- transform="matrix(2.1611542,0,0,2.1611542,602.76714,428.92423)"
- id="g709">
- <path
- inkscape:label="range"
- sodipodi:open="true"
- d="M 63.610123,2.2017068 A 64.411957,64.411957 0 0 1 128.02208,-62.210247"
- sodipodi:end="4.712389"
- sodipodi:start="3.1415927"
- sodipodi:ry="64.411957"
- sodipodi:rx="64.411957"
- sodipodi:cy="2.2017097"
- sodipodi:cx="128.02208"
- sodipodi:type="arc"
- id="path689"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff7f2a;stroke-width:26.45833397;stroke-miterlimit:4;stroke-dasharray:2.64583333, 2.64583333;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:label="needle"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path691"
- d="M 130.96206,4.0725977 79.111776,-41.363223"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:2.96333337;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0, 32.59666667;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-end:url(#marker1971)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="49.132977"
- y="4.9187088"
- id="text695"
- inkscape:label="min"><tspan
- sodipodi:role="line"
- id="tspan693"
- x="49.132977"
- y="4.9187088"
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
- <text
- id="text699"
- y="-78.144218"
- x="127.48073"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="max"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="-78.144218"
- x="127.48073"
- id="tspan697"
- sodipodi:role="line">10000</tspan></text>
- <text
- inkscape:label="unit"
- id="text707"
- y="1.1408259"
- x="124.77896"
- style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- id="tspan705"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="1.1408259"
- x="124.77896"
- sodipodi:role="line">bar</tspan></text>
- </g>
- <g
- id="g84-3"
- inkscape:label="HMI:Input@level"
- transform="matrix(0.35865594,0,0,0.35865594,458.57767,253.49106)">
- <text
- inkscape:label="value"
- id="text5151-6"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="218.24219"
- x="136.32812"
- id="tspan5149-7"
- sodipodi:role="line">8888</tspan></text>
- <path
- transform="scale(1,-1)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path89-5"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="14.956363"
- inkscape:label="-100" />
- <path
- inkscape:label="-10"
- inkscape:transform-center-y="7.4781812"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path88-3"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="scale(1,-1)" />
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect85-5"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <path
- inkscape:label="+100"
- inkscape:transform-center-y="-14.956361"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path87-6"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path86-2"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-7.4781804"
- inkscape:label="+10" />
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path91-9"
- sodipodi:sides="4"
- sodipodi:cx="80.740723"
- sodipodi:cy="165.17262"
- sodipodi:r1="57.015106"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.77793027"
- sodipodi:arg2="1.5633284"
- inkscape:flatsided="true"
- inkscape:rounded="-0.65084865"
- inkscape:randomized="0"
- d="M 121.35644,205.1862 C 158.18649,167.80191 3.342862,168.95829 40.72715,205.78834 78.111437,242.61839 76.95506,87.774762 40.125008,125.15905 3.2949549,162.54334 158.13858,161.38696 120.7543,124.55691 83.370008,87.726855 84.526385,242.57048 121.35644,205.1862 Z"
- inkscape:transform-center-y="-14.956361"
- inkscape:label="=0" />
- </g>
- <text
- inkscape:label="HMI:Display@paff"
- id="text1457-1"
- y="215.65211"
- x="2632.9148"
- style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
- y="215.65211"
- x="2632.9148"
- id="tspan1455-2"
- sodipodi:role="line">8888</tspan></text>
- <g
- style="stroke-width:2"
- inkscape:label="HMI:Input@paff"
- id="g1505-7"
- transform="matrix(0.28590269,0,0,0.28590269,2430.782,153.19299)">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text1461-0"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1459-9"
- x="136.32812"
- y="218.24219"
- style="stroke-width:2px">8888</tspan></text>
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect1463-3"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- style="stroke-width:2"
- id="g1471-6"
- inkscape:label="+"dhu""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:connector-curvature="0"
- id="path1465-0"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1469-6"
- y="111.05016"
- x="733.58197"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="733.58197"
- id="tspan1467-2"
- sodipodi:role="line">dhu</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1479-6"
- inkscape:label="="plop""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956371"
- inkscape:transform-center-y="-3.6154501e-05"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1473-1"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="633.09552"
- y="111.05016"
- id="text1477-8"><tspan
- sodipodi:role="line"
- id="tspan1475-7"
- x="633.09552"
- y="111.05016"
- style="stroke-width:1px">plop</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1487-9"
- inkscape:label="="mhoo""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956364"
- transform="rotate(-90,746.45698,-44.543641)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1481-2"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="-5.9989963e-06" />
- <text
- id="text1485-0"
- y="111.05016"
- x="537.25018"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="537.25018"
- id="tspan1483-2"
- sodipodi:role="line">mhoo</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1495-3"
- inkscape:label="="yodl""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956365"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-y="-5.5023185e-06"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1489-7"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <text
- id="text1493-5"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="925.82605"
- id="tspan1491-9"
- sodipodi:role="line">yodl</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1503-2"
- inkscape:label="="mhe""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956349"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1497-2"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.3040441e-05" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="842.71497"
- y="111.05016"
- id="text1501-8"><tspan
- sodipodi:role="line"
- id="tspan1499-9"
- x="842.71497"
- y="111.05016"
- style="stroke-width:1px">mhe</tspan></text>
- </g>
- </g>
- <text
- inkscape:label="actual_label"
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="2471.7039"
- y="164.81787"
- id="text1527-7"><tspan
- style="stroke-width:0.63690436px"
- sodipodi:role="line"
- id="tspan1525-3"
- x="2471.7039"
- y="164.81787">HMI_LOCAL variables</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="2632.9148"
- y="335.65213"
- id="text1557-6"
- inkscape:label="HMI:Display@.piff"><tspan
- sodipodi:role="line"
- id="tspan1555-1"
- x="2632.9148"
- y="335.65213"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
- <g
- transform="matrix(0.28590269,0,0,0.28590269,2430.782,273.19298)"
- id="g1605-2"
- inkscape:label="HMI:Input@.piff"
- style="stroke-width:2">
- <text
- inkscape:label="value"
- id="text1561-9"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="218.24219"
- x="136.32812"
- id="tspan1559-3"
- sodipodi:role="line">8888</tspan></text>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1563-1"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="+"dhu""
- id="g1571-9"
- style="stroke-width:2">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:transform-center-y="-14.956361"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- id="path1565-4"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="733.58197"
- y="111.05016"
- id="text1569-7"><tspan
- sodipodi:role="line"
- id="tspan1567-8"
- x="733.58197"
- y="111.05016"
- style="stroke-width:1px">dhu</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="plop""
- id="g1579-4"
- style="stroke-width:2">
- <path
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1573-5"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-184.98808"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.6154501e-05"
- inkscape:transform-center-x="14.956371" />
- <text
- id="text1577-0"
- y="111.05016"
- x="633.09552"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="633.09552"
- id="tspan1575-3"
- sodipodi:role="line">plop</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhoo""
- id="g1587-6"
- style="stroke-width:2">
- <path
- inkscape:transform-center-y="-5.9989963e-06"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-216.2599"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1581-1"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="rotate(-90,746.45698,-44.543641)"
- inkscape:transform-center-x="14.956364" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="537.25018"
- y="111.05016"
- id="text1585-0"><tspan
- sodipodi:role="line"
- id="tspan1583-6"
- x="537.25018"
- y="111.05016"
- style="stroke-width:1px">mhoo</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="yodl""
- id="g1595-3"
- style="stroke-width:2">
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1589-2"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="105.17262"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:transform-center-y="-5.5023185e-06"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-x="-14.956365" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="925.82605"
- y="111.05016"
- id="text1593-0"><tspan
- sodipodi:role="line"
- id="tspan1591-6"
- x="925.82605"
- y="111.05016"
- style="stroke-width:1px">yodl</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhe""
- id="g1603-1"
- style="stroke-width:2">
- <path
- inkscape:transform-center-y="-3.3040441e-05"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="136.44444"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1597-5"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- inkscape:transform-center-x="-14.956349" />
- <text
- id="text1601-5"
- y="111.05016"
- x="842.71497"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="842.71497"
- id="tspan1599-4"
- sodipodi:role="line">mhe</tspan></text>
- </g>
- </g>
- <text
- id="text1609-7"
- y="284.81787"
- x="2471.7039"
- style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="actual_label"><tspan
- y="284.81787"
- x="2471.7039"
- sodipodi:role="line"
- style="stroke-width:0.63690436px"
- id="tspan1611-6">PAGE_LOCAL variables</tspan></text>
- <text
- inkscape:label="HMI:Display@paff"
- id="text1457-5"
- y="1208.4301"
- x="276.83508"
- style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
- y="1208.4301"
- x="276.83508"
- id="tspan1455-6"
- sodipodi:role="line">8888</tspan></text>
- <g
- style="stroke-width:2"
- inkscape:label="HMI:Input@paff"
- id="g1505-9"
- transform="matrix(0.28590269,0,0,0.28590269,74.702238,1145.9709)">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text1461-3"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1459-7"
- x="136.32812"
- y="218.24219"
- style="stroke-width:2px">8888</tspan></text>
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect1463-4"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- style="stroke-width:2"
- id="g1471-5"
- inkscape:label="+"dhu""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:connector-curvature="0"
- id="path1465-2"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1469-5"
- y="111.05016"
- x="733.58197"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="733.58197"
- id="tspan1467-4"
- sodipodi:role="line">dhu</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1479-7"
- inkscape:label="="plop""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956371"
- inkscape:transform-center-y="-3.6154501e-05"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1473-4"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="633.09552"
- y="111.05016"
- id="text1477-4"><tspan
- sodipodi:role="line"
- id="tspan1475-3"
- x="633.09552"
- y="111.05016"
- style="stroke-width:1px">plop</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1487-0"
- inkscape:label="="mhoo""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956364"
- transform="rotate(-90,746.45698,-44.543641)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1481-7"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="-5.9989963e-06" />
- <text
- id="text1485-8"
- y="111.05016"
- x="537.25018"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="537.25018"
- id="tspan1483-6"
- sodipodi:role="line">mhoo</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1495-8"
- inkscape:label="="yodl""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956365"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-y="-5.5023185e-06"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1489-8"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <text
- id="text1493-4"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="925.82605"
- id="tspan1491-3"
- sodipodi:role="line">yodl</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1503-1"
- inkscape:label="="mhe""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956349"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1497-4"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.3040441e-05" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="842.71497"
- y="111.05016"
- id="text1501-9"><tspan
- sodipodi:role="line"
- id="tspan1499-2"
- x="842.71497"
- y="111.05016"
- style="stroke-width:1px">mhe</tspan></text>
- </g>
- </g>
- <text
- inkscape:label="actual_label"
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="115.62414"
- y="1157.5958"
- id="text1527-0"><tspan
- style="stroke-width:0.63690436px"
- sodipodi:role="line"
- id="tspan1525-6"
- x="115.62414"
- y="1157.5958">HMI_LOCAL variables</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="276.83508"
- y="1328.4301"
- id="text1557-8"
- inkscape:label="HMI:Display@.piff"><tspan
- sodipodi:role="line"
- id="tspan1555-9"
- x="276.83508"
- y="1328.4301"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
- <g
- transform="matrix(0.28590269,0,0,0.28590269,74.702238,1265.9709)"
- id="g1605-26"
- inkscape:label="HMI:Input@.piff"
- style="stroke-width:2">
- <text
- inkscape:label="value"
- id="text1561-6"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="218.24219"
- x="136.32812"
- id="tspan1559-4"
- sodipodi:role="line">8888</tspan></text>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1563-9"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="+"dhu""
- id="g1571-5"
- style="stroke-width:2">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:transform-center-y="-14.956361"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- id="path1565-0"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="733.58197"
- y="111.05016"
- id="text1569-4"><tspan
- sodipodi:role="line"
- id="tspan1567-87"
- x="733.58197"
- y="111.05016"
- style="stroke-width:1px">dhu</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="plop""
- id="g1579-1"
- style="stroke-width:2">
- <path
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1573-7"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-184.98808"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.6154501e-05"
- inkscape:transform-center-x="14.956371" />
- <text
- id="text1577-2"
- y="111.05016"
- x="633.09552"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="633.09552"
- id="tspan1575-7"
- sodipodi:role="line">plop</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhoo""
- id="g1587-2"
- style="stroke-width:2">
- <path
- inkscape:transform-center-y="-5.9989963e-06"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-216.2599"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1581-2"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="rotate(-90,746.45698,-44.543641)"
- inkscape:transform-center-x="14.956364" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="537.25018"
- y="111.05016"
- id="text1585-6"><tspan
- sodipodi:role="line"
- id="tspan1583-1"
- x="537.25018"
- y="111.05016"
- style="stroke-width:1px">mhoo</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="yodl""
- id="g1595-0"
- style="stroke-width:2">
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1589-6"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="105.17262"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:transform-center-y="-5.5023185e-06"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-x="-14.956365" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="925.82605"
- y="111.05016"
- id="text1593-1"><tspan
- sodipodi:role="line"
- id="tspan1591-5"
- x="925.82605"
- y="111.05016"
- style="stroke-width:1px">yodl</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhe""
- id="g1603-9"
- style="stroke-width:2">
- <path
- inkscape:transform-center-y="-3.3040441e-05"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="136.44444"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1597-4"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- inkscape:transform-center-x="-14.956349" />
- <text
- id="text1601-9"
- y="111.05016"
- x="842.71497"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="842.71497"
- id="tspan1599-0"
- sodipodi:role="line">mhe</tspan></text>
- </g>
- </g>
- <text
- id="text1609-9"
- y="1277.5958"
- x="115.62414"
- style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="actual_label"><tspan
- y="1277.5958"
- x="115.62414"
- sodipodi:role="line"
- style="stroke-width:0.63690436px"
- id="tspan1611-1">PAGE_LOCAL variables</tspan></text>
- <g
- id="g2387"
- inkscape:label="HMI:VarInit:42@level" />
- <g
- inkscape:label="HMI:VarInit:"a string"@paff"
- id="g2389" />
- <g
- id="g825"
- inkscape:label="HMI:VarInit:"a page string"@.piff" />
- <g
- inkscape:label="HMI:VarInit:50@.position"
- id="g906" />
- <g
- id="g908"
- inkscape:label="HMI:VarInit:100@.range" />
- <g
- inkscape:label="HMI:VarInit:7@.visibleAlarms"
- id="g906-3" />
- <use
- x="0"
- y="0"
- xlink:href="#g7994"
- id="use8000"
- transform="translate(-1380,800)"
- width="100%"
- height="100%"
- inkscape:label="HMI:Page:AlarmPage" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="-738.18359"
- y="86.260696"
- id="text2019"><tspan
- sodipodi:role="line"
- id="tspan2017"
- x="-738.18359"
- y="86.260696"
- style="fill:#ffffff;stroke-width:1px">Alarm Page</tspan></text>
- <g
- id="g1289"
- inkscape:label="HMI:JsonTable:/alarms@/ALARMNOTIFY@.range@.position@.visibleAlarms@.filter"
- transform="matrix(0.5,0,0,0.5,-1757.3465,454.4367)">
- <g
- id="g5231"
- inkscape:label="data">
- <g
- id="g1384"
- inkscape:label="[6]"
- transform="translate(52.326002,240.30067)">
- <g
- id="g901"
- inkscape:label="# commented group"
- transform="translate(419.716,-441.73566)">
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 528.62458,486.07049 23.69122,21.00809"
- id="path903"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
- <use
- x="0"
- y="0"
- xlink:href="#use1297"
- inkscape:transform-center-x="0.11123312"
- inkscape:transform-center-y="2.2824109"
- id="use1378"
- width="100%"
- height="100%"
- transform="matrix(0.7609336,0,0,0.7609336,199.15217,164.3798)"
- inkscape:label=".status onClick[acknowledge]=.alarmid" />
- <use
- transform="matrix(1.3019536,0,0,1.3019536,39.582906,238.73392)"
- x="0"
- y="0"
- xlink:href="#use913"
- id="use966"
- width="100%"
- height="100%"
- inkscape:label=".status textContent=.time"
- style="stroke-width:1.53615308" />
- <use
- inkscape:label=".status textContent=.text"
- height="100%"
- width="100%"
- id="use1832"
- xlink:href="#use913"
- y="0"
- x="0"
- transform="matrix(2,0,0,2,85.95394,349.02524)" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 972.0318,65.34292 H 2780.6604"
- id="path2238"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- inkscape:label="# separation line" />
- </g>
- <use
- inkscape:label="[5]"
- transform="translate(0,-62.914773)"
- height="100%"
- width="100%"
- id="use5200"
- xlink:href="#g1384"
- y="0"
- x="0" />
- <use
- inkscape:label="[4]"
- x="0"
- y="0"
- xlink:href="#g1384"
- id="use5202"
- width="100%"
- height="100%"
- transform="translate(0,-125.82955)" />
- <use
- inkscape:label="[3]"
- transform="translate(0,-188.74432)"
- height="100%"
- width="100%"
- id="use5204"
- xlink:href="#g1384"
- y="0"
- x="0" />
- <use
- x="0"
- y="0"
- xlink:href="#g1384"
- id="use2176"
- width="100%"
- height="100%"
- transform="translate(0,-251.65909)"
- inkscape:label="[2]" />
- <use
- inkscape:label="[1]"
- transform="translate(0,-314.57387)"
- height="100%"
- width="100%"
- id="use2178"
- xlink:href="#g1384"
- y="0"
- x="0" />
- <use
- x="0"
- y="0"
- xlink:href="#g1384"
- id="use2180"
- width="100%"
- height="100%"
- transform="translate(0,-377.48864)"
- inkscape:label="[0]" />
- </g>
- <g
- style="stroke-width:1.04184687"
- inkscape:label="action_reset"
- id="g1839-6"
- transform="matrix(2,0,0,2,-181.39997,-864.49004)">
- <g
- style="stroke-width:1.04184687"
- inkscape:label="bg"
- id="g945-7">
- <rect
- rx="26.820074"
- inkscape:label="button"
- ry="23.177595"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect943-5"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5.20923424;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- style="stroke-width:1.04184687"
- inkscape:label="text"
- id="g951-3">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.04184675px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="656.98151"
- id="text949-5"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- id="tspan947-6"
- x="1090.7626"
- y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04184675px">reset</tspan></text>
- </g>
- </g>
- </g>
- <g
- id="g1332"
- inkscape:label="polygons"
- transform="translate(-1556.6506,114.93627)">
- <path
- inkscape:transform-center-y="2.9995242"
- inkscape:transform-center-x="0.14620371"
- d="m 1081.9632,-246.81598 -27.9274,5.51725 -27.9273,5.51724 9.1856,-26.94439 9.1856,-26.94439 18.7417,21.42715 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="1.3757507"
- sodipodi:arg1="0.32855317"
- sodipodi:r2="16.43548"
- sodipodi:r1="32.87096"
- sodipodi:cy="-257.42258"
- sodipodi:cx="1050.8505"
- sodipodi:sides="3"
- id="path1298"
- style="fill:#8fbc8f;fill-opacity:1;stroke:#ff0000"
- sodipodi:type="star"
- inkscape:label="three" />
- <path
- sodipodi:type="star"
- style="fill:#ff8c00;fill-opacity:1;stroke:#ff0000"
- id="path1308"
- sodipodi:sides="4"
- sodipodi:cx="1110.8505"
- sodipodi:cy="-257.42258"
- sodipodi:r1="32.87096"
- sodipodi:r2="16.43548"
- sodipodi:arg1="0.32855317"
- sodipodi:arg2="1.1139513"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 1141.9632,-246.81598 -23.8627,4.1434 -17.8566,16.3627 -4.1434,-23.8627 -16.3627,-17.8566 23.8627,-4.1434 17.8566,-16.3627 4.1434,23.8627 z"
- inkscape:transform-center-x="0.14620371"
- inkscape:transform-center-y="2.9995242"
- inkscape:label="four" />
- <path
- inkscape:transform-center-y="2.9995242"
- inkscape:transform-center-x="0.14620371"
- d="m 1201.9632,-246.81598 -21.6446,2.82766 -9.9413,19.4333 -9.3778,-19.7114 -21.5541,-3.44949 15.8487,-15.00997 -3.3799,-21.5652 19.1728,10.43473 19.4653,-9.87854 -3.9993,21.45898 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="0.9568717"
- sodipodi:arg1="0.32855317"
- sodipodi:r2="16.43548"
- sodipodi:r1="32.87096"
- sodipodi:cy="-257.42258"
- sodipodi:cx="1170.8505"
- sodipodi:sides="5"
- id="path1310"
- style="fill:#bc8f8f;fill-opacity:1;stroke:#ff0000"
- sodipodi:type="star"
- inkscape:label="five" />
- <path
- sodipodi:type="star"
- style="fill:#f0f8ff;fill-opacity:1;stroke:#ff0000"
- id="path1312"
- sodipodi:sides="6"
- sodipodi:cx="1230.8505"
- sodipodi:cy="-257.42258"
- sodipodi:r1="32.87096"
- sodipodi:r2="16.43548"
- sodipodi:arg1="0.32855317"
- sodipodi:arg2="0.85215195"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 1261.9632,-246.81598 -20.2922,1.76437 -4.4498,19.87672 -11.674,-16.69134 -19.4387,6.08474 8.6181,-18.45571 -14.9888,-13.79198 20.2921,-1.76436 4.4498,-19.87673 11.6741,16.69134 19.4386,-6.08473 -8.6181,18.4557 z"
- inkscape:transform-center-x="0.14620371"
- inkscape:transform-center-y="2.9995242"
- inkscape:label="six" />
- </g>
- <g
- inkscape:label="HMI:List"
- id="g1311"
- transform="translate(-1396.6506,94.93627)">
- <use
- x="0"
- y="0"
- xlink:href="#path1298"
- inkscape:transform-center-x="0.14620371"
- inkscape:transform-center-y="2.9995242"
- id="use1293"
- width="100%"
- height="100%"
- transform="translate(-69.76703,100)"
- style="display:inline"
- inkscape:label="ack" />
- <use
- x="0"
- y="0"
- xlink:href="#path1308"
- inkscape:transform-center-x="0.14620371"
- inkscape:transform-center-y="2.9995242"
- id="use1295"
- width="100%"
- height="100%"
- transform="translate(-126.48474,100)"
- inkscape:label="alarm" />
- <use
- x="0"
- y="0"
- xlink:href="#path1310"
- inkscape:transform-center-x="0.14620371"
- inkscape:transform-center-y="2.9995242"
- id="use1297"
- width="100%"
- height="100%"
- transform="translate(-186.33351,100)"
- inkscape:label="active" />
- <use
- x="0"
- y="0"
- xlink:href="#path1312"
- inkscape:transform-center-x="0.14620371"
- inkscape:transform-center-y="2.9995242"
- id="use1299"
- width="100%"
- height="100%"
- transform="translate(-246.4848,100)"
- inkscape:label="disabled" />
- </g>
- <g
- transform="matrix(0.33436432,0,0,0.33436432,-584.21063,278.8185)"
- inkscape:label="HMI:Input@/ALARMNOTIFY"
- id="g5222"
- style="stroke-width:0.75594342">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text5208"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan5206"
- x="136.32812"
- y="218.24219"
- style="stroke-width:0.75594342px">8888</tspan></text>
- <path
- transform="scale(1,-1)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path5212"
- sodipodi:sides="3"
- sodipodi:cx="608.70374"
- sodipodi:cy="-209.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 660.51409,-179.34718 -103.62071,0 51.81036,-89.73817 z"
- inkscape:transform-center-y="14.956362"
- inkscape:label="-1" />
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect5214"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:label="+1"
- inkscape:transform-center-y="-14.95636"
- d="m 660.51409,142.08535 -103.62071,0 51.81036,-89.738163 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="112.17263"
- sodipodi:cx="608.70374"
- sodipodi:sides="3"
- id="path5218"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- </g>
- <g
- id="g1766"
- inkscape:label="HMI:ScrollBar@.range@.position@.visibleAlarms"
- transform="translate(9.7583007e-6)">
- <path
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path1266"
- d="m -234.01097,332.35504 21.18736,28.36866 h -42.37471 z"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.42391574px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:label="pageup" />
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.4007318px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -234.01097,686.72773 21.18736,-27.45222 h -42.37471 z"
- id="path1268"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:label="pagedown" />
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.30952382;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.03627348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1264-3"
- width="42.374725"
- height="276.64423"
- x="-255.19838"
- y="371.91068"
- rx="7.6034913"
- ry="6.8822322"
- inkscape:label="range" />
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.11429262px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1264"
- width="42.374725"
- height="82.841492"
- x="-255.19838"
- y="371.91068"
- rx="7.6034913"
- ry="7"
- inkscape:label="cursor" />
- </g>
- <g
- id="g893"
- inkscape:label="textstyles"
- transform="translate(-1566.6506,56.936266)">
- <text
- inkscape:label="red"
- id="text1382-7"
- y="-171.54395"
- x="1298.9102"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- y="-171.54395"
- x="1298.9102"
- id="tspan1380-5"
- sodipodi:role="line"
- style="stroke-width:0.5">value</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="1298.9102"
- y="-191.54395"
- id="text875"
- inkscape:label="black"><tspan
- style="fill:#000000;stroke-width:0.5"
- sodipodi:role="line"
- id="tspan873"
- x="1298.9102"
- y="-191.54395">value</tspan></text>
- <text
- inkscape:label="green"
- id="text879"
- y="-211.54395"
- x="1298.9102"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#00ff00;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- y="-211.54395"
- x="1298.9102"
- id="tspan877"
- sodipodi:role="line"
- style="fill:#00ff00;stroke-width:0.5">value</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="1298.9102"
- y="-231.54395"
- id="text883"
- inkscape:label="gray"><tspan
- style="fill:#999999;stroke-width:0.5"
- sodipodi:role="line"
- id="tspan881"
- x="1298.9102"
- y="-231.54395">value</tspan></text>
- </g>
- <g
- id="g907"
- inkscape:label="HMI:TextStyleList"
- transform="translate(-990.65059,102.93627)">
- <use
- x="0"
- y="0"
- xlink:href="#text879"
- id="use913"
- width="100%"
- height="100%"
- transform="translate(-573,60.999998)"
- inkscape:label="active" />
- <use
- x="0"
- y="0"
- xlink:href="#text875"
- id="use911"
- width="100%"
- height="100%"
- transform="translate(-573,40.999998)"
- inkscape:label="ack" />
- <use
- x="0"
- y="0"
- xlink:href="#text1382-7"
- id="use909"
- width="100%"
- height="100%"
- transform="translate(-573,20.999998)"
- inkscape:label="alarm" />
- <use
- x="0"
- y="0"
- xlink:href="#text883"
- id="use915"
- width="100%"
- height="100%"
- transform="translate(-573,80.999998)"
- inkscape:label="disabled" />
- </g>
- <g
- transform="matrix(0.33436432,0,0,0.33436432,-1048.7703,278.8185)"
- inkscape:label="HMI:Input@.range"
- id="g5222-3"
- style="stroke-width:0.75594342">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text5208-6"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan5206-7"
- x="136.32812"
- y="218.24219"
- style="stroke-width:0.75594342px">8888</tspan></text>
- <path
- transform="scale(1,-1)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path5212-5"
- sodipodi:sides="3"
- sodipodi:cx="620.66675"
- sodipodi:cy="-209.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 672.4771,-179.34718 -103.62071,0 51.81036,-89.73817 z"
- inkscape:transform-center-y="14.956362"
- inkscape:label="-1" />
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect5214-3"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:label="+1"
- inkscape:transform-center-y="-14.95636"
- d="m 672.4771,142.08535 -103.62071,0 51.81036,-89.738163 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="112.17263"
- sodipodi:cx="620.66675"
- sodipodi:sides="3"
- id="path5218-5"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- </g>
- <g
- transform="matrix(0.33436432,0,0,0.33436432,-816.49047,278.8185)"
- inkscape:label="HMI:Input@.position"
- id="g5222-6"
- style="stroke-width:0.75594342">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text5208-2"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan5206-9"
- x="136.32812"
- y="218.24219"
- style="stroke-width:0.75594342px">8888</tspan></text>
- <path
- transform="scale(1,-1)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path5212-1"
- sodipodi:sides="3"
- sodipodi:cx="608.70374"
- sodipodi:cy="-209.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 660.51409,-179.34718 -103.62071,0 51.81036,-89.73817 z"
- inkscape:transform-center-y="14.956362"
- inkscape:label="-1" />
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect5214-2"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:label="+1"
- inkscape:transform-center-y="-14.95636"
- d="m 660.51409,142.08535 -103.62071,0 51.81036,-89.738163 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="112.17263"
- sodipodi:cx="608.70374"
- sodipodi:sides="3"
- id="path5218-7"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="-935.5838"
- y="291.8042"
- id="text887"><tspan
- sodipodi:role="line"
- id="tspan885"
- x="-935.5838"
- y="291.8042"
- style="fill:#ffffff;stroke-width:1px">range</tspan></text>
- <text
- id="text891"
- y="291.8042"
- x="-702.87115"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- style="fill:#ffffff;stroke-width:1px"
- y="291.8042"
- x="-702.87115"
- id="tspan889"
- sodipodi:role="line">position</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="-471.33417"
- y="291.8042"
- id="text895"><tspan
- sodipodi:role="line"
- id="tspan893"
- x="-471.33417"
- y="291.8042"
- style="fill:#ffffff;stroke-width:1px">notify</tspan></text>
- <g
- style="stroke-width:2"
- inkscape:label="HMI:Input@/ALARMTEXT"
- id="g1442-3"
- transform="matrix(0.5,0,0,0.5,-915.0529,113.05833)">
- <rect
- inkscape:label="edit"
- onclick=""
- y="77.265099"
- x="-648.04266"
- height="179.83517"
- width="1195.5988"
- id="rect1400-5"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cacaca;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- ry="36.786537" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#0e0e0e;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="545.95312"
- y="218.24219"
- id="text1398-6"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1396-7"
- x="545.95312"
- y="218.24219"
- style="text-align:end;text-anchor:end;fill:#0e0e0e;fill-opacity:1;stroke-width:2px">8888</tspan></text>
- </g>
- <g
- style="stroke-width:1.04184687"
- inkscape:label="HMI:Input@/SENDALARM"
- id="g953"
- transform="translate(-1386.3329,-450.57041)">
- <g
- id="g1839"
- inkscape:label="+1">
- <g
- id="g945"
- inkscape:label="bg"
- style="stroke-width:1.04184687">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5.20923424;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect943"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="23.177595"
- inkscape:label="button"
- rx="26.820074" />
- </g>
- <g
- id="g951"
- inkscape:label="text"
- style="stroke-width:1.04184687">
- <text
- inkscape:label="setting_jmp"
- id="text949"
- y="656.98151"
- x="1090.7626"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.04184675px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04184675px"
- y="656.98151"
- x="1090.7626"
- id="tspan947"
- sodipodi:role="line">trigger</tspan></text>
- </g>
- </g>
- </g>
- <g
- style="stroke-width:2"
- inkscape:label="HMI:Input@/ALARMSTATUS"
- id="g1887"
- transform="matrix(0.28590269,0,0,0.28590269,-631.94615,129.07897)">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:148.39013672px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.99999988px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="329.13501"
- y="214.01605"
- id="text1843"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1841"
- x="329.13501"
- y="214.01605"
- style="text-align:center;text-anchor:middle;stroke-width:1.99999988px">8888</tspan></text>
- <g
- style="stroke-width:1.09375393"
- id="g1853"
- inkscape:label="="ack""
- transform="matrix(1.8285648,0,0,1.8285648,-936.17681,115.40643)">
- <path
- inkscape:connector-curvature="0"
- id="path1847"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1851"
- y="112.62867"
- x="738.57678"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.54687697px"
- y="112.62867"
- x="738.57678"
- id="tspan1849"
- sodipodi:role="line">ack</tspan></text>
- </g>
- <g
- style="stroke-width:1.09375393"
- id="g1861"
- inkscape:label="="disabled""
- transform="matrix(1.8285648,0,0,1.8285648,-1012.4359,109.57379)">
- <path
- inkscape:connector-curvature="0"
- id="path1847-7"
- d="m 738.52607,148.37593 -80.6293,0.60214 -0.6021,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="656.177"
- y="115.81841"
- id="text1859"><tspan
- sodipodi:role="line"
- id="tspan1857"
- x="656.177"
- y="115.81841"
- style="stroke-width:0.54687697px">disabled</tspan></text>
- </g>
- <g
- style="stroke-width:1.09375393"
- id="g1869"
- inkscape:label="="active""
- transform="matrix(1.8285648,0,0,1.8285648,-998.18055,84.666267)">
- <path
- inkscape:connector-curvature="0"
- id="path1847-5"
- d="m 630.35651,161.99728 -80.6293,0.60214 -0.6021,-80.629287 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1867"
- y="129.43976"
- x="559.26227"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.54687697px"
- y="129.43976"
- x="559.26227"
- id="tspan1865"
- sodipodi:role="line">active</tspan></text>
- </g>
- <g
- style="stroke-width:1.09375393"
- id="g1877"
- inkscape:label="="alarm""
- transform="matrix(1.8285648,0,0,1.8285648,-1114.212,118.29284)">
- <path
- inkscape:connector-curvature="0"
- id="path1847-3"
- d="m 994.91832,143.60768 -80.62931,0.60214 -0.6021,-80.629285 80.62931,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1875"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.54687697px"
- y="111.05016"
- x="925.82605"
- id="tspan1873"
- sodipodi:role="line">alarm</tspan></text>
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="-926.47461"
- y="134.36742"
- id="text2019-9"><tspan
- sodipodi:role="line"
- id="tspan2017-2"
- x="-926.47461"
- y="134.36742"
- style="fill:#ffffff;stroke-width:1px">Alarm Text</tspan></text>
- <text
- id="text2174"
- y="134.36742"
- x="-546.47461"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- style="fill:#ffffff;stroke-width:1px"
- y="134.36742"
- x="-546.47461"
- id="tspan2172"
- sodipodi:role="line">Status</tspan></text>
- <g
- transform="matrix(0.57180538,0,0,0.57180538,326.35945,-231.48695)"
- inkscape:label="HMI:Jump:AlarmPage"
- id="g2198">
- <g
- inkscape:label="button"
- id="g2190">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect2188"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- rx="35.579063" />
- </g>
- <g
- inkscape:label="text"
- id="g2196">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="656.98151"
- id="text2194"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- id="tspan2192"
- x="1090.7626"
- y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Alarms</tspan></text>
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="628.18188"
- y="242.50345"
- id="text889"
- inkscape:label="HMI:Display@/PUMP0/FLOATING"><tspan
- sodipodi:role="line"
- id="tspan887"
- x="628.18188"
- y="242.50345"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
- <g
- style="stroke-width:0.75594342"
- id="g900"
- inkscape:label="HMI:Input@.filter"
- transform="matrix(0.33436432,0,0,0.33436432,-1288.7703,278.8185)">
- <text
- inkscape:label="value"
- id="text892"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.75594342px"
- y="218.24219"
- x="136.32812"
- id="tspan890"
- sodipodi:role="line">8888</tspan></text>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect896"
- width="615.05096"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- </g>
- <text
- id="text904"
- y="291.8042"
- x="-1175.5837"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- style="fill:#ffffff;stroke-width:1px"
- y="291.8042"
- x="-1175.5837"
- id="tspan902"
- sodipodi:role="line">filter</tspan></text>
- <g
- id="g909"
- inkscape:label="HMI:VarInit:"POS"@.filter" />
- <g
- transform="matrix(0.14295135,0,0,0.14295135,449.21833,37.615184)"
- id="g4646"
- inkscape:label="HMI:Input@paff"
- style="stroke-width:4">
- <text
- inkscape:label="value"
- id="text4602"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:4px"
- y="218.24219"
- x="136.32812"
- id="tspan4600"
- sodipodi:role="line">8888</tspan></text>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4604"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="+"dhu""
- id="g4612"
- style="stroke-width:4">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:transform-center-y="-14.956361"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- id="path4606"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="733.58197"
- y="111.05016"
- id="text4610"><tspan
- sodipodi:role="line"
- id="tspan4608"
- x="733.58197"
- y="111.05016"
- style="stroke-width:2px">dhu</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="plop""
- id="g4620"
- style="stroke-width:4">
- <path
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path4614"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-184.98808"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.6154501e-05"
- inkscape:transform-center-x="14.956371" />
- <text
- id="text4618"
- y="111.05016"
- x="633.09552"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="633.09552"
- id="tspan4616"
- sodipodi:role="line">plop</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhoo""
- id="g4628"
- style="stroke-width:4">
- <path
- inkscape:transform-center-y="-5.9989963e-06"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-216.2599"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path4622"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="rotate(-90,746.45698,-44.543641)"
- inkscape:transform-center-x="14.956364" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="537.25018"
- y="111.05016"
- id="text4626"><tspan
- sodipodi:role="line"
- id="tspan4624"
- x="537.25018"
- y="111.05016"
- style="stroke-width:2px">mhoo</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="yodl""
- id="g4636"
- style="stroke-width:4">
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path4630"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="105.17262"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:transform-center-y="-5.5023185e-06"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-x="-14.956365" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="925.82605"
- y="111.05016"
- id="text4634"><tspan
- sodipodi:role="line"
- id="tspan4632"
- x="925.82605"
- y="111.05016"
- style="stroke-width:2px">yodl</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhe""
- id="g4644"
- style="stroke-width:4">
- <path
- inkscape:transform-center-y="-3.3040441e-05"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="136.44444"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path4638"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- inkscape:transform-center-x="-14.956349" />
- <text
- id="text4642"
- y="111.05016"
- x="842.71497"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="842.71497"
- id="tspan4640"
- sodipodi:role="line">mhe</tspan></text>
- </g>
- </g>
- <g
- style="stroke-width:4"
- inkscape:label="HMI:Input@.piff"
- id="g4694"
- transform="matrix(0.14295135,0,0,0.14295135,449.21833,97.61518)">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text4650"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan4648"
- x="136.32812"
- y="218.24219"
- style="stroke-width:4px">8888</tspan></text>
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect4652"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- style="stroke-width:4"
- id="g4660"
- inkscape:label="+"dhu""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:connector-curvature="0"
- id="path4654"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4658"
- y="111.05016"
- x="733.58197"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="733.58197"
- id="tspan4656"
- sodipodi:role="line">dhu</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g4668"
- inkscape:label="="plop""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956371"
- inkscape:transform-center-y="-3.6154501e-05"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path4662"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="633.09552"
- y="111.05016"
- id="text4666"><tspan
- sodipodi:role="line"
- id="tspan4664"
- x="633.09552"
- y="111.05016"
- style="stroke-width:2px">plop</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g4676"
- inkscape:label="="mhoo""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956364"
- transform="rotate(-90,746.45698,-44.543641)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path4670"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="-5.9989963e-06" />
- <text
- id="text4674"
- y="111.05016"
- x="537.25018"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="537.25018"
- id="tspan4672"
- sodipodi:role="line">mhoo</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g4684"
- inkscape:label="="yodl""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956365"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-y="-5.5023185e-06"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path4678"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <text
- id="text4682"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="925.82605"
- id="tspan4680"
- sodipodi:role="line">yodl</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g4692"
- inkscape:label="="mhe""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956349"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path4686"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.3040441e-05" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="842.71497"
- y="111.05016"
- id="text4690"><tspan
- sodipodi:role="line"
- id="tspan4688"
- x="842.71497"
- y="111.05016"
- style="stroke-width:2px">mhe</tspan></text>
- </g>
- </g>
- <g
- id="g7994"
- inkscape:label="Gray Page Template">
- <rect
- y="-800"
- x="0"
- height="720"
- width="1280"
- id="rect4270"
- style="color:#000000;fill:#4d4d4d" />
- <g
- id="g4282"
- inkscape:label="HMI:Jump:Home"
- transform="translate(-10.6526,-2134.1633)">
- <g
- id="g4274"
- inkscape:label="button">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
- id="path4272"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cssssccc" />
- </g>
- <g
- id="g4280"
- inkscape:label="text">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="1436.9814"
- id="text4278"
- inkscape:label="home_jmp"><tspan
- sodipodi:role="line"
- id="tspan4276"
- x="1090.7626"
- y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
- </g>
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="1905.4562"
- y="2520.5203"
- id="text3613"><tspan
- sodipodi:role="line"
- id="tspan3611"
- x="1905.4562"
- y="2538.2156"
- style="stroke-width:0.5" /></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- x="2852.2148"
- y="1710.4241"
- id="text10521-7"><tspan
- sodipodi:role="line"
- id="tspan10519-6"
- x="2852.2148"
- y="1745.8147" /></text>
- <use
- inkscape:label="HMI:Page:AlarmPage2"
- height="100%"
- width="100%"
- transform="translate(-1380,1580)"
- id="use938"
- xlink:href="#g7994"
- y="0"
- x="0" />
- <text
- id="text942"
- y="866.26068"
- x="-738.18359"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- style="fill:#ffffff;stroke-width:1px"
- y="866.26068"
- x="-738.18359"
- id="tspan940"
- sodipodi:role="line">Alarm Page 2</tspan></text>
- <g
- transform="matrix(0.5,0,0,0.5,-1757.3465,1234.4367)"
- inkscape:label="HMI:JsonTable:/alarms@/ALARMNOTIFY@.range@.position@.visibleAlarms@.filter"
- id="g973">
- <g
- inkscape:label="data"
- id="g971">
- <g
- transform="translate(52.326002,240.30067)"
- inkscape:label="[5]"
- id="g956">
- <g
- transform="translate(419.716,-441.73566)"
- inkscape:label="# commented group"
- id="g946">
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path944"
- d="m 528.62458,486.07049 23.69122,21.00809"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- <use
- inkscape:label=".status onClick[acknowledge]=.alarmid"
- transform="matrix(0.7609336,0,0,0.7609336,199.15217,164.3798)"
- height="100%"
- width="100%"
- id="use948"
- inkscape:transform-center-y="2.2824109"
- inkscape:transform-center-x="0.11123312"
- xlink:href="#use1297"
- y="0"
- x="0" />
- <use
- style="stroke-width:1.53615308"
- inkscape:label=".status textContent=.time"
- height="100%"
- width="100%"
- id="use950"
- xlink:href="#use913"
- y="0"
- x="0"
- transform="matrix(1.3019536,0,0,1.3019536,39.582906,238.73392)" />
- <use
- transform="matrix(2,0,0,2,85.95394,349.02524)"
- x="0"
- y="0"
- xlink:href="#use913"
- id="use952"
- width="100%"
- height="100%"
- inkscape:label=".status textContent=.text" />
- <path
- inkscape:label="# separation line"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path954"
- d="M 972.0318,65.34292 H 2780.6604"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- <use
- x="0"
- y="0"
- xlink:href="#g956"
- id="use1145"
- width="100%"
- height="100%"
- transform="translate(0,-80)"
- inkscape:label="[4]" />
- <use
- transform="translate(0,-160)"
- height="100%"
- width="100%"
- id="use1147"
- xlink:href="#g956"
- y="0"
- x="0"
- inkscape:label="[3]" />
- <use
- x="0"
- y="0"
- xlink:href="#g956"
- id="use1149"
- width="100%"
- height="100%"
- transform="translate(0,-240)"
- inkscape:label="[2]" />
- <use
- transform="translate(0,-320)"
- height="100%"
- width="100%"
- id="use1151"
- xlink:href="#g956"
- y="0"
- x="0"
- inkscape:label="[1]" />
- <use
- x="0"
- y="0"
- xlink:href="#g956"
- id="use1153"
- width="100%"
- height="100%"
- transform="translate(0,-400)"
- inkscape:label="[0]" />
- </g>
- </g>
- <g
- style="stroke-width:0.75594342"
- id="g986"
- inkscape:label="HMI:Input@/ALARMNOTIFY"
- transform="matrix(0.33436432,0,0,0.33436432,-584.21063,1058.8185)">
- <text
- inkscape:label="value"
- id="text978"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.75594342px"
- y="218.24219"
- x="136.32812"
- id="tspan976"
- sodipodi:role="line">8888</tspan></text>
- <path
- inkscape:label="-1"
- inkscape:transform-center-y="14.956362"
- d="m 660.51409,-179.34718 -103.62071,0 51.81036,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-209.2599"
- sodipodi:cx="608.70374"
- sodipodi:sides="3"
- id="path980"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="scale(1,-1)" />
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect982"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path984"
- sodipodi:sides="3"
- sodipodi:cx="608.70374"
- sodipodi:cy="112.17263"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 660.51409,142.08535 -103.62071,0 51.81036,-89.738163 z"
- inkscape:transform-center-y="-14.95636"
- inkscape:label="+1" />
- </g>
- <g
- style="stroke-width:0.75594342"
- id="g1012"
- inkscape:label="HMI:Input@.range"
- transform="matrix(0.33436432,0,0,0.33436432,-1048.7703,1058.8185)">
- <text
- inkscape:label="value"
- id="text1004"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.75594342px"
- y="218.24219"
- x="136.32812"
- id="tspan1002"
- sodipodi:role="line">8888</tspan></text>
- <path
- inkscape:label="-1"
- inkscape:transform-center-y="14.956362"
- d="m 672.4771,-179.34718 -103.62071,0 51.81036,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-209.2599"
- sodipodi:cx="620.66675"
- sodipodi:sides="3"
- id="path1006"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="scale(1,-1)" />
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1008"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1010"
- sodipodi:sides="3"
- sodipodi:cx="620.66675"
- sodipodi:cy="112.17263"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 672.4771,142.08535 -103.62071,0 51.81036,-89.738163 z"
- inkscape:transform-center-y="-14.95636"
- inkscape:label="+1" />
- </g>
- <g
- style="stroke-width:0.75594342"
- id="g1025"
- inkscape:label="HMI:Input@.position"
- transform="matrix(0.33436432,0,0,0.33436432,-816.49047,1058.8185)">
- <text
- inkscape:label="value"
- id="text1016"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.75594342px"
- y="218.24219"
- x="136.32812"
- id="tspan1014"
- sodipodi:role="line">8888</tspan></text>
- <path
- inkscape:label="-1"
- inkscape:transform-center-y="14.956362"
- d="m 660.51409,-179.34718 -103.62071,0 51.81036,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-209.2599"
- sodipodi:cx="608.70374"
- sodipodi:sides="3"
- id="path1018"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="scale(1,-1)" />
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1021"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1023"
- sodipodi:sides="3"
- sodipodi:cx="608.70374"
- sodipodi:cy="112.17263"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 660.51409,142.08535 -103.62071,0 51.81036,-89.738163 z"
- inkscape:transform-center-y="-14.95636"
- inkscape:label="+1" />
- </g>
- <text
- id="text1029"
- y="1071.8042"
- x="-935.5838"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- style="fill:#ffffff;stroke-width:1px"
- y="1071.8042"
- x="-935.5838"
- id="tspan1027"
- sodipodi:role="line">range</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="-702.87115"
- y="1071.8042"
- id="text1033"><tspan
- sodipodi:role="line"
- id="tspan1031"
- x="-702.87115"
- y="1071.8042"
- style="fill:#ffffff;stroke-width:1px">position</tspan></text>
- <text
- id="text1037"
- y="1071.8042"
- x="-471.33417"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- style="fill:#ffffff;stroke-width:1px"
- y="1071.8042"
- x="-471.33417"
- id="tspan1035"
- sodipodi:role="line">notify</tspan></text>
- <g
- transform="matrix(0.5,0,0,0.5,-915.0529,893.05833)"
- id="g1045"
- inkscape:label="HMI:Input@/ALARMTEXT"
- style="stroke-width:2">
- <rect
- ry="36.786537"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cacaca;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1039"
- width="1195.5988"
- height="179.83517"
- x="-648.04266"
- y="77.265099"
- onclick=""
- inkscape:label="edit" />
- <text
- inkscape:label="value"
- id="text1043"
- y="218.24219"
- x="545.95312"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#0e0e0e;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:end;text-anchor:end;fill:#0e0e0e;fill-opacity:1;stroke-width:2px"
- y="218.24219"
- x="545.95312"
- id="tspan1041"
- sodipodi:role="line">8888</tspan></text>
- </g>
- <g
- transform="translate(-1386.3329,329.42959)"
- id="g1059"
- inkscape:label="HMI:Input@/SENDALARM"
- style="stroke-width:1.04184687">
- <g
- inkscape:label="+1"
- id="g1057">
- <g
- style="stroke-width:1.04184687"
- inkscape:label="bg"
- id="g1049">
- <rect
- rx="26.820074"
- inkscape:label="button"
- ry="23.177595"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect1047"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5.20923424;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- style="stroke-width:1.04184687"
- inkscape:label="text"
- id="g1055">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.04184675px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="656.98151"
- id="text1053"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- id="tspan1051"
- x="1090.7626"
- y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04184675px">trigger</tspan></text>
- </g>
- </g>
- </g>
- <g
- transform="matrix(0.28590269,0,0,0.28590269,-631.94615,909.07897)"
- id="g1099"
- inkscape:label="HMI:Input@/ALARMSTATUS"
- style="stroke-width:2">
- <text
- inkscape:label="value"
- id="text1064"
- y="214.01605"
- x="329.13501"
- style="font-style:normal;font-weight:normal;font-size:148.39013672px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.99999988px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;stroke-width:1.99999988px"
- y="214.01605"
- x="329.13501"
- id="tspan1062"
- sodipodi:role="line">8888</tspan></text>
- <g
- transform="matrix(1.8285648,0,0,1.8285648,-936.17681,115.40643)"
- inkscape:label="="ack""
- id="g1072"
- style="stroke-width:1.09375393">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:transform-center-y="-14.956361"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- id="path1066"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="738.57678"
- y="112.62867"
- id="text1070"><tspan
- sodipodi:role="line"
- id="tspan1068"
- x="738.57678"
- y="112.62867"
- style="stroke-width:0.54687697px">ack</tspan></text>
- </g>
- <g
- transform="matrix(1.8285648,0,0,1.8285648,-1012.4359,109.57379)"
- inkscape:label="="disabled""
- id="g1080"
- style="stroke-width:1.09375393">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:transform-center-y="-14.956361"
- d="m 738.52607,148.37593 -80.6293,0.60214 -0.6021,-80.629288 80.6293,-0.60214 z"
- id="path1074"
- inkscape:connector-curvature="0" />
- <text
- id="text1078"
- y="115.81841"
- x="656.177"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.54687697px"
- y="115.81841"
- x="656.177"
- id="tspan1076"
- sodipodi:role="line">disabled</tspan></text>
- </g>
- <g
- transform="matrix(1.8285648,0,0,1.8285648,-998.18055,84.666267)"
- inkscape:label="="active""
- id="g1088"
- style="stroke-width:1.09375393">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:transform-center-y="-14.956361"
- d="m 630.35651,161.99728 -80.6293,0.60214 -0.6021,-80.629287 80.6293,-0.60214 z"
- id="path1082"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="559.26227"
- y="129.43976"
- id="text1086"><tspan
- sodipodi:role="line"
- id="tspan1084"
- x="559.26227"
- y="129.43976"
- style="stroke-width:0.54687697px">active</tspan></text>
- </g>
- <g
- transform="matrix(1.8285648,0,0,1.8285648,-1114.212,118.29284)"
- inkscape:label="="alarm""
- id="g1097"
- style="stroke-width:1.09375393">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:transform-center-y="-14.956361"
- d="m 994.91832,143.60768 -80.62931,0.60214 -0.6021,-80.629285 80.62931,-0.60214 z"
- id="path1090"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="925.82605"
- y="111.05016"
- id="text1094"><tspan
- sodipodi:role="line"
- id="tspan1092"
- x="925.82605"
- y="111.05016"
- style="stroke-width:0.54687697px">alarm</tspan></text>
- </g>
- </g>
- <text
- id="text1103"
- y="914.36743"
- x="-926.47461"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- style="fill:#ffffff;stroke-width:1px"
- y="914.36743"
- x="-926.47461"
- id="tspan1101"
- sodipodi:role="line">Alarm Text</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="-546.47461"
- y="914.36743"
- id="text1107"><tspan
- sodipodi:role="line"
- id="tspan1105"
- x="-546.47461"
- y="914.36743"
- style="fill:#ffffff;stroke-width:1px">Status</tspan></text>
- <g
- transform="matrix(0.33436432,0,0,0.33436432,-1288.7703,1058.8185)"
- inkscape:label="HMI:Input@.filter"
- id="g1115"
- style="stroke-width:0.75594342">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text1111"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1109"
- x="136.32812"
- y="218.24219"
- style="stroke-width:0.75594342px">8888</tspan></text>
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="615.05096"
- id="rect1113"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="-1175.5837"
- y="1071.8042"
- id="text1119"><tspan
- sodipodi:role="line"
- id="tspan1117"
- x="-1175.5837"
- y="1071.8042"
- style="fill:#ffffff;stroke-width:1px">filter</tspan></text>
- <g
- id="g1131"
- inkscape:label="HMI:Jump:AlarmPage2"
- transform="matrix(0.57180538,0,0,0.57180538,-1914.3456,-318.69327)">
- <g
- id="g1123"
- inkscape:label="button">
- <rect
- rx="35.579063"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1121"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- id="g1129"
- inkscape:label="text">
- <text
- inkscape:label="setting_jmp"
- id="text1127"
- y="656.98151"
- x="1090.7626"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="656.98151"
- x="1090.7626"
- id="tspan1125"
- sodipodi:role="line">Alarms2</tspan></text>
- </g>
- </g>
- <g
- id="g1143"
- inkscape:label="HMI:Jump:AlarmPage"
- transform="matrix(0.57180538,0,0,0.57180538,-1915.7751,459.87722)">
- <g
- id="g1135"
- inkscape:label="button">
- <rect
- rx="35.579063"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1133"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- id="g1141"
- inkscape:label="text">
- <text
- inkscape:label="setting_jmp"
- id="text1139"
- y="656.98151"
- x="1090.7626"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="656.98151"
- x="1090.7626"
- id="tspan1137"
- sodipodi:role="line">Alarms</tspan></text>
- </g>
- </g>
- <g
- inkscape:label="HMI:ScrollBar@.range@.position@.visibleAlarms"
- id="g1165"
- transform="translate(-2.4169924e-7,779.99999)">
- <path
- inkscape:label="pageup"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.42391574px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -234.01097,332.35504 21.18736,28.36866 h -42.37471 z"
- id="path1157"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
- <path
- inkscape:label="pagedown"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path1159"
- d="m -234.01097,686.72773 21.18736,-27.45222 h -42.37471 z"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.4007318px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <rect
- inkscape:label="range"
- ry="6.8822322"
- rx="7.6034913"
- y="371.91068"
- x="-255.19838"
- height="276.64423"
- width="42.374725"
- id="rect1161"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.30952382;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.03627348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <rect
- inkscape:label="cursor"
- ry="7"
- rx="7.6034913"
- y="371.91068"
- x="-255.19838"
- height="82.841492"
- width="42.374725"
- id="rect1163"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.11429262px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.25px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1569.0527"
- y="594.56055"
- id="text1042"
- inkscape:label="HMI:Display@page_node"><tspan
- sodipodi:role="line"
- id="tspan1040"
- x="1569.0527"
- y="594.56055"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.25px">page node</tspan></text>
- <g
- transform="matrix(0.57180538,0,0,0.57180538,165.58244,517.80347)"
- id="g443-9"
- inkscape:label="HMI:ToggleButton@/PUMP0/BOOLIN"
- style="stroke-width:1">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect5492-7"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="23.930969"
- inkscape:label="inactive"
- rx="23.930969" />
- <rect
- rx="23.930969"
- inkscape:label="active"
- ry="23.930969"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect433-5"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fdfdfd;fill-opacity:1;fill-rule:nonzero;stroke:#ffd0b2;stroke-width:28.60938263;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- style="stroke-width:1"
- inkscape:label="text"
- id="g952-3">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="656.98151"
- id="text950-8"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- id="tspan948-8"
- x="1090.7626"
- y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">up</tspan></text>
- </g>
- </g>
- <rect
- inkscape:label="HMI:Page:DropDownPage"
- y="780"
- x="1480"
- height="720"
- width="1280"
- id="rect1081"
- style="color:#000000;fill:#4d4d4d" />
- <g
- style="stroke-width:0.35083869"
- transform="matrix(0.81491208,0,0,0.81491208,1123.6641,269.69509)"
- inkscape:label="HMI:DropDown@/SELECTION"
- id="g1093">
- <rect
- inkscape:label="box"
- ry="2.4558709"
- rx="2.4558709"
- y="923.98993"
- x="864.00842"
- height="130.9433"
- width="391.99988"
- id="rect1083"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#53676c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419331;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1085"
- width="391.99988"
- height="92.71212"
- x="864.00842"
- y="943.10553"
- rx="2.4558709"
- ry="2.4558709"
- inkscape:label="highlight" />
- <path
- inkscape:label="button"
- inkscape:transform-center-y="10.92088"
- d="m 1200.5,1018.6835 -18.9155,-32.76262 -18.9155,-32.76264 37.831,0 37.831,0 -18.9155,32.76264 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="2.6179939"
- sodipodi:arg1="1.5707963"
- sodipodi:r2="21.841761"
- sodipodi:r1="43.683521"
- sodipodi:cy="975"
- sodipodi:cx="1200.5"
- sodipodi:sides="3"
- id="path1091"
- style="opacity:1;vector-effect:none;fill:#a7a5a6;fill-opacity:1;stroke:none;stroke-width:0.12376806;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:type="star" />
- <use
- transform="matrix(1.0859809,0,0,1.0859809,-531.04917,1248.2618)"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d42aff;fill-opacity:1;stroke:none;stroke-width:1.40335476px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="0"
- y="0"
- xlink:href="#text879-6"
- id="use1109"
- width="100%"
- height="100%"
- inkscape:label="text" />
- </g>
- <g
- id="g4282-3"
- inkscape:label="HMI:Jump:Home"
- transform="translate(1463.5642,-564.57759)">
- <g
- id="g4274-6"
- inkscape:label="button">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
- id="path4272-7"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cssssccc" />
- </g>
- <g
- id="g4280-5"
- inkscape:label="text">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="1436.9814"
- id="text4278-3"
- inkscape:label="home_jmp"><tspan
- sodipodi:role="line"
- id="tspan4276-5"
- x="1090.7626"
- y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
- </g>
- </g>
- <g
- transform="matrix(0.57180538,0,0,0.57180538,512.09037,-234.29183)"
- inkscape:label="HMI:Jump:DropDownPage"
- id="g2198-6">
- <g
- inkscape:label="button"
- id="g2190-2">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect2188-9"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- rx="35.579063" />
- </g>
- <g
- inkscape:label="text"
- id="g2196-1">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="656.98151"
- id="text2194-2"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- id="tspan2192-7"
- x="1090.7626"
- y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">DropDown</tspan></text>
- </g>
- </g>
- <g
- id="g893-0"
- inkscape:label="HMI:TextList:TestTextList"
- transform="matrix(3.539916,0,0,3.539916,-1740.4841,1980.5529)"
- style="stroke-width:0.28249258">
- <text
- inkscape:label="Trois"
- id="text1382-7-9"
- y="-171.54395"
- x="1298.9102"
- xml:space="preserve"
- style="stroke-width:0.28249258"><tspan
- y="-171.54395"
- x="1298.9102"
- id="tspan1380-5-3"
- sodipodi:role="line"
- style="stroke-width:0.28249258">Three</tspan></text>
- <text
- xml:space="preserve"
- x="1298.9102"
- y="-191.54395"
- id="text875-6"
- inkscape:label="Deux"
- style="stroke-width:0.28249258"><tspan
- sodipodi:role="line"
- id="tspan873-0"
- x="1298.9102"
- y="-191.54395"
- style="stroke-width:0.28249258">Two</tspan></text>
- <text
- inkscape:label="Un"
- id="text879-6"
- y="-211.54395"
- x="1298.9102"
- xml:space="preserve"
- style="stroke-width:0.28249258"><tspan
- y="-211.54395"
- x="1298.9102"
- id="tspan877-2"
- sodipodi:role="line"
- style="stroke-width:0.28249258">One</tspan></text>
- <text
- xml:space="preserve"
- x="1298.9102"
- y="-231.54395"
- id="text883-6"
- inkscape:label="Zero"
- style="stroke-width:0.28249258"><tspan
- sodipodi:role="line"
- id="tspan881-1"
- x="1298.9102"
- y="-231.54395"
- style="stroke-width:0.28249258">Zero</tspan></text>
- </g>
- <g
- transform="matrix(0.28590269,0,0,0.28590269,1653.6069,1022.1289)"
- id="g1120"
- inkscape:label="HMI:Input@/SELECTION">
- <text
- inkscape:label="value"
- id="text1110"
- y="218.24219"
- x="216.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:end;text-anchor:end;stroke-width:1px"
- y="218.24219"
- x="216.32812"
- id="tspan1108"
- sodipodi:role="line">8</tspan></text>
- <path
- inkscape:label="-1"
- inkscape:transform-center-y="7.4781812"
- d="m 302.6459,-210.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-224.98808"
- sodipodi:cx="276.74072"
- sodipodi:sides="3"
- id="path1112"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="scale(1,-1)" />
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1114"
- width="407.7037"
- height="128"
- x="-174.94055"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1116"
- sodipodi:sides="3"
- sodipodi:cx="276.74072"
- sodipodi:cy="96.444443"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 302.6459,111.4008 -51.81035,0 25.90517,-44.869079 z"
- inkscape:transform-center-y="-7.4781804"
- inkscape:label="+1" />
- <path
- inkscape:transform-center-x="1.0089177e-06"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1118"
- sodipodi:sides="4"
- sodipodi:cx="276.74072"
- sodipodi:cy="160.71626"
- sodipodi:r1="41.281136"
- sodipodi:r2="21.657967"
- sodipodi:arg1="0.77793027"
- sodipodi:arg2="1.5633284"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 306.14807,189.68763 -58.37872,0.43598 -0.43597,-58.37872 58.37871,-0.43597 z"
- inkscape:transform-center-y="-10.828983"
- inkscape:label="=0" />
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:80px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.99999988px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1165.3422"
- y="-584.62439"
- id="text1129"
- inkscape:label="HMI:Display@/PUMP0/SLOTH"
- transform="rotate(90)"><tspan
- sodipodi:role="line"
- x="1165.3422"
- y="-584.62439"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.99999988px"
- id="tspan1127">000</tspan></text>
- <text
- inkscape:label="HMI:Display@/PUMP0/SLOTH"
- id="text4517"
- y="455.53851"
- x="388.12311"
- style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.57180536px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- id="tspan4515"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.57180536px"
- y="455.53851"
- x="388.12311"
- sodipodi:role="line">000</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.57180536px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="848.12311"
- y="415.53851"
- id="text703"
- inkscape:label="HMI:Display@level"><tspan
- sodipodi:role="line"
- x="848.12311"
- y="415.53851"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.57180536px"
- id="tspan701">000</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="2057.6001"
- y="606.89435"
- id="text1332"
- inkscape:label="HMI:Display@/PUMP0/SLOTH"><tspan
- sodipodi:role="line"
- x="2057.6001"
- y="606.89435"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- id="tspan1330">000</tspan></text>
- <use
- transform="translate(-2307.336,346.33773)"
- x="0"
- y="0"
- xlink:href="#use1299"
- inkscape:transform-center-x="0.14620371"
- inkscape:transform-center-y="2.9995242"
- id="use1176"
- width="100%"
- height="100%"
- inkscape:label="HMI:ListSwitch@/ALARMSTATUS" />
- <use
- height="100%"
- width="100%"
- id="use1193"
- inkscape:transform-center-y="2.9995242"
- inkscape:transform-center-x="0.14620371"
- xlink:href="#use1299"
- y="0"
- x="0"
- transform="translate(-2307.336,1146.3377)"
- inkscape:label="HMI:ListSwitch@/ALARMSTATUS" />
-</svg>
--- a/tests/svghmi_i18n/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="PYRO://127.0.0.1:61284">
- <TargetType/>
- <Libraries Enable_SVGHMI_Library="true"/>
-</BeremizRoot>
--- a/tests/svghmi_i18n/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,73 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
- <contentHeader name="Unnamed" modificationDateTime="2021-01-19T09:52:38">
- <coordinateInfo>
- <fbd>
- <scaling x="5" y="5"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="MainStuff" pouType="program">
- <interface>
- <localVars>
- <variable name="TargetPressure">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- <variable name="selection">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
- <position x="445" y="65"/>
- <connectionPointOut>
- <relPosition x="125" y="15"/>
- </connectionPointOut>
- <expression>TargetPressure</expression>
- </inVariable>
- <outVariable localId="10" executionOrderId="0" height="25" width="85" negated="false">
- <position x="710" y="105"/>
- <connectionPointIn>
- <relPosition x="0" y="10"/>
- <connection refLocalId="5">
- <position x="710" y="115"/>
- <position x="640" y="115"/>
- <position x="640" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- <expression>selection</expression>
- </outVariable>
- </FBD>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="resource1">
- <task name="task0" priority="0" interval="T#20ms">
- <pouInstance name="instance0" typeName="MainStuff"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/svghmi_i18n/svghmi_0@svghmi/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="svghmi_0"/>
--- a/tests/svghmi_i18n/svghmi_0@svghmi/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<SVGHMI xmlns:xsd="http://www.w3.org/2001/XMLSchema" OnWatchdog="echo Watchdog for {name} !" OnStart="chromium http://127.0.0.1:{port}/{name}" OnStop="echo Closing {name}" WatchdogInitial="10" WatchdogInterval="5"/>
Binary file tests/svghmi_i18n/svghmi_0@svghmi/fr_FR.mo has changed
--- a/tests/svghmi_i18n/svghmi_0@svghmi/fr_FR.po Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,42 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR ORGANIZATION
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"POT-Creation-Date: 2021-02-14 18:36+CET\n"
-"PO-Revision-Date: 2021-02-14 18:37+0100\n"
-"Last-Translator: \n"
-"Language-Team: \n"
-"Language: fr_FR\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: SVGHMI 1.0\n"
-"X-Generator: Poedit 2.4.2\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-msgid "height is %d meters"
-msgstr "la hauteur est de %d metres"
-
-msgid "This is an integer value : %d"
-msgstr "C'est un nombre entier : %d"
-
-msgid "Some \"other\" ČĆĐš english text"
-msgstr "De l'\"autre\" texte en français žfšŽŠĐĆČ"
-
-msgid ""
-"Some english text\n"
-"another line\n"
-"a third one"
-msgstr ""
-"Trois lignes en francais\n"
-"blah\n"
-"blah"
-
-#~ msgid "Some english text"
-#~ msgstr "Du texte en français"
-
-#~ msgid "Blah"
-#~ msgstr "Blup"
--- a/tests/svghmi_i18n/svghmi_0@svghmi/messages.pot Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,36 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR ORGANIZATION
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2021-02-15 14:45+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: SVGHMI 1.0\n"
-
-
-#:svghmi.svg: format:text424
-msgid "height is %d meters"
-msgstr ""
-
-#:svghmi.svg: format:text5271
-msgid "This is an integer value : %d"
-msgstr ""
-
-#:svghmi.svg: someothertext:text5267
-msgid "Some \"other\" ČĆĐš english text"
-msgstr ""
-
-#:svghmi.svg: sometext:text5283
-msgid ""
-"Some english text\n"
-"another line\n"
-"a third one"
-msgstr ""
-
Binary file tests/svghmi_i18n/svghmi_0@svghmi/sl_SI.mo has changed
--- a/tests/svghmi_i18n/svghmi_0@svghmi/sl_SI.po Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,37 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR ORGANIZATION
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"POT-Creation-Date: 2021-02-14 18:36+CET\n"
-"PO-Revision-Date: 2021-02-14 18:38+0100\n"
-"Last-Translator: \n"
-"Language-Team: \n"
-"Language: sl_SI\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: SVGHMI 1.0\n"
-"X-Generator: Poedit 2.4.2\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
-"%100<=4 ? 2 : 3);\n"
-
-msgid "height is %d meters"
-msgstr "To je celo število %d m"
-
-msgid "This is an integer value : %d"
-msgstr "To je celo število %d"
-
-msgid "Some \"other\" ČĆĐš english text"
-msgstr "En drug angleški tekt"
-
-msgid ""
-"Some english text\n"
-"another line\n"
-"a third one"
-msgstr ""
-"En angleški tekst\n"
-"druga vrstica\n"
-"tretja vrstica"
--- a/tests/svghmi_i18n/svghmi_0@svghmi/svghmi.svg Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2632 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
- sodipodi:docname="svghmi.svg"
- id="hmi0"
- version="1.1"
- viewBox="0 0 1280 720"
- height="720"
- width="1280">
- <metadata
- id="metadata4542">
- <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>
- <defs
- id="defs2">
- <linearGradient
- id="linearGradient48067"
- inkscape:collect="always">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop48065" />
- <stop
- style="stop-color:#000000;stop-opacity:1"
- offset="1"
- id="stop48063" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker47537"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#464646;fill-opacity:1;fill-rule:evenodd;stroke:#464646;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path47535" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker35048"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path35046" />
- </marker>
- <linearGradient
- id="linearGradient34303"
- osb:paint="solid">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop34301" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker33393"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path33391" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker30413"
- style="overflow:visible">
- <path
- id="path30411"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker27950"
- style="overflow:visible">
- <path
- id="path27948"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker21366"
- style="overflow:visible">
- <path
- id="path21364"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker20902"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path20900" />
- </marker>
- <linearGradient
- id="linearGradient20537"
- osb:paint="solid">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop20535" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker14281"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path14279" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker13481"
- style="overflow:visible">
- <path
- id="path13479"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker13093"
- style="overflow:visible">
- <path
- id="path13091"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker30978"
- style="overflow:visible;"
- inkscape:isstock="true">
- <path
- id="path30976"
- 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:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
- transform="scale(0.4) rotate(180) translate(10,0)" />
- </marker>
- <marker
- inkscape:stockid="DotM"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker30668"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- id="path30666"
- 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 "
- style="fill-rule:evenodd;stroke:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
- transform="scale(0.4) translate(7.4, 1)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible;"
- id="marker29562"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mend">
- <path
- transform="scale(0.4) rotate(180) translate(10,0)"
- style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- 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="path29560" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker29276"
- style="overflow:visible;"
- inkscape:isstock="true">
- <path
- id="path29274"
- 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:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- transform="scale(0.4) rotate(180) translate(10,0)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible;"
- id="marker28710"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mend">
- <path
- transform="scale(0.4) rotate(180) translate(10,0)"
- style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- 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="path28708" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker28436"
- style="overflow:visible;"
- inkscape:isstock="true">
- <path
- id="path28434"
- 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:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- transform="scale(0.4) rotate(180) translate(10,0)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible;"
- id="marker27764"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mend">
- <path
- transform="scale(0.4) rotate(180) translate(10,0)"
- style="fill-rule:evenodd;stroke:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
- 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="path27762" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker27514"
- 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:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
- d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
- id="path27512" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker25879"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="SquareL">
- <path
- transform="scale(0.8)"
- style="fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M -5,-5 V 5 H 5 V -5 Z"
- id="path25877"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker24867"
- style="overflow:visible;"
- inkscape:isstock="true">
- <path
- id="path8226"
- style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#3ee800;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- 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:isstock="true"
- style="overflow:visible;"
- id="marker22543"
- 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="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
- id="path22541" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker21870"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend">
- <path
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path21868"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker21674"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="SquareL">
- <path
- transform="scale(0.8)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M -5,-5 V 5 H 5 V -5 Z"
- id="path21672"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:stockid="SquareL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker20566"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- id="path20564"
- d="M -5.0,-5.0 L -5.0,5.0 L 5.0,5.0 L 5.0,-5.0 L -5.0,-5.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
- transform="scale(0.8)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker20382"
- style="overflow:visible;"
- inkscape:isstock="true">
- <path
- id="path20380"
- 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:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
- transform="scale(0.8) rotate(180) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:stockid="SquareL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="SquareL"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- id="path8275"
- d="M -5.0,-5.0 L -5.0,5.0 L 5.0,5.0 L 5.0,-5.0 L -5.0,-5.0 z "
- style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
- transform="scale(0.8)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker19998"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- id="path19996"
- 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:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
- transform="scale(0.8) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker19672"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mstart">
- <path
- transform="scale(0.4) translate(10,0)"
- style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
- 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="path19670" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker19488"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="DiamondMend">
- <path
- transform="scale(0.4) translate(-6.5,0)"
- style="fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1;fill:none;fill-opacity:1"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- id="path19486" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker19352"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="DiamondMend">
- <path
- transform="scale(0.4) translate(-6.5,0)"
- style="fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1;fill:none;fill-opacity:1"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- id="path19350" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible;"
- id="marker17321"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mend">
- <path
- transform="scale(0.4) rotate(180) translate(10,0)"
- style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
- 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="path17319" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker17197"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mstart">
- <path
- transform="scale(0.4) translate(10,0)"
- style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
- 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="path17195" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker16921"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="DiamondMend">
- <path
- transform="scale(0.4) translate(-6.5,0)"
- style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- id="path16919" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker16821"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="DiamondMend">
- <path
- transform="scale(0.4) translate(-6.5,0)"
- style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- id="path16819" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Lstart"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- id="path8205"
- 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:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
- transform="scale(0.8) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow2Lstart"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Lstart"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- id="path8223"
- style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff3000;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
- 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) translate(1,0)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker10905"
- 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- id="path10903"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Lend"
- style="overflow:visible;"
- inkscape:isstock="true">
- <path
- id="path8208"
- 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:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
- transform="scale(0.8) rotate(180) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker1971"
- 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- id="path1969"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker1536"
- 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- id="path1534"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker1656"
- 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- id="path1654"
- inkscape:connector-curvature="0" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="1454.3019 : 921.18786 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="2782.3019 : 507.18786 : 1"
- inkscape:persp3d-origin="2094.3019 : 801.18786 : 1"
- id="perspective1372" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="1424.3019 : 863.18786 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="2800.3019 : 891.18786 : 1"
- inkscape:persp3d-origin="2064.3019 : 743.18786 : 1"
- id="perspective1370" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="73.983557 : 377.52255 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="1401.9836 : -36.477445 : 1"
- inkscape:persp3d-origin="713.98356 : 257.52255 : 1"
- id="perspective503" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="43.983597 : 319.52255 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="1419.9836 : 347.52255 : 1"
- inkscape:persp3d-origin="683.98356 : 199.52255 : 1"
- id="perspective445" />
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker926"
- 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- id="path924"
- inkscape:connector-curvature="0" />
- </marker>
- <linearGradient
- id="linearGradient3919"
- inkscape:collect="always">
- <stop
- id="stop3921"
- style="stop-color:#ffffff"
- offset="0" />
- <stop
- id="stop3923"
- style="stop-color:#ffffff;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3862">
- <stop
- id="stop3864"
- style="stop-color:#414141"
- offset="0" />
- <stop
- id="stop3868"
- style="stop-color:#41433f"
- offset=".15789" />
- <stop
- id="stop3866"
- style="stop-color:#000000"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3994">
- <stop
- id="stop3996"
- style="stop-color:#626262"
- offset="0" />
- <stop
- id="stop4000"
- style="stop-color:#919191"
- offset=".74085" />
- <stop
- id="stop3998"
- style="stop-color:#ceced2"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4108">
- <stop
- id="stop4110"
- style="stop-color:#ddcf1b"
- offset="0" />
- <stop
- id="stop4112"
- style="stop-color:#ccd21b"
- offset="0.28542241" />
- <stop
- id="stop4114"
- style="stop-color:#2bb733"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4292">
- <stop
- id="stop4294"
- style="stop-color:#666666"
- offset="0" />
- <stop
- id="stop4296"
- style="stop-color:#c3c3c5"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient9759"
- xlink:href="#linearGradient3862"
- gradientUnits="userSpaceOnUse"
- cy="271.12"
- cx="488.75"
- gradientTransform="matrix(-1.1814,2.021e-7,-1.7895e-7,-0.97615,1072.1,866.87)"
- r="57.629002"
- inkscape:collect="always" />
- <marker
- inkscape:stockid="DiamondMend"
- orient="auto"
- refY="0"
- refX="0"
- id="DiamondMend-9"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path8305-2"
- d="M 0,-7.0710768 -7.0710894,0 0,7.0710589 7.0710462,0 Z"
- style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(0.4,0,0,0.4,-2.6,0)" />
- </marker>
- <marker
- inkscape:stockid="DiamondMend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker16719"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path16717"
- d="M 0,-7.0710768 -7.0710894,0 0,7.0710589 7.0710462,0 Z"
- style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(0.4,0,0,0.4,-2.6,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Mstart-2"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path8211-3"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(0.4,0,0,0.4,4,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Mend-7"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path8214-5"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.4,0,0,-0.4,-4,0)" />
- </marker>
- <linearGradient
- id="linearGradient5712">
- <stop
- id="stop5714"
- style="stop-color:#cccccc"
- offset="0" />
- <stop
- id="stop5716"
- style="stop-color:#ffffff;stop-opacity:0"
- offset=".12299" />
- <stop
- id="stop5718"
- style="stop-color:#999999;stop-opacity:.63813"
- offset="1" />
- </linearGradient>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker23223-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Mend">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.4,0,0,-0.4,-4,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path23221-2" />
- </marker>
- <marker
- inkscape:stockid="DotM"
- orient="auto"
- refY="0"
- refX="0"
- id="DotM-2"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path8269-0"
- 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"
- style="fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(0.4,0,0,0.4,2.96,0.4)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker26099-6"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path26097-1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.4,0,0,-0.4,-4,0)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker19820-5"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Mend">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.4,0,0,-0.4,-4,0)"
- style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path19818-4" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker25117-7"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path25115-6"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.4,0,0,-0.4,-4,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lend-3"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path8208-5"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#fffffc;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)" />
- </marker>
- <radialGradient
- id="radialGradient4432-9"
- xlink:href="#linearGradient3862"
- gradientUnits="userSpaceOnUse"
- cy="331.47"
- cx="487.54999"
- gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
- r="57.629002"
- inkscape:collect="always" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4436-7"
- id="radialGradient2918-3"
- cx="1043.1659"
- cy="285.35944"
- fx="1043.1659"
- fy="285.35944"
- r="192.22134"
- gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- id="radialGradient4436-7"
- gradientUnits="userSpaceOnUse"
- cy="336.42001"
- cx="491.09"
- gradientTransform="matrix(1.1429,0,0,1.1429,-73.994,-53.898)"
- r="42.073002"
- inkscape:collect="always">
- <stop
- id="stop3894-5"
- style="stop-color:#ddcf1b"
- offset="0" />
- <stop
- id="stop3898-9"
- style="stop-color:#ccd21b"
- offset=".5" />
- <stop
- id="stop3896-2"
- style="stop-color:#2bb733"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient4438-2"
- xlink:href="#linearGradient3919"
- gradientUnits="userSpaceOnUse"
- cy="379.03"
- cx="520.47998"
- gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
- r="57.629002"
- inkscape:collect="always" />
- <radialGradient
- id="radialGradient5322"
- xlink:href="#linearGradient3862"
- gradientUnits="userSpaceOnUse"
- cy="331.47"
- cx="487.54999"
- gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
- r="57.629002"
- inkscape:collect="always" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4436-7"
- id="radialGradient5340"
- cx="1043.1659"
- cy="285.35944"
- fx="1043.1659"
- fy="285.35944"
- r="192.22134"
- gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- id="radialGradient5350"
- xlink:href="#linearGradient3919"
- gradientUnits="userSpaceOnUse"
- cy="379.03"
- cx="520.47998"
- gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
- r="57.629002"
- inkscape:collect="always" />
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lend-3-9"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path8208-5-3"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#fffffc;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)" />
- </marker>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3862"
- id="radialGradient8154-3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
- cx="487.54999"
- cy="331.47"
- r="57.629002" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4436-5"
- id="radialGradient8158-1"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
- cx="1043.1659"
- cy="285.35944"
- fx="1043.1659"
- fy="285.35944"
- r="192.22134" />
- <radialGradient
- id="radialGradient4436-5"
- gradientUnits="userSpaceOnUse"
- cy="336.42001"
- cx="491.09"
- gradientTransform="matrix(1.1429,0,0,1.1429,-73.994,-53.898)"
- r="42.073002"
- inkscape:collect="always">
- <stop
- id="stop3894-54"
- style="stop-color:#ddcf1b"
- offset="0" />
- <stop
- id="stop3898-7"
- style="stop-color:#ccd21b"
- offset=".5" />
- <stop
- id="stop3896-6"
- style="stop-color:#2bb733"
- offset="1" />
- </radialGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3919"
- id="radialGradient8160-5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
- cx="520.47998"
- cy="379.03"
- r="57.629002" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4440-9"
- id="radialGradient8162-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
- cx="477.91"
- cy="325.29001"
- r="26.870001" />
- <radialGradient
- id="radialGradient4440-9"
- gradientUnits="userSpaceOnUse"
- cy="325.29001"
- cx="477.91"
- gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
- r="26.870001"
- inkscape:collect="always">
- <stop
- id="stop3876-3"
- style="stop-color:#333333"
- offset="0" />
- <stop
- id="stop3878-7"
- style="stop-color:#333333;stop-opacity:0"
- offset="1" />
- </radialGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3862"
- id="radialGradient8996"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
- cx="487.54999"
- cy="331.47"
- r="57.629002" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4436-5"
- id="radialGradient9014"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
- cx="1043.1659"
- cy="285.35944"
- fx="1043.1659"
- fy="285.35944"
- r="192.22134" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3919"
- id="radialGradient9024"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
- cx="520.47998"
- cy="379.03"
- r="57.629002" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4440-9"
- id="radialGradient9032"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
- cx="477.91"
- cy="325.29001"
- r="26.870001" />
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker22786-9"
- style="overflow:visible">
- <path
- id="path22784-6"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker22786-3"
- style="overflow:visible">
- <path
- id="path22784-3"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker22786-8"
- style="overflow:visible">
- <path
- id="path22784-60"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <pattern
- patternUnits="userSpaceOnUse"
- width="1280"
- height="720"
- patternTransform="translate(-120,1560)"
- id="pattern32315">
- <g
- inkscape:label="HMI:Keypad:HMI_STRING:HMI_LOCAL:PAGE_LOCAL"
- id="use32313"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- transform="matrix(3.3549332,0,0,3.14525,-181.87457,-3.9802)">
- <path
- sodipodi:nodetypes="ccccc"
- inkscape:label="Background"
- inkscape:connector-curvature="0"
- id="path4383"
- d="M 54.211084,1.2654702 H 435.7388 V 230.18209 H 54.211084 Z"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:label="Space"
- inkscape:connector-curvature="0"
- d="m 162,197 h -11 c -2,0 -3,1 -3,3 v 18 c 0,2 1,3 3,3 h 11 168 18 c 0,0 1,-1 1,-3 v -18 c 0,-2 -1,-3 -1,-3 h -18 z"
- id="path4385"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <g
- transform="translate(0,-19.076386)"
- style="stroke-width:0.47631353"
- inkscape:label="Keys"
- id="g4627">
- <g
- transform="translate(0,-9.5381931)"
- style="stroke-width:0.47631353"
- inkscape:label="q Q"
- id="g4391">
- <path
- inkscape:connector-curvature="0"
- d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path4387"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928514)"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text4389"
- y="138.28395"
- x="99.378708">Q</text>
- </g>
- <g
- transform="translate(0,-9.5381931)"
- style="stroke-width:0.47631353"
- inkscape:label="w W"
- id="g4397">
- <path
- inkscape:connector-curvature="0"
- d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path4393"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928514)"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text4395"
- y="138.28395"
- x="127.0709">W</text>
- </g>
- <g
- transform="translate(0,-9.5381931)"
- style="stroke-width:0.47631353"
- inkscape:label="e E"
- id="g4403">
- <path
- inkscape:connector-curvature="0"
- d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path4399"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928514)"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text4401"
- y="138.28395"
- x="159.70854">E</text>
- </g>
- <g
- transform="translate(0,-9.5381931)"
- style="stroke-width:0.47631353"
- inkscape:label="r R"
- id="g4409">
- <path
- inkscape:connector-curvature="0"
- d="m 184,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path4405"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928514)"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text4407"
- y="138.28395"
- x="188.39003">R</text>
- </g>
- <g
- transform="translate(0,-9.5381931)"
- style="stroke-width:0.47631353"
- inkscape:label="t T"
- id="g4415">
- <path
- inkscape:connector-curvature="0"
- d="m 213,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- id="path4411"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928514)"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text4413"
- y="138.28395"
- x="219.04961">T</text>
- </g>
- <g
- transform="translate(0,-9.5381931)"
- style="stroke-width:0.47631353"
- inkscape:label="y Y"
- id="g4421">
- <path
- inkscape:connector-curvature="0"
- d="m 243,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- id="path4417"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928514)"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text4419"
- y="138.28395"
- x="248.72017">Y</text>
- </g>
- <g
- transform="translate(0,-9.5381931)"
- style="stroke-width:0.47631353"
- inkscape:label="u U"
- id="g4427">
- <path
- inkscape:connector-curvature="0"
- d="m 273,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- id="path4423"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928514)"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text4425"
- y="138.28395"
- x="278.39075">U</text>
- </g>
- <g
- transform="translate(0,-9.5381931)"
- style="stroke-width:0.47631353"
- inkscape:label="i I"
- id="g4433">
- <path
- inkscape:connector-curvature="0"
- d="m 302,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- id="path4429"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928514)"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text4431"
- y="138.28395"
- x="311.02859">I</text>
- </g>
- <g
- transform="translate(0,-9.5381931)"
- style="stroke-width:0.47631353"
- inkscape:label="o O"
- id="g4439">
- <path
- inkscape:connector-curvature="0"
- d="m 332,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- id="path4435"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928514)"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text4437"
- y="138.28395"
- x="336.74319">O</text>
- </g>
- <g
- transform="translate(0,-9.5381931)"
- style="stroke-width:0.47631353"
- inkscape:label="p P"
- id="g4445">
- <path
- inkscape:connector-curvature="0"
- d="m 362,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- id="path4441"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928514)"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text4443"
- y="138.28395"
- x="367.40256">P</text>
- </g>
- <g
- inkscape:label="a A"
- id="g4451"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4447"
- d="m 103,147 h 19 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="107.29005"
- y="163.99854"
- id="text4449"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">A</text>
- </g>
- <g
- inkscape:label="s S"
- id="g4457"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4453"
- d="m 132,147 h 20 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="137.95012"
- y="163.99854"
- id="text4455"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">S</text>
- </g>
- <g
- inkscape:label="d D"
- id="g4463"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4459"
- d="m 162,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="166.63159"
- y="163.99854"
- id="text4461"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">D</text>
- </g>
- <g
- inkscape:label="f F"
- id="g4469"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4465"
- d="m 192,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="197.29166"
- y="163.99854"
- id="text4467"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">F</text>
- </g>
- <g
- inkscape:label="g G"
- id="g4475"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4471"
- d="m 221,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="225.97284"
- y="163.99854"
- id="text4473"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">G</text>
- </g>
- <g
- inkscape:label="h H"
- id="g4481"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4477"
- d="m 251,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="255.64342"
- y="163.99854"
- id="text4479"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">H</text>
- </g>
- <g
- inkscape:label="j J"
- id="g4487"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4483"
- d="m 281,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="287.29208"
- y="163.99854"
- id="text4485"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">J</text>
- </g>
- <g
- inkscape:label="k K"
- id="g4493"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4489"
- d="m 310,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="314.98465"
- y="163.99854"
- id="text4491"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">K</text>
- </g>
- <g
- inkscape:label="l L"
- id="g4500"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4495"
- d="m 340,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="345.64444"
- y="163.99854"
- id="text4498"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">L</text>
- </g>
- <g
- transform="translate(0,9.5381929)"
- inkscape:label="z Z"
- id="g4506"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4502"
- d="m 113,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="119.15855"
- y="188.72411"
- id="text4504"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">Z</text>
- </g>
- <g
- transform="translate(0,9.5381929)"
- inkscape:label="x X"
- id="g4512"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4508"
- d="m 143,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="148.82933"
- y="188.72411"
- id="text4510"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">X</text>
- </g>
- <g
- transform="translate(0,9.5381929)"
- inkscape:label="c C"
- id="g4518"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4514"
- d="m 173,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="178.50011"
- y="188.72411"
- id="text4516"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">C</text>
- </g>
- <g
- transform="translate(0,9.5381929)"
- inkscape:label="v V"
- id="g4524"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4520"
- d="m 202,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c 0,0 -1,-1 -1,-3 v -17 c 0,-1 1,-3 1,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="208.16988"
- y="188.72411"
- id="text4522"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">V</text>
- </g>
- <g
- transform="translate(0,9.5381929)"
- inkscape:label="b B"
- id="g4530"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4526"
- d="m 233,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="237.84096"
- y="188.72411"
- id="text4528"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">B</text>
- </g>
- <g
- transform="translate(0,9.5381929)"
- inkscape:label="n N"
- id="g4537"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4532"
- d="m 263,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="267.51193"
- y="188.72411"
- id="text4534"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">N</text>
- </g>
- <g
- transform="translate(0,9.5381929)"
- inkscape:label="m M"
- id="g4543"
- style="fill-rule:evenodd;stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4539"
- d="m 293,172 h 19 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -19 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="296.1933"
- y="188.72411"
- id="text4541"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">M</text>
- </g>
- <g
- transform="translate(0,9.5381929)"
- style="stroke-width:0.47631353"
- inkscape:label=". :"
- id="g4552">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4545"
- d="m 352,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="359.58276"
- y="189.66107"
- id="text4547"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928513)">.</text>
- <text
- transform="scale(1.0007154,0.99928512)"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- id="text4549"
- y="181.64532"
- x="359.58276">:</text>
- </g>
- <g
- transform="translate(0,9.5381929)"
- style="stroke-width:0.47631353"
- inkscape:label=", ;"
- id="g4560">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4554"
- d="m 322,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928512)"
- x="330.00806"
- y="181.64532"
- id="text4556"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826">;</text>
- <text
- id="text4558"
- transform="scale(1.0007154,0.99928512)"
- x="330.00806"
- y="189.66107"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826">,</text>
- </g>
- <g
- transform="translate(-13.353469,-45.783327)"
- id="g4567"
- inkscape:label="1"
- style="stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4562"
- d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928513)"
- x="101.07153"
- y="138.28395"
- id="text4564"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">1</text>
- </g>
- <g
- transform="translate(-13.353469,-45.783327)"
- id="g4573"
- inkscape:label="2"
- style="stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4569"
- d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928513)"
- x="130.18704"
- y="138.28395"
- id="text4571"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">2</text>
- </g>
- <g
- transform="translate(-13.353469,-45.783327)"
- style="stroke-width:0.47631353"
- id="g4579"
- inkscape:label="3">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4575"
- d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="159.70854"
- y="138.28395"
- id="text4577"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">3</text>
- </g>
- <g
- transform="translate(0,-19.076386)"
- inkscape:label="4"
- id="g4585">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4581"
- d="m 170.64653,94.293059 h 19 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 V 97.293059 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="176.39188"
- y="111.55791"
- id="text4583"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">4</text>
- </g>
- <g
- transform="translate(0,-19.076386)"
- inkscape:label="5"
- id="g4591">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4587"
- d="m 199.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="205.70567"
- y="111.55791"
- id="text4589"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">5</text>
- </g>
- <g
- transform="translate(0,-19.076386)"
- inkscape:label="6"
- id="g4597">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4593"
- d="m 229.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="236.15851"
- y="111.55791"
- id="text4595"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">6</text>
- </g>
- <g
- transform="translate(0,-19.076386)"
- inkscape:label="7"
- id="g4603">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4599"
- d="m 259.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="266.06564"
- y="111.55791"
- id="text4601"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">7</text>
- </g>
- <g
- transform="translate(0,-19.076386)"
- inkscape:label="8"
- id="g4609">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4605"
- d="m 288.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="295.08231"
- y="111.55791"
- id="text4607"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">8</text>
- </g>
- <g
- transform="translate(0,-19.076386)"
- inkscape:label="9 -"
- id="g4617">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4611"
- d="m 318.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="325.05408"
- y="111.55791"
- id="text4613"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">9</text>
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- id="text4615"
- y="102.42173"
- x="335.72681"
- transform="scale(1.0007154,0.99928511)">-</text>
- </g>
- <g
- transform="translate(0,-19.076386)"
- inkscape:label="0 +"
- id="g4625">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4619"
- d="m 348.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="355.05984"
- y="111.55791"
- id="text4621"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">0</text>
- <text
- x="365.30151"
- y="102.42173"
- id="text4623"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928511)">+</text>
- </g>
- </g>
- <g
- style="stroke-width:0.47631353"
- inkscape:label="Esc"
- id="g4633"
- transform="translate(335.89988,-58.934803)">
- <path
- sodipodi:nodetypes="sssssssss"
- inkscape:connector-curvature="0"
- d="m 47.948645,115.07509 h 39.076386 c 1,0 3,1 3,3 v 18 c 0,1 -2,3 -3,3 H 47.948645 c -2,0 -3,-2 -3,-3 v -18 c 0,-2 1,-3 3,-3 z"
- id="path4629"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- x="59.288635"
- y="130.02028"
- id="text4631"
- style="font-weight:normal;font-size:9.37966251px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928512)">Esc</text>
- </g>
- <g
- transform="translate(0,-19.076386)"
- style="stroke-width:0.47631353"
- id="g4639"
- inkscape:label="Enter">
- <path
- inkscape:connector-curvature="0"
- d="m 368.68274,170 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 54.24217 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- id="path4635"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <path
- inkscape:connector-curvature="0"
- id="path4637"
- transform="matrix(0.47690966,0,0,0.47690966,531.12074,-361.18588)"
- d="m -260.23633,1080.8125 v 15.7949 h -38.68555 v -3 l -6.91992,4 6.91992,4 v -3.0019 h 40.6836 v -17.793 z"
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- transform="translate(2.3648311e-6,-28.614579)"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4645"
- inkscape:label="BackSpace">
- <path
- inkscape:connector-curvature="0"
- d="m 391.97749,144 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 30.94742 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- id="path4641"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <path
- inkscape:connector-curvature="0"
- id="path4643"
- transform="matrix(0.47690966,0,0,0.47690966,531.12074,-351.64769)"
- d="m -268.72656,1011.1777 -6.91992,4 6.91992,4 v -3.0019 h 29.18945 v -1.9981 h -29.18945 z"
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- inkscape:label="CapsLock"
- id="g4663">
- <g
- transform="translate(0,-19.076386)"
- style="display:inline;fill-rule:evenodd;stroke-width:0.47631353"
- id="g4653"
- inkscape:label="inactive">
- <path
- inkscape:connector-curvature="0"
- d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
- id="path4647"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <text
- transform="scale(1.0007154,0.99928515)"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
- id="text4649"
- y="156.71973"
- x="69.789322">Caps</text>
- <text
- transform="scale(1.0007154,0.99928515)"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
- id="text4651"
- y="166.5585"
- x="69.789322">Lock</text>
- </g>
- <g
- inkscape:label="active"
- id="g4661"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- transform="translate(0,-19.076386)">
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4655"
- d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
- inkscape:connector-curvature="0" />
- <text
- x="69.789322"
- y="156.71973"
- id="text4657"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
- transform="scale(1.0007154,0.99928515)">Caps</text>
- <text
- x="69.789322"
- y="166.5585"
- id="text4659"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
- transform="scale(1.0007154,0.99928515)">Lock</text>
- </g>
- </g>
- <rect
- inkscape:label="Field"
- ry="3.8152773"
- rx="3.8152773"
- y="15.771065"
- x="64.024956"
- height="30.150299"
- width="361.89996"
- id="rect4665"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- inkscape:label="Value"
- id="text4669"
- y="38.296417"
- x="72.50132"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:start;text-anchor:start;stroke-width:0.47690967px"
- y="38.296417"
- x="72.50132"
- id="tspan4667"
- sodipodi:role="line">text</tspan></text>
- <g
- inkscape:label="Shift"
- id="g4691">
- <g
- inkscape:label="inactive"
- id="g4679">
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4671"
- d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928513)"
- x="392.55679"
- y="177.90059"
- id="text4673"
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826">Shift</text>
- <path
- inkscape:connector-curvature="0"
- d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
- id="path4675"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <text
- transform="scale(1.0007154,0.99928513)"
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- id="text4677"
- y="177.90059"
- x="75.85218">Shift</text>
- </g>
- <g
- inkscape:label="active"
- id="g4689">
- <path
- inkscape:connector-curvature="0"
- d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- id="path4681"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <text
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;stroke-width:0.36866826"
- id="text4683"
- y="177.90059"
- x="392.55679"
- transform="scale(1.0007154,0.99928513)">Shift</text>
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4685"
- d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
- inkscape:connector-curvature="0" />
- <text
- x="75.85218"
- y="177.90059"
- id="text4687"
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928513)">Shift</text>
- </g>
- </g>
- <text
- inkscape:label="Info"
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="252.9579"
- y="12.333657"
- id="text4695"
- transform="scale(0.96824588,1.0327955)"><tspan
- sodipodi:role="line"
- id="tspan4693"
- x="252.9579"
- y="12.333657"
- style="stroke-width:0.30784383px">information</tspan></text>
- </g>
- </pattern>
- <pattern
- patternUnits="userSpaceOnUse"
- width="1280"
- height="720"
- patternTransform="translate(4.5843587e-5,2340)"
- id="pattern33040">
- <g
- transform="matrix(3.3549332,0,0,3.14525,-181.87462,-3.9802)"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="use33038"
- inkscape:label="HMI:Keypad:HMI_INT:HMI_REAL">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
- id="path4699"
- inkscape:connector-curvature="0"
- inkscape:label="Background"
- sodipodi:nodetypes="ccccc" />
- <rect
- inkscape:label="Field"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4701"
- width="361.89996"
- height="30.150299"
- x="64.024963"
- y="15.77106"
- rx="3.8152773"
- ry="3.8152773" />
- <text
- inkscape:label="Value"
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="72.50132"
- y="37.408375"
- id="text4705"><tspan
- sodipodi:role="line"
- id="tspan4703"
- x="72.50132"
- y="37.408375"
- style="text-align:start;text-anchor:start;stroke-width:0.47690967px">number</tspan></text>
- <g
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)"
- id="g4711"
- inkscape:label="Enter"
- style="fill-rule:evenodd;stroke-width:0.13585199">
- <path
- inkscape:connector-curvature="0"
- d="m 750,175 c 0,-2 -1,-3 -3,-3 h -20 c -1,0 -3,1 -3,3 v 43 c 0,1 2,2 3,2 h 20 c 2,0 3,-1 3,-2 z"
- id="path4707"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.10074362;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path4709"
- transform="matrix(0.28557246,0,0,0.28557246,1098.7155,-140.51013)"
- d="m -1244.2949,1166.5938 v 15.791 h -38.6875 v -2.9981 l -6.9199,4 6.9199,4 v -2.998 h 40.6836 v -17.7949 z"
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)"
- id="g4773"
- inkscape:label="Keys"
- style="fill-rule:evenodd;stroke-width:0.13585199">
- <g
- id="g4717"
- inkscape:label="7"
- style="stroke-width:0.13585199">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4713"
- d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="636.4165"
- y="129.38269"
- id="text4715"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">7</text>
- </g>
- <g
- id="g4723"
- inkscape:label="4"
- style="stroke-width:0.13585199">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4719"
- d="m 638,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="636.4165"
- y="154.10822"
- id="text4721"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">4</text>
- </g>
- <g
- id="g4729"
- inkscape:label="1"
- style="stroke-width:0.13585199">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4725"
- d="m 638,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="636.4165"
- y="179.82285"
- id="text4727"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">1</text>
- </g>
- <g
- id="g4735"
- inkscape:label="8"
- style="stroke-width:0.13585199">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4731"
- d="m 668,120 h 19 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="667.07562"
- y="129.38269"
- id="text4733"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">8</text>
- </g>
- <g
- id="g4741"
- inkscape:label="5"
- style="stroke-width:0.13585199">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4737"
- d="m 668,146 h 19 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="667.07562"
- y="154.10822"
- id="text4739"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">5</text>
- </g>
- <g
- id="g4747"
- inkscape:label="2"
- style="stroke-width:0.13585199">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4743"
- d="m 668,172 h 19 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="667.07562"
- y="179.82285"
- id="text4745"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">2</text>
- </g>
- <g
- id="g4753"
- inkscape:label="9"
- style="stroke-width:0.13585199">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4749"
- d="m 697,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="695.75708"
- y="129.38269"
- id="text4751"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">9</text>
- </g>
- <g
- id="g4759"
- inkscape:label="6"
- style="stroke-width:0.13585199">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4755"
- d="m 697,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="695.75708"
- y="154.10822"
- id="text4757"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">6</text>
- </g>
- <g
- id="g4765"
- inkscape:label="3"
- style="stroke-width:0.13585199">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4761"
- d="m 697,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="695.75708"
- y="179.82285"
- id="text4763"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">3</text>
- </g>
- <g
- id="g4771"
- inkscape:label="0"
- style="stroke-width:0.13585199">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4767"
- d="m 638,220 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 h 49 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="636.4165"
- y="205.53712"
- id="text4769"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">0</text>
- </g>
- </g>
- <g
- transform="translate(-318.22576)"
- inkscape:label="Esc"
- id="g4779">
- <path
- inkscape:connector-curvature="0"
- d="m 387.26079,54.792986 h 33.40019 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -33.40019 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
- id="path4775"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928511)"
- style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- id="text4777"
- y="78.632088"
- x="394.42801">Esc</text>
- </g>
- <g
- transform="translate(0,-43.420332)"
- inkscape:label="BackSpace"
- id="g4785">
- <path
- inkscape:connector-curvature="0"
- d="m 387.26079,98.213318 h 33.40019 c 3.34,0 5.01006,1.670013 5.01006,5.010032 v 30.06024 c 0,3.34002 -1.67006,5.01003 -5.01006,5.01003 h -33.40019 c -1.67006,0 -5.01007,-1.67001 -5.01007,-5.01003 v -30.06024 c 0,-3.340019 3.34001,-5.010032 5.01007,-5.010032 z"
- id="path4781"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path4783"
- transform="matrix(0.47690966,0,0,0.47690966,1008.0304,-380.26227)"
- d="m -1278.9668,1041.3047 -6.9199,4 6.9199,4 v -3 h 33.416 v -1.9981 h -33.416 z"
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- transform="matrix(1.6700128,0,0,1.6700128,-678.20742,-102.18822)"
- style="fill-rule:evenodd;stroke-width:0.13585199"
- inkscape:label="Sign"
- id="g4791">
- <path
- inkscape:connector-curvature="0"
- d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path4787"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928514)"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text4789"
- y="135.09822"
- x="642.1239">+/-</text>
- </g>
- <text
- inkscape:label="Info"
- transform="scale(0.96824589,1.0327955)"
- id="text4795"
- y="12.333653"
- x="252.9579"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.30784383px"
- y="12.333653"
- x="252.9579"
- id="tspan4793"
- sodipodi:role="line">information</tspan></text>
- <g
- inkscape:label="NumDot"
- id="g4801"
- style="fill-rule:evenodd;stroke-width:0.13585199"
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60856)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path4797"
- d="m 697,197 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928514)"
- x="696.7464"
- y="204.54802"
- id="text4799"
- style="font-weight:normal;font-size:6.96602964px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989">.</text>
- </g>
- </g>
- </pattern>
- <marker
- style="overflow:visible"
- id="marker33393-6"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path33391-4" />
- </marker>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient48067"
- id="radialGradient48061-9"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.02836882,4.436331,-1.9717971,0.01260898,731.53273,-19692.285)"
- cx="4437.6318"
- cy="434.84348"
- fx="4437.6318"
- fy="434.84348"
- r="35.250397" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:document-units="px"
- inkscape:current-layer="hmi0"
- showgrid="false"
- units="px"
- inkscape:zoom="0.70710678"
- inkscape:cx="535.49777"
- inkscape:cy="380.79328"
- inkscape:window-width="1600"
- inkscape:window-height="836"
- inkscape:window-x="0"
- inkscape:window-y="27"
- inkscape:window-maximized="0"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-global="true"
- inkscape:snap-bbox="true"
- inkscape:bbox-nodes="true">
- <sodipodi:guide
- position="1265,637"
- orientation="1,0"
- id="guide424"
- inkscape:locked="false" />
- </sodipodi:namedview>
- <rect
- style="color:#000000;fill:#ffffff"
- id="page0"
- width="1280"
- height="720"
- x="0"
- y="0"
- inkscape:label="HMI:Page:Home" />
- <g
- id="g5275"
- inkscape:label="HMI:Display@/TARGETPRESSURE">
- <text
- inkscape:label="_format"
- id="text5271"
- y="430.74841"
- x="440.99014"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="430.74841"
- x="440.99014"
- id="tspan5269"
- sodipodi:role="line">This is an integer value : %d</tspan></text>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="373.99341"
- y="160.46414"
- id="text5267"
- inkscape:label="_someothertext"><tspan
- sodipodi:role="line"
- id="tspan5265"
- x="373.99341"
- y="160.46414">Some "other" ČĆĐš english text</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="725.49988"
- y="141.49683"
- id="text5279"
- inkscape:label="HMI:Display@/SELECTION"><tspan
- sodipodi:role="line"
- id="tspan5277"
- x="725.49988"
- y="141.49683">8888</tspan></text>
- <text
- inkscape:label="_sometext"
- id="text5283"
- y="240.46414"
- x="293.99341"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="240.46414"
- x="293.99341"
- id="tspan5281"
- sodipodi:role="line">Some english text</tspan><tspan
- y="290.46414"
- x="293.99341"
- sodipodi:role="line"
- id="tspan1894">another line</tspan><tspan
- y="340.46414"
- x="293.99341"
- sodipodi:role="line"
- id="tspan1896">a third one</tspan></text>
- <g
- id="g1913"
- inkscape:label="HMI:Input@/TARGETPRESSURE">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4827"
- width="165.96402"
- height="78.240181"
- x="203.89867"
- y="501.87585"
- rx="7"
- ry="7"
- inkscape:label="edit" />
- <text
- id="text405"
- y="551.66504"
- x="275.02609"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"
- inkscape:label="value"><tspan
- y="551.66504"
- x="275.02609"
- id="tspan403"
- sodipodi:role="line">1234</tspan></text>
- <g
- id="g1905"
- inkscape:label="+1"
- transform="translate(391.20092,80.611099)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect407"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="425.65189"
- y="566.1087"
- id="text1558"><tspan
- sodipodi:role="line"
- id="tspan1556"
- x="425.65189"
- y="566.1087">+1</tspan></text>
- </g>
- <use
- x="0"
- y="0"
- xlink:href="#text5283"
- id="use411"
- transform="translate(281.09259,279.27093)"
- width="100%"
- height="100%" />
- </g>
- <g
- id="g14237"
- inkscape:label="HMI:DropDown:#langs@lang"
- transform="matrix(0.81491208,0,0,0.81491208,92.392121,-676.64521)"
- style="stroke-width:0.35083869">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#53676c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect14212"
- width="574.92957"
- height="84.312515"
- x="864.00842"
- y="946.07819"
- rx="2.4558709"
- ry="2.4558709"
- inkscape:label="box" />
- <rect
- inkscape:label="highlight"
- ry="2.4558709"
- rx="2.4558709"
- y="968.2616"
- x="864.00842"
- height="39.945667"
- width="574.92957"
- id="rect5497"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419331;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text14183"
- y="998.13739"
- x="890.70056"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.95956421px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d42aff;fill-opacity:1;stroke:none;stroke-width:0.35083869px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="text"><tspan
- style="text-align:start;text-anchor:start;fill:#d42aff;stroke-width:0.35083869px"
- y="998.13739"
- x="890.70056"
- sodipodi:role="line"
- id="tspan421">Language (Country)</tspan></text>
- <path
- sodipodi:type="star"
- style="opacity:1;vector-effect:none;fill:#a7a5a6;fill-opacity:1;stroke:none;stroke-width:0.12376806;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path424"
- sodipodi:sides="3"
- sodipodi:cx="1387.0236"
- sodipodi:cy="977.31356"
- sodipodi:r1="43.683521"
- sodipodi:r2="21.841761"
- sodipodi:arg1="1.5707963"
- sodipodi:arg2="2.6179939"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 1387.0236,1020.9971 -18.9156,-32.76268 -18.9155,-32.76264 37.8311,0 37.831,0 -18.9155,32.76264 z"
- inkscape:transform-center-y="10.92088"
- inkscape:label="button" />
- </g>
- <g
- inkscape:label="HMI:Display@/TARGETPRESSURE"
- id="g436"
- transform="translate(381.33428,-264.45794)">
- <text
- inkscape:label="_format"
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="375.02609"
- y="571.66504"
- id="text424"><tspan
- sodipodi:role="line"
- x="375.02609"
- y="571.66504"
- id="tspan438">height is %d meters</tspan></text>
- </g>
-</svg>
--- a/tests/svghmi_pathslider/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="LOCAL://">
- <TargetType/>
- <Libraries Enable_SVGHMI_Library="true"/>
-</BeremizRoot>
--- a/tests/svghmi_pathslider/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,73 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
- <contentHeader name="Unnamed" modificationDateTime="2021-09-10T14:17:04">
- <coordinateInfo>
- <fbd>
- <scaling x="5" y="5"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="MainStuff" pouType="program">
- <interface>
- <localVars>
- <variable name="var0">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- <variable name="var1">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
- <position x="445" y="65"/>
- <connectionPointOut>
- <relPosition x="125" y="15"/>
- </connectionPointOut>
- <expression>var0</expression>
- </inVariable>
- <outVariable localId="10" executionOrderId="0" height="25" width="85" negated="false">
- <position x="710" y="105"/>
- <connectionPointIn>
- <relPosition x="0" y="10"/>
- <connection refLocalId="5">
- <position x="710" y="115"/>
- <position x="640" y="115"/>
- <position x="640" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- <expression>var1</expression>
- </outVariable>
- </FBD>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="resource1">
- <task name="task0" priority="0" interval="T#20ms">
- <pouInstance name="instance0" typeName="MainStuff"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/svghmi_pathslider/svghmi_0@svghmi/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="svghmi_0"/>
--- a/tests/svghmi_pathslider/svghmi_0@svghmi/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<SVGHMI xmlns:xsd="http://www.w3.org/2001/XMLSchema" WatchdogInitial="10" WatchdogInterval="5"/>
--- a/tests/svghmi_pathslider/svghmi_0@svghmi/messages.pot Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR ORGANIZATION
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2021-02-12 21:55+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: SVGHMI 1.0\n"
-
-
--- a/tests/svghmi_pathslider/svghmi_0@svghmi/svghmi.svg Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,882 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
- sodipodi:docname="svghmi.svg"
- id="hmi0"
- version="1.1"
- viewBox="0 0 1280 720"
- height="720"
- width="1280">
- <metadata
- id="metadata4542">
- <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>
- <defs
- id="defs2">
- <marker
- inkscape:stockid="SquareL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="SquareL"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- id="path1054"
- d="M -5.0,-5.0 L -5.0,5.0 L 5.0,5.0 L 5.0,-5.0 L -5.0,-5.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
- transform="scale(0.8)" />
- </marker>
- <linearGradient
- id="linearGradient34303"
- osb:paint="solid">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop34301" />
- </linearGradient>
- <linearGradient
- id="linearGradient20537"
- osb:paint="solid">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop20535" />
- </linearGradient>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:document-units="px"
- inkscape:current-layer="hmi0"
- showgrid="false"
- units="px"
- inkscape:zoom="1.8101934"
- inkscape:cx="616.36085"
- inkscape:cy="455.0488"
- inkscape:window-width="2188"
- inkscape:window-height="1534"
- inkscape:window-x="3675"
- inkscape:window-y="324"
- inkscape:window-maximized="0"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-global="true"
- inkscape:snap-bbox="true"
- inkscape:bbox-nodes="true" />
- <g
- inkscape:label="HMI:Keypad:HMI_INT:HMI_REAL"
- id="g2432"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- transform="matrix(3.3549332,0,0,3.14525,-181.87457,2336.0198)">
- <path
- sodipodi:nodetypes="ccccc"
- inkscape:label="Background"
- inkscape:connector-curvature="0"
- id="path2136"
- d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <rect
- ry="3.8152773"
- rx="3.8152773"
- y="15.77106"
- x="64.024963"
- height="30.150299"
- width="361.89996"
- id="rect2426"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:label="Field" />
- <text
- id="text2430"
- y="37.408375"
- x="72.50132"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="Value"><tspan
- style="text-align:start;text-anchor:start;stroke-width:0.47690967px"
- y="37.408375"
- x="72.50132"
- id="tspan2428"
- sodipodi:role="line">number</tspan></text>
- <g
- style="fill-rule:evenodd;stroke-width:0.13585199"
- inkscape:label="Enter"
- id="g4947"
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
- <path
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.10074362;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path193"
- d="m 750,175 c 0,-2 -1,-3 -3,-3 h -20 c -1,0 -3,1 -3,3 v 43 c 0,1 2,2 3,2 h 20 c 2,0 3,-1 3,-2 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -1244.2949,1166.5938 v 15.791 h -38.6875 v -2.9981 l -6.9199,4 6.9199,4 v -2.998 h 40.6836 v -17.7949 z"
- transform="matrix(0.28557246,0,0,0.28557246,1098.7155,-140.51013)"
- id="path6545-4"
- inkscape:connector-curvature="0" />
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.13585199"
- inkscape:label="Keys"
- id="g4993"
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
- <g
- style="stroke-width:0.13585199"
- inkscape:label="7"
- id="g4892">
- <path
- inkscape:connector-curvature="0"
- d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path163"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text331"
- y="129.38269"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">7</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="4"
- id="g4907">
- <path
- inkscape:connector-curvature="0"
- d="m 638,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path169"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text335"
- y="154.10822"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">4</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="1"
- id="g4922">
- <path
- inkscape:connector-curvature="0"
- d="m 638,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path175"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text339"
- y="179.82285"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">1</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="8"
- id="g4897">
- <path
- inkscape:connector-curvature="0"
- d="m 668,120 h 19 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path165"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text347"
- y="129.38269"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">8</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="5"
- id="g4912">
- <path
- inkscape:connector-curvature="0"
- d="m 668,146 h 19 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path171"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text351"
- y="154.10822"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">5</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="2"
- id="g4927">
- <path
- inkscape:connector-curvature="0"
- d="m 668,172 h 19 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path177"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text355"
- y="179.82285"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">2</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="9"
- id="g4902">
- <path
- inkscape:connector-curvature="0"
- d="m 697,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path167"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text363"
- y="129.38269"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">9</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="6"
- id="g4917">
- <path
- inkscape:connector-curvature="0"
- d="m 697,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path173"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text367"
- y="154.10822"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">6</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="3"
- id="g4932">
- <path
- inkscape:connector-curvature="0"
- d="m 697,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path179"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text371"
- y="179.82285"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">3</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="0"
- id="g4937">
- <path
- inkscape:connector-curvature="0"
- d="m 638,220 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 h 49 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 z"
- id="path373"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text377"
- y="205.53712"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">0</text>
- </g>
- </g>
- <g
- id="g3113"
- inkscape:label="Esc"
- transform="translate(-318.22576)">
- <path
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path167-3"
- d="m 387.26079,54.792986 h 33.40019 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -33.40019 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
- inkscape:connector-curvature="0" />
- <text
- x="394.42801"
- y="78.632088"
- id="text469-4"
- style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928511)">Esc</text>
- </g>
- <g
- id="g3109"
- inkscape:label="BackSpace"
- transform="translate(0,-43.420332)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path173-1"
- d="m 387.26079,98.213318 h 33.40019 c 3.34,0 5.01006,1.670013 5.01006,5.010032 v 30.06024 c 0,3.34002 -1.67006,5.01003 -5.01006,5.01003 h -33.40019 c -1.67006,0 -5.01007,-1.67001 -5.01007,-5.01003 v -30.06024 c 0,-3.340019 3.34001,-5.010032 5.01007,-5.010032 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -1278.9668,1041.3047 -6.9199,4 6.9199,4 v -3 h 33.416 v -1.9981 h -33.416 z"
- transform="matrix(0.47690966,0,0,0.47690966,1008.0304,-380.26227)"
- id="path11623-1-0-2"
- inkscape:connector-curvature="0" />
- </g>
- <g
- id="g787"
- inkscape:label="Sign"
- style="fill-rule:evenodd;stroke-width:0.13585199"
- transform="matrix(1.6700128,0,0,1.6700128,-678.20742,-102.18822)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path781"
- d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="642.1239"
- y="135.09822"
- id="text783"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- transform="scale(1.0007154,0.99928514)">+/-</text>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="252.9579"
- y="12.333653"
- id="text509"
- transform="scale(0.96824589,1.0327955)"
- inkscape:label="Info"><tspan
- sodipodi:role="line"
- id="tspan507"
- x="252.9579"
- y="12.333653"
- style="stroke-width:0.30784383px">information</tspan></text>
- <g
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60856)"
- style="fill-rule:evenodd;stroke-width:0.13585199"
- id="g4942"
- inkscape:label="NumDot">
- <path
- inkscape:connector-curvature="0"
- d="m 697,197 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path181"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:6.96602964px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text771"
- y="204.54802"
- x="696.7464"
- transform="scale(1.0007154,0.99928514)">.</text>
- </g>
- </g>
- <rect
- style="color:#000000;fill:#ffffff"
- id="page0"
- width="1280"
- height="720"
- x="0"
- y="0"
- inkscape:label="HMI:Page:Home" />
- <g
- id="g1913"
- inkscape:label="HMI:Input@.max"
- transform="translate(80,100)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4827"
- width="165.96402"
- height="78.240181"
- x="203.89867"
- y="501.87585"
- rx="7"
- ry="7"
- inkscape:label="edit" />
- <text
- id="text405"
- y="551.66504"
- x="275.02609"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"
- inkscape:label="value"><tspan
- y="551.66504"
- x="275.02609"
- id="tspan403"
- sodipodi:role="line">1234</tspan></text>
- <g
- id="g1905"
- inkscape:label="-1"
- transform="translate(-314.79908,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect407"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text1558"><tspan
- sodipodi:role="line"
- id="tspan1556"
- x="441.65189"
- y="566.1087">-1</tspan></text>
- </g>
- <g
- transform="translate(-434.79908,-17.189114)"
- inkscape:label="-10"
- id="g4394">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect4388"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4392"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan4390"
- sodipodi:role="line">-10</tspan></text>
- </g>
- <g
- transform="translate(11.20092,-17.189114)"
- inkscape:label="+1"
- id="g4402">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect4396"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4400"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan4398"
- sodipodi:role="line">+1</tspan></text>
- </g>
- <g
- id="g4410"
- inkscape:label="+10"
- transform="translate(131.20092,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4404"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text4408"><tspan
- sodipodi:role="line"
- id="tspan4406"
- x="441.65189"
- y="566.1087">+10</tspan></text>
- </g>
- </g>
- <g
- transform="translate(80,-60)"
- inkscape:label="HMI:Input@.min"
- id="g4450">
- <rect
- inkscape:label="edit"
- ry="7"
- rx="7"
- y="501.87585"
- x="203.89867"
- height="78.240181"
- width="165.96402"
- id="rect4412"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- inkscape:label="value"
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="275.02609"
- y="551.66504"
- id="text4416"><tspan
- sodipodi:role="line"
- id="tspan4414"
- x="275.02609"
- y="551.66504">1234</tspan></text>
- <g
- transform="translate(-314.79908,-17.189114)"
- inkscape:label="-1"
- id="g4424">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect4418"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4422"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan4420"
- sodipodi:role="line">-1</tspan></text>
- </g>
- <g
- id="g4432"
- inkscape:label="-10"
- transform="translate(-434.79908,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4426"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text4430"><tspan
- sodipodi:role="line"
- id="tspan4428"
- x="441.65189"
- y="566.1087">-10</tspan></text>
- </g>
- <g
- id="g4440"
- inkscape:label="+1"
- transform="translate(11.20092,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4434"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text4438"><tspan
- sodipodi:role="line"
- id="tspan4436"
- x="441.65189"
- y="566.1087">+1</tspan></text>
- </g>
- <g
- transform="translate(131.20092,-17.189114)"
- inkscape:label="+10"
- id="g4448">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect4442"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4446"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan4444"
- sodipodi:role="line">+10</tspan></text>
- </g>
- </g>
- <g
- id="g4490"
- inkscape:label="HMI:Input@.position"
- transform="translate(80,-220)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4452"
- width="165.96402"
- height="78.240181"
- x="203.89867"
- y="501.87585"
- rx="7"
- ry="7"
- inkscape:label="edit" />
- <text
- id="text4456"
- y="551.66504"
- x="275.02609"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"
- inkscape:label="value"><tspan
- y="551.66504"
- x="275.02609"
- id="tspan4454"
- sodipodi:role="line">1234</tspan></text>
- <g
- id="g4464"
- inkscape:label="-1"
- transform="translate(-314.79908,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4458"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text4462"><tspan
- sodipodi:role="line"
- id="tspan4460"
- x="441.65189"
- y="566.1087">-1</tspan></text>
- </g>
- <g
- transform="translate(-434.79908,-17.189114)"
- inkscape:label="-10"
- id="g4472">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect4466"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4470"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan4468"
- sodipodi:role="line">-10</tspan></text>
- </g>
- <g
- transform="translate(11.20092,-17.189114)"
- inkscape:label="+1"
- id="g4480">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect4474"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4478"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan4476"
- sodipodi:role="line">+1</tspan></text>
- </g>
- <g
- id="g4488"
- inkscape:label="+10"
- transform="translate(131.20092,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4482"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text4486"><tspan
- sodipodi:role="line"
- id="tspan4484"
- x="441.65189"
- y="566.1087">+10</tspan></text>
- </g>
- </g>
- <g
- id="g4877"
- inkscape:label="HMI:VarInit:50@.position" />
- <g
- inkscape:label="HMI:VarInit:99@.max"
- id="g4879" />
- <g
- id="g4881"
- inkscape:label="HMI:VarInit:1@.min" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- x="277.58728"
- y="276.54129"
- id="text941"><tspan
- sodipodi:role="line"
- id="tspan939"
- x="277.58728"
- y="276.54129">Position</tspan></text>
- <text
- id="text945"
- y="436.54129"
- x="277.58728"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- xml:space="preserve"><tspan
- y="436.54129"
- x="277.58728"
- sodipodi:role="line"
- id="tspan964">Min</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- x="277.58728"
- y="596.54126"
- id="text949"><tspan
- sodipodi:role="line"
- x="277.58728"
- y="596.54126"
- id="tspan968">Max</tspan></text>
- <g
- id="g962"
- inkscape:label="HMI:PathSlider@.position@.min@.max">
- <path
- inkscape:connector-curvature="0"
- id="path148"
- d="m 955.14658,26.15147 211.57962,92.25534"
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- inkscape:label="path" />
- <path
- d="m 966.53287,44.309416 -13.21418,-7.228051 -13.44562,6.787834 2.79088,-14.801024 -10.61054,-10.689986 14.93904,-1.919484 6.88794,-13.3946089 6.44196,13.6147169 14.86752,2.411663 -10.95769,10.333842 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="1.5873072"
- sodipodi:arg1="0.9589887"
- sodipodi:r2="11.340635"
- sodipodi:r1="22.681271"
- sodipodi:cy="25.742275"
- sodipodi:cx="953.50592"
- sodipodi:sides="5"
- id="path153"
- style="opacity:1;vector-effect:none;fill:#ff7903;fill-opacity:0.5288889;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- sodipodi:type="star"
- inkscape:label="cursor" />
- </g>
- <g
- inkscape:label="HMI:PathSlider@.position@.min@.max"
- id="g976"
- transform="translate(0,280)">
- <path
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 955.14658,26.15147 C 851.13467,-192.73963 1041.4811,9.3909254 1166.7262,118.40681"
- id="path972"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- inkscape:label="path" />
- <path
- sodipodi:type="star"
- style="opacity:1;vector-effect:none;fill:#ff7903;fill-opacity:0.5288889;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="path974"
- sodipodi:sides="5"
- sodipodi:cx="953.50592"
- sodipodi:cy="25.742275"
- sodipodi:r1="22.681271"
- sodipodi:r2="11.340635"
- sodipodi:arg1="0.9589887"
- sodipodi:arg2="1.5873072"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 966.53287,44.309416 -13.21418,-7.228051 -13.44562,6.787834 2.79088,-14.801024 -10.61054,-10.689986 14.93904,-1.919484 6.88794,-13.3946089 6.44196,13.6147169 14.86752,2.411663 -10.95769,10.333842 z"
- inkscape:label="cursor" />
- </g>
- <g
- transform="matrix(1.3425901,0,0,1.3433676,-917.1196,42.980158)"
- id="g982"
- inkscape:label="HMI:PathSlider@.position@.min@.max"
- style="stroke-width:0.74461341">
- <path
- sodipodi:nodetypes="cssc"
- inkscape:connector-curvature="0"
- id="path978"
- d="m 952.93687,23.941761 c 51.19833,-44.196391 62.05743,74.937687 92.34943,75.490114 21.6066,0.394035 85.7552,-75.64156 18.9371,-55.006769 -72.1854,22.292318 95.3404,97.369964 112.9989,61.828304"
- style="fill:none;stroke:#000000;stroke-width:0.74461341px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-start:url(#SquareL)"
- inkscape:label="path" />
- <path
- d="m 965.58932,65.187083 -13.21418,-7.228052 -13.44561,6.787834 2.79087,-14.801023 -10.61053,-10.689986 14.93903,-1.919485 6.88795,-13.394608 6.44195,13.614717 14.86753,2.411662 -10.9577,10.333842 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="1.5873072"
- sodipodi:arg1="0.9589887"
- sodipodi:r2="11.340635"
- sodipodi:r1="22.681271"
- sodipodi:cy="46.61994"
- sodipodi:cx="952.5624"
- sodipodi:sides="5"
- id="path980"
- style="opacity:1;vector-effect:none;fill:#ff7903;fill-opacity:0.5288889;stroke:none;stroke-width:0.74461341;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- sodipodi:type="star"
- inkscape:label="cursor" />
- </g>
-</svg>
--- a/tests/svghmi_real/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="PYRO://127.0.0.1:61284">
- <TargetType/>
- <Libraries Enable_SVGHMI_Library="true"/>
-</BeremizRoot>
--- a/tests/svghmi_real/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,97 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
- <contentHeader name="Unnamed" modificationDateTime="2021-02-16T10:38:12">
- <coordinateInfo>
- <fbd>
- <scaling x="5" y="5"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="MainStuff" pouType="program">
- <interface>
- <localVars>
- <variable name="var0">
- <type>
- <derived name="HMI_REAL"/>
- </type>
- </variable>
- <variable name="var1">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
- <position x="240" y="45"/>
- <connectionPointOut>
- <relPosition x="125" y="15"/>
- </connectionPointOut>
- <expression>var0</expression>
- </inVariable>
- <outVariable localId="10" executionOrderId="0" height="25" width="85" negated="false">
- <position x="720" y="70"/>
- <connectionPointIn>
- <relPosition x="0" y="10"/>
- <connection refLocalId="11" formalParameter="OUT">
- <position x="720" y="80"/>
- <position x="667" y="80"/>
- <position x="667" y="75"/>
- <position x="605" y="75"/>
- </connection>
- </connectionPointIn>
- <expression>var1</expression>
- </outVariable>
- <block localId="11" typeName="REAL_TO_INT" executionOrderId="0" height="40" width="100">
- <position x="505" y="45"/>
- <inputVariables>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="5">
- <position x="505" y="75"/>
- <position x="445" y="75"/>
- <position x="445" y="60"/>
- <position x="365" y="60"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="100" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- </FBD>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="resource1">
- <task name="task0" priority="0" interval="T#20ms">
- <pouInstance name="instance0" typeName="MainStuff"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/svghmi_real/svghmi_0@svghmi/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="svghmi_0"/>
--- a/tests/svghmi_real/svghmi_0@svghmi/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<SVGHMI xmlns:xsd="http://www.w3.org/2001/XMLSchema" OnWatchdog="echo Watchdog for {name} !" OnStart="chromium http://127.0.0.1:{port}/{name}" OnStop="echo Closing {name}" WatchdogInitial="10" WatchdogInterval="5"/>
--- a/tests/svghmi_real/svghmi_0@svghmi/svghmi.svg Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,647 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
- sodipodi:docname="svghmi.svg"
- id="hmi0"
- version="1.1"
- viewBox="0 0 1280 720"
- height="720"
- width="1280">
- <metadata
- id="metadata4542">
- <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>
- <defs
- id="defs2">
- <linearGradient
- id="linearGradient34303"
- osb:paint="solid">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop34301" />
- </linearGradient>
- <linearGradient
- id="linearGradient20537"
- osb:paint="solid">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop20535" />
- </linearGradient>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:document-units="px"
- inkscape:current-layer="hmi0"
- showgrid="false"
- units="px"
- inkscape:zoom="0.64"
- inkscape:cx="106.50649"
- inkscape:cy="372.66049"
- inkscape:window-width="1600"
- inkscape:window-height="836"
- inkscape:window-x="1600"
- inkscape:window-y="27"
- inkscape:window-maximized="0"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-global="true"
- inkscape:snap-bbox="true"
- inkscape:bbox-nodes="true" />
- <g
- inkscape:label="HMI:Keypad:HMI_INT:HMI_REAL"
- id="g2432"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- transform="matrix(3.3549332,0,0,3.14525,-181.87457,2336.0198)">
- <path
- sodipodi:nodetypes="ccccc"
- inkscape:label="Background"
- inkscape:connector-curvature="0"
- id="path2136"
- d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <rect
- ry="3.8152773"
- rx="3.8152773"
- y="15.77106"
- x="64.024963"
- height="30.150299"
- width="361.89996"
- id="rect2426"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:label="Field" />
- <text
- id="text2430"
- y="37.408375"
- x="72.50132"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="Value"><tspan
- style="text-align:start;text-anchor:start;stroke-width:0.47690967px"
- y="37.408375"
- x="72.50132"
- id="tspan2428"
- sodipodi:role="line">number</tspan></text>
- <g
- style="fill-rule:evenodd;stroke-width:0.13585199"
- inkscape:label="Enter"
- id="g4947"
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
- <path
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.10074362;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path193"
- d="m 750,175 c 0,-2 -1,-3 -3,-3 h -20 c -1,0 -3,1 -3,3 v 43 c 0,1 2,2 3,2 h 20 c 2,0 3,-1 3,-2 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -1244.2949,1166.5938 v 15.791 h -38.6875 v -2.9981 l -6.9199,4 6.9199,4 v -2.998 h 40.6836 v -17.7949 z"
- transform="matrix(0.28557246,0,0,0.28557246,1098.7155,-140.51013)"
- id="path6545-4"
- inkscape:connector-curvature="0" />
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.13585199"
- inkscape:label="Keys"
- id="g4993"
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
- <g
- style="stroke-width:0.13585199"
- inkscape:label="7"
- id="g4892">
- <path
- inkscape:connector-curvature="0"
- d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path163"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text331"
- y="129.38269"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">7</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="4"
- id="g4907">
- <path
- inkscape:connector-curvature="0"
- d="m 638,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path169"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text335"
- y="154.10822"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">4</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="1"
- id="g4922">
- <path
- inkscape:connector-curvature="0"
- d="m 638,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path175"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text339"
- y="179.82285"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">1</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="8"
- id="g4897">
- <path
- inkscape:connector-curvature="0"
- d="m 668,120 h 19 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path165"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text347"
- y="129.38269"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">8</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="5"
- id="g4912">
- <path
- inkscape:connector-curvature="0"
- d="m 668,146 h 19 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path171"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text351"
- y="154.10822"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">5</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="2"
- id="g4927">
- <path
- inkscape:connector-curvature="0"
- d="m 668,172 h 19 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path177"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text355"
- y="179.82285"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">2</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="9"
- id="g4902">
- <path
- inkscape:connector-curvature="0"
- d="m 697,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path167"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text363"
- y="129.38269"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">9</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="6"
- id="g4917">
- <path
- inkscape:connector-curvature="0"
- d="m 697,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path173"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text367"
- y="154.10822"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">6</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="3"
- id="g4932">
- <path
- inkscape:connector-curvature="0"
- d="m 697,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path179"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text371"
- y="179.82285"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">3</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="0"
- id="g4937">
- <path
- inkscape:connector-curvature="0"
- d="m 638,220 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 h 49 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 z"
- id="path373"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text377"
- y="205.53712"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">0</text>
- </g>
- </g>
- <g
- id="g3113"
- inkscape:label="Esc"
- transform="translate(-318.22576)">
- <path
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path167-3"
- d="m 387.26079,54.792986 h 33.40019 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -33.40019 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
- inkscape:connector-curvature="0" />
- <text
- x="394.42801"
- y="78.632088"
- id="text469-4"
- style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928511)">Esc</text>
- </g>
- <g
- id="g3109"
- inkscape:label="BackSpace"
- transform="translate(0,-43.420332)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path173-1"
- d="m 387.26079,98.213318 h 33.40019 c 3.34,0 5.01006,1.670013 5.01006,5.010032 v 30.06024 c 0,3.34002 -1.67006,5.01003 -5.01006,5.01003 h -33.40019 c -1.67006,0 -5.01007,-1.67001 -5.01007,-5.01003 v -30.06024 c 0,-3.340019 3.34001,-5.010032 5.01007,-5.010032 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -1278.9668,1041.3047 -6.9199,4 6.9199,4 v -3 h 33.416 v -1.9981 h -33.416 z"
- transform="matrix(0.47690966,0,0,0.47690966,1008.0304,-380.26227)"
- id="path11623-1-0-2"
- inkscape:connector-curvature="0" />
- </g>
- <g
- id="g787"
- inkscape:label="Sign"
- style="fill-rule:evenodd;stroke-width:0.13585199"
- transform="matrix(1.6700128,0,0,1.6700128,-678.20742,-102.18822)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path781"
- d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="642.1239"
- y="135.09822"
- id="text783"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- transform="scale(1.0007154,0.99928514)">+/-</text>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="252.9579"
- y="12.333653"
- id="text509"
- transform="scale(0.96824589,1.0327955)"
- inkscape:label="Info"><tspan
- sodipodi:role="line"
- id="tspan507"
- x="252.9579"
- y="12.333653"
- style="stroke-width:0.30784383px">information</tspan></text>
- <g
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60856)"
- style="fill-rule:evenodd;stroke-width:0.13585199"
- id="g4942"
- inkscape:label="NumDot">
- <path
- inkscape:connector-curvature="0"
- d="m 697,197 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path181"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:6.96602964px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text771"
- y="204.54802"
- x="696.7464"
- transform="scale(1.0007154,0.99928514)">.</text>
- </g>
- </g>
- <rect
- style="color:#000000;fill:#ffffff"
- id="page0"
- width="1280"
- height="720"
- x="0"
- y="0"
- inkscape:label="HMI:Page:Home"
- sodipodi:insensitive="true" />
- <g
- id="g4490"
- inkscape:label="HMI:Input:%.4f@/VAR0"
- transform="translate(220,-220)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4452"
- width="165.96402"
- height="78.240181"
- x="207.3945"
- y="501.87585"
- rx="7"
- ry="7"
- inkscape:label="edit" />
- <text
- id="text4456"
- y="551.66504"
- x="289.30231"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"
- inkscape:label="value"><tspan
- y="551.66504"
- x="289.30231"
- id="tspan4454"
- sodipodi:role="line">1234</tspan></text>
- <g
- id="g4464"
- inkscape:label="-1"
- transform="translate(-414.79908,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4458"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text4462"><tspan
- sodipodi:role="line"
- id="tspan4460"
- x="441.65189"
- y="566.1087">-1</tspan></text>
- </g>
- <g
- transform="translate(-534.79908,-17.189114)"
- inkscape:label="-10"
- id="g4472">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect4466"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4470"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan4468"
- sodipodi:role="line">-10</tspan></text>
- </g>
- <g
- transform="translate(111.20092,-17.189114)"
- inkscape:label="+1"
- id="g4480">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect4474"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4478"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan4476"
- sodipodi:role="line">+1</tspan></text>
- </g>
- <g
- id="g4488"
- inkscape:label="+10"
- transform="translate(231.20092,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4482"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text4486"><tspan
- sodipodi:role="line"
- id="tspan4484"
- x="441.65189"
- y="566.1087">+10</tspan></text>
- </g>
- <g
- id="g154"
- inkscape:label="+0.1"
- transform="translate(-8.7991028,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect148"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text152"><tspan
- sodipodi:role="line"
- id="tspan150"
- x="441.65189"
- y="566.1087">+.1</tspan></text>
- </g>
- <g
- transform="translate(-294.79907,-17.189114)"
- inkscape:label="-0.1"
- id="g162">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect156"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text160"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan158"
- sodipodi:role="line">-.1</tspan></text>
- </g>
- </g>
- <g
- id="g170"
- inkscape:label="HMI:Display@/VAR0"
- transform="translate(-400)">
- <text
- id="text166"
- y="96.5625"
- x="595.3125"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"
- inkscape:label="format"><tspan
- y="96.5625"
- x="595.3125"
- id="tspan164"
- sodipodi:role="line">%.2f</tspan></text>
- </g>
- <g
- inkscape:label="HMI:Display@/VAR1"
- id="g3879"
- transform="translate(-400,80)">
- <text
- inkscape:label="format"
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="595.3125"
- y="96.5625"
- id="text3877"><tspan
- sodipodi:role="line"
- id="tspan3875"
- x="595.3125"
- y="96.5625">%d</tspan></text>
- </g>
- <g
- inkscape:label="HMI:Display@/VAR0"
- id="g3885"
- transform="translate(-140)">
- <text
- inkscape:label="format"
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="595.3125"
- y="96.5625"
- id="text3883"><tspan
- sodipodi:role="line"
- id="tspan3881"
- x="595.3125"
- y="96.5625">temp: %.2f℃</tspan></text>
- </g>
- <g
- transform="translate(220)"
- id="g3895"
- inkscape:label="HMI:Display@/VAR0">
- <text
- id="text3893"
- y="96.5625"
- x="595.3125"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"
- inkscape:label="format"><tspan
- y="96.5625"
- x="595.3125"
- id="tspan3891"
- sodipodi:role="line">ratio: %.2f%%</tspan></text>
- </g>
- <g
- transform="translate(-220,80)"
- id="g3901"
- inkscape:label="HMI:Display@/VAR1">
- <text
- id="text3899"
- y="96.5625"
- x="655.3125"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"
- inkscape:label="format"><tspan
- y="96.5625"
- x="655.3125"
- id="tspan3897"
- sodipodi:role="line">padded: %'04d</tspan></text>
- </g>
- <g
- transform="translate(-140,440)"
- id="g3907"
- inkscape:label="HMI:Display@/VAR1@/VAR0">
- <text
- id="text3905"
- y="96.5625"
- x="595.3125"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"
- inkscape:label="format"><tspan
- y="96.5625"
- x="595.3125"
- id="tspan3903"
- sodipodi:role="line">this way, %d and %.3f are together</tspan></text>
- </g>
-</svg>
--- a/tests/svghmi_scrollbar/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="LOCAL://">
- <TargetType/>
- <Libraries Enable_SVGHMI_Library="true"/>
-</BeremizRoot>
--- a/tests/svghmi_scrollbar/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,73 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
- <contentHeader name="Unnamed" modificationDateTime="2021-09-10T14:17:04">
- <coordinateInfo>
- <fbd>
- <scaling x="5" y="5"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="MainStuff" pouType="program">
- <interface>
- <localVars>
- <variable name="var0">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- <variable name="var1">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
- <position x="445" y="65"/>
- <connectionPointOut>
- <relPosition x="125" y="15"/>
- </connectionPointOut>
- <expression>var0</expression>
- </inVariable>
- <outVariable localId="10" executionOrderId="0" height="25" width="85" negated="false">
- <position x="710" y="105"/>
- <connectionPointIn>
- <relPosition x="0" y="10"/>
- <connection refLocalId="5">
- <position x="710" y="115"/>
- <position x="640" y="115"/>
- <position x="640" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- <expression>var1</expression>
- </outVariable>
- </FBD>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="resource1">
- <task name="task0" priority="0" interval="T#20ms">
- <pouInstance name="instance0" typeName="MainStuff"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/svghmi_scrollbar/svghmi_0@svghmi/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="svghmi_0"/>
--- a/tests/svghmi_scrollbar/svghmi_0@svghmi/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<SVGHMI xmlns:xsd="http://www.w3.org/2001/XMLSchema" WatchdogInitial="10" WatchdogInterval="5"/>
--- a/tests/svghmi_scrollbar/svghmi_0@svghmi/messages.pot Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR ORGANIZATION
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2021-02-12 21:55+CET\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: SVGHMI 1.0\n"
-
-
--- a/tests/svghmi_scrollbar/svghmi_0@svghmi/svghmi.svg Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,891 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
- sodipodi:docname="svghmi.svg"
- id="hmi0"
- version="1.1"
- viewBox="0 0 1280 720"
- height="720"
- width="1280">
- <metadata
- id="metadata4542">
- <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>
- <defs
- id="defs2">
- <linearGradient
- id="linearGradient34303"
- osb:paint="solid">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop34301" />
- </linearGradient>
- <linearGradient
- id="linearGradient20537"
- osb:paint="solid">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop20535" />
- </linearGradient>
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:document-units="px"
- inkscape:current-layer="hmi0"
- showgrid="false"
- units="px"
- inkscape:zoom="0.64"
- inkscape:cx="-438.80601"
- inkscape:cy="183.59799"
- inkscape:window-width="3200"
- inkscape:window-height="1672"
- inkscape:window-x="0"
- inkscape:window-y="54"
- inkscape:window-maximized="1"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-global="true"
- inkscape:snap-bbox="true"
- inkscape:bbox-nodes="true" />
- <g
- inkscape:label="HMI:Keypad:HMI_INT:HMI_REAL"
- id="g2432"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- transform="matrix(3.3549332,0,0,3.14525,-181.87457,2336.0198)">
- <path
- sodipodi:nodetypes="ccccc"
- inkscape:label="Background"
- inkscape:connector-curvature="0"
- id="path2136"
- d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <rect
- ry="3.8152773"
- rx="3.8152773"
- y="15.77106"
- x="64.024963"
- height="30.150299"
- width="361.89996"
- id="rect2426"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:label="Field" />
- <text
- id="text2430"
- y="37.408375"
- x="72.50132"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="Value"><tspan
- style="text-align:start;text-anchor:start;stroke-width:0.47690967px"
- y="37.408375"
- x="72.50132"
- id="tspan2428"
- sodipodi:role="line">number</tspan></text>
- <g
- style="fill-rule:evenodd;stroke-width:0.13585199"
- inkscape:label="Enter"
- id="g4947"
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
- <path
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.10074362;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path193"
- d="m 750,175 c 0,-2 -1,-3 -3,-3 h -20 c -1,0 -3,1 -3,3 v 43 c 0,1 2,2 3,2 h 20 c 2,0 3,-1 3,-2 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -1244.2949,1166.5938 v 15.791 h -38.6875 v -2.9981 l -6.9199,4 6.9199,4 v -2.998 h 40.6836 v -17.7949 z"
- transform="matrix(0.28557246,0,0,0.28557246,1098.7155,-140.51013)"
- id="path6545-4"
- inkscape:connector-curvature="0" />
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.13585199"
- inkscape:label="Keys"
- id="g4993"
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
- <g
- style="stroke-width:0.13585199"
- inkscape:label="7"
- id="g4892">
- <path
- inkscape:connector-curvature="0"
- d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path163"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text331"
- y="129.38269"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">7</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="4"
- id="g4907">
- <path
- inkscape:connector-curvature="0"
- d="m 638,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path169"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text335"
- y="154.10822"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">4</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="1"
- id="g4922">
- <path
- inkscape:connector-curvature="0"
- d="m 638,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path175"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text339"
- y="179.82285"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">1</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="8"
- id="g4897">
- <path
- inkscape:connector-curvature="0"
- d="m 668,120 h 19 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path165"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text347"
- y="129.38269"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">8</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="5"
- id="g4912">
- <path
- inkscape:connector-curvature="0"
- d="m 668,146 h 19 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path171"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text351"
- y="154.10822"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">5</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="2"
- id="g4927">
- <path
- inkscape:connector-curvature="0"
- d="m 668,172 h 19 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path177"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text355"
- y="179.82285"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">2</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="9"
- id="g4902">
- <path
- inkscape:connector-curvature="0"
- d="m 697,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path167"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text363"
- y="129.38269"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">9</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="6"
- id="g4917">
- <path
- inkscape:connector-curvature="0"
- d="m 697,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path173"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text367"
- y="154.10822"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">6</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="3"
- id="g4932">
- <path
- inkscape:connector-curvature="0"
- d="m 697,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path179"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text371"
- y="179.82285"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">3</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="0"
- id="g4937">
- <path
- inkscape:connector-curvature="0"
- d="m 638,220 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 h 49 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 z"
- id="path373"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text377"
- y="205.53712"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">0</text>
- </g>
- </g>
- <g
- id="g3113"
- inkscape:label="Esc"
- transform="translate(-318.22576)">
- <path
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path167-3"
- d="m 387.26079,54.792986 h 33.40019 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -33.40019 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
- inkscape:connector-curvature="0" />
- <text
- x="394.42801"
- y="78.632088"
- id="text469-4"
- style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928511)">Esc</text>
- </g>
- <g
- id="g3109"
- inkscape:label="BackSpace"
- transform="translate(0,-43.420332)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path173-1"
- d="m 387.26079,98.213318 h 33.40019 c 3.34,0 5.01006,1.670013 5.01006,5.010032 v 30.06024 c 0,3.34002 -1.67006,5.01003 -5.01006,5.01003 h -33.40019 c -1.67006,0 -5.01007,-1.67001 -5.01007,-5.01003 v -30.06024 c 0,-3.340019 3.34001,-5.010032 5.01007,-5.010032 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -1278.9668,1041.3047 -6.9199,4 6.9199,4 v -3 h 33.416 v -1.9981 h -33.416 z"
- transform="matrix(0.47690966,0,0,0.47690966,1008.0304,-380.26227)"
- id="path11623-1-0-2"
- inkscape:connector-curvature="0" />
- </g>
- <g
- id="g787"
- inkscape:label="Sign"
- style="fill-rule:evenodd;stroke-width:0.13585199"
- transform="matrix(1.6700128,0,0,1.6700128,-678.20742,-102.18822)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path781"
- d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="642.1239"
- y="135.09822"
- id="text783"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- transform="scale(1.0007154,0.99928514)">+/-</text>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="252.9579"
- y="12.333653"
- id="text509"
- transform="scale(0.96824589,1.0327955)"
- inkscape:label="Info"><tspan
- sodipodi:role="line"
- id="tspan507"
- x="252.9579"
- y="12.333653"
- style="stroke-width:0.30784383px">information</tspan></text>
- <g
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60856)"
- style="fill-rule:evenodd;stroke-width:0.13585199"
- id="g4942"
- inkscape:label="NumDot">
- <path
- inkscape:connector-curvature="0"
- d="m 697,197 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path181"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:6.96602964px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text771"
- y="204.54802"
- x="696.7464"
- transform="scale(1.0007154,0.99928514)">.</text>
- </g>
- </g>
- <rect
- style="color:#000000;fill:#ffffff"
- id="page0"
- width="1280"
- height="720"
- x="0"
- y="0"
- inkscape:label="HMI:Page:Home" />
- <g
- id="g1913"
- inkscape:label="HMI:Input@.size"
- transform="translate(80,100)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4827"
- width="165.96402"
- height="78.240181"
- x="203.89867"
- y="501.87585"
- rx="7"
- ry="7"
- inkscape:label="edit" />
- <text
- id="text405"
- y="551.66504"
- x="275.02609"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"
- inkscape:label="value"><tspan
- y="551.66504"
- x="275.02609"
- id="tspan403"
- sodipodi:role="line">1234</tspan></text>
- <g
- id="g1905"
- inkscape:label="-1"
- transform="translate(-314.79908,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect407"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text1558"><tspan
- sodipodi:role="line"
- id="tspan1556"
- x="441.65189"
- y="566.1087">-1</tspan></text>
- </g>
- <g
- transform="translate(-434.79908,-17.189114)"
- inkscape:label="-10"
- id="g4394">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect4388"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4392"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan4390"
- sodipodi:role="line">-10</tspan></text>
- </g>
- <g
- transform="translate(11.20092,-17.189114)"
- inkscape:label="+1"
- id="g4402">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect4396"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4400"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan4398"
- sodipodi:role="line">+1</tspan></text>
- </g>
- <g
- id="g4410"
- inkscape:label="+10"
- transform="translate(131.20092,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4404"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text4408"><tspan
- sodipodi:role="line"
- id="tspan4406"
- x="441.65189"
- y="566.1087">+10</tspan></text>
- </g>
- </g>
- <g
- transform="translate(80,-60)"
- inkscape:label="HMI:Input@.range"
- id="g4450">
- <rect
- inkscape:label="edit"
- ry="7"
- rx="7"
- y="501.87585"
- x="203.89867"
- height="78.240181"
- width="165.96402"
- id="rect4412"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- inkscape:label="value"
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="275.02609"
- y="551.66504"
- id="text4416"><tspan
- sodipodi:role="line"
- id="tspan4414"
- x="275.02609"
- y="551.66504">1234</tspan></text>
- <g
- transform="translate(-314.79908,-17.189114)"
- inkscape:label="-1"
- id="g4424">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect4418"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4422"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan4420"
- sodipodi:role="line">-1</tspan></text>
- </g>
- <g
- id="g4432"
- inkscape:label="-10"
- transform="translate(-434.79908,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4426"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text4430"><tspan
- sodipodi:role="line"
- id="tspan4428"
- x="441.65189"
- y="566.1087">-10</tspan></text>
- </g>
- <g
- id="g4440"
- inkscape:label="+1"
- transform="translate(11.20092,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4434"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text4438"><tspan
- sodipodi:role="line"
- id="tspan4436"
- x="441.65189"
- y="566.1087">+1</tspan></text>
- </g>
- <g
- transform="translate(131.20092,-17.189114)"
- inkscape:label="+10"
- id="g4448">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect4442"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4446"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan4444"
- sodipodi:role="line">+10</tspan></text>
- </g>
- </g>
- <g
- id="g4490"
- inkscape:label="HMI:Input@.position"
- transform="translate(80,-220)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4452"
- width="165.96402"
- height="78.240181"
- x="203.89867"
- y="501.87585"
- rx="7"
- ry="7"
- inkscape:label="edit" />
- <text
- id="text4456"
- y="551.66504"
- x="275.02609"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"
- inkscape:label="value"><tspan
- y="551.66504"
- x="275.02609"
- id="tspan4454"
- sodipodi:role="line">1234</tspan></text>
- <g
- id="g4464"
- inkscape:label="-1"
- transform="translate(-314.79908,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4458"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text4462"><tspan
- sodipodi:role="line"
- id="tspan4460"
- x="441.65189"
- y="566.1087">-1</tspan></text>
- </g>
- <g
- transform="translate(-434.79908,-17.189114)"
- inkscape:label="-10"
- id="g4472">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect4466"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4470"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan4468"
- sodipodi:role="line">-10</tspan></text>
- </g>
- <g
- transform="translate(11.20092,-17.189114)"
- inkscape:label="+1"
- id="g4480">
- <rect
- ry="7"
- rx="7"
- y="513.73041"
- x="392.38638"
- height="88.909302"
- width="99.578415"
- id="rect4474"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4478"
- y="566.1087"
- x="441.65189"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- y="566.1087"
- x="441.65189"
- id="tspan4476"
- sodipodi:role="line">+1</tspan></text>
- </g>
- <g
- id="g4488"
- inkscape:label="+10"
- transform="translate(131.20092,-17.189114)">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4482"
- width="99.578415"
- height="88.909302"
- x="392.38638"
- y="513.73041"
- rx="7"
- ry="7" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="441.65189"
- y="566.1087"
- id="text4486"><tspan
- sodipodi:role="line"
- id="tspan4484"
- x="441.65189"
- y="566.1087">+10</tspan></text>
- </g>
- </g>
- <g
- id="g4507"
- inkscape:label="HMI:ScrollBar@.range@.position@.size"
- transform="translate(-202)">
- <rect
- y="84"
- x="960"
- height="516"
- width="100"
- id="rect4492"
- style="opacity:1;vector-effect:none;fill:#ff35ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- inkscape:label="range" />
- <rect
- y="236"
- x="969"
- height="171"
- width="81"
- id="rect4494"
- style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- inkscape:label="cursor" />
- <path
- style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- d="M 1009.5,23 1047,81 H 972 Z"
- id="rect4498"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:label="pageup" />
- <path
- style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- d="m 972,603 h 75 l -37.5,58 z"
- id="rect4500"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc"
- inkscape:label="pagedown" />
- </g>
- <g
- id="g4877"
- inkscape:label="HMI:VarInit:50@.position" />
- <g
- inkscape:label="HMI:VarInit:20@.size"
- id="g4879" />
- <g
- id="g4881"
- inkscape:label="HMI:VarInit:100@.range" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- x="277.58728"
- y="276.54129"
- id="text941"><tspan
- sodipodi:role="line"
- id="tspan939"
- x="277.58728"
- y="276.54129">Position</tspan></text>
- <text
- id="text945"
- y="436.54129"
- x="277.58728"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- xml:space="preserve"><tspan
- y="436.54129"
- x="277.58728"
- id="tspan943"
- sodipodi:role="line">Range</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- x="277.58728"
- y="596.54126"
- id="text949"><tspan
- sodipodi:role="line"
- id="tspan947"
- x="277.58728"
- y="596.54126">Size</tspan></text>
- <g
- inkscape:label="HMI:ScrollBar@.range@.position@.size"
- id="g146"
- transform="rotate(90,837.8103,-106.02497)">
- <rect
- inkscape:label="range"
- style="opacity:1;vector-effect:none;fill:#ff35ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="rect138"
- width="100"
- height="516"
- x="960"
- y="84" />
- <rect
- inkscape:label="cursor"
- style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="rect140"
- width="81"
- height="171"
- x="969"
- y="236" />
- <path
- inkscape:label="pageup"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path142"
- d="M 1009.5,23 1047,81 H 972 Z"
- style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
- <path
- inkscape:label="pagedown"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path144"
- d="m 972,603 h 75 l -37.5,58 z"
- style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
- </g>
- <g
- transform="matrix(0.35355339,0.35355339,-0.35355339,0.35355339,831.43929,-136.17916)"
- inkscape:label="HMI:ScrollBar@.range@.position@.size"
- id="g156"
- style="stroke-width:2">
- <rect
- inkscape:label="range"
- style="opacity:1;vector-effect:none;fill:#ff35ff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="rect148"
- width="100"
- height="516"
- x="960"
- y="84" />
- <rect
- inkscape:label="cursor"
- style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="rect150"
- width="81"
- height="171"
- x="969"
- y="236" />
- <path
- inkscape:label="pageup"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path152"
- d="M 1009.5,23 1047,81 H 972 Z"
- style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
- <path
- inkscape:label="pagedown"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path154"
- d="m 972,603 h 75 l -37.5,58 z"
- style="opacity:1;vector-effect:none;fill:#3835ff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
- </g>
-</svg>
--- a/tests/svghmi_v2/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="PYRO://127.0.0.1:61284">
- <TargetType/>
- <Libraries Enable_SVGHMI_Library="true"/>
-</BeremizRoot>
--- a/tests/svghmi_v2/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,585 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
- <contentHeader name="Unnamed" modificationDateTime="2020-09-30T13:04:27">
- <coordinateInfo>
- <fbd>
- <scaling x="5" y="5"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="MainStuff" pouType="program">
- <interface>
- <localVars>
- <variable name="TargetPressure">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- <variable name="selection">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- <variable name="Pump0">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="TestButton">
- <type>
- <derived name="HMI_BOOL"/>
- </type>
- </variable>
- <variable name="TestLocal">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="Multistate">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- <variable name="Radiostate">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- <variable name="Toggle">
- <type>
- <derived name="HMI_BOOL"/>
- </type>
- </variable>
- <variable name="Toggle1">
- <type>
- <derived name="HMI_BOOL"/>
- </type>
- </variable>
- <variable name="Toggle2">
- <type>
- <derived name="HMI_BOOL"/>
- </type>
- </variable>
- <variable name="MultistateExt">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="Speed">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <block localId="4" typeName="PumpControl" instanceName="Pump0" executionOrderId="0" height="40" width="127">
- <position x="595" y="50"/>
- <inputVariables>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="5">
- <position x="595" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
- <position x="445" y="65"/>
- <connectionPointOut>
- <relPosition x="125" y="15"/>
- </connectionPointOut>
- <expression>TargetPressure</expression>
- </inVariable>
- <inVariable localId="6" executionOrderId="0" height="25" width="90" negated="false">
- <position x="130" y="60"/>
- <connectionPointOut>
- <relPosition x="90" y="10"/>
- </connectionPointOut>
- <expression>TestButton</expression>
- </inVariable>
- <outVariable localId="7" executionOrderId="0" height="25" width="85" negated="false">
- <position x="495" y="220"/>
- <connectionPointIn>
- <relPosition x="0" y="10"/>
- <connection refLocalId="6">
- <position x="495" y="230"/>
- <position x="367" y="230"/>
- <position x="367" y="70"/>
- <position x="220" y="70"/>
- </connection>
- </connectionPointIn>
- <expression>TestLocal</expression>
- </outVariable>
- <inVariable localId="1" executionOrderId="0" height="25" width="115" negated="false">
- <position x="175" y="355"/>
- <connectionPointOut>
- <relPosition x="115" y="10"/>
- </connectionPointOut>
- <expression>Multistate</expression>
- </inVariable>
- <outVariable localId="8" executionOrderId="0" height="25" width="115" negated="false">
- <position x="495" y="355"/>
- <connectionPointIn>
- <relPosition x="0" y="10"/>
- <connection refLocalId="1">
- <position x="495" y="365"/>
- <position x="290" y="365"/>
- </connection>
- </connectionPointIn>
- <expression>MultistateExt</expression>
- </outVariable>
- </FBD>
- </body>
- </pou>
- <pou name="PumpControl" pouType="functionBlock">
- <interface>
- <localVars>
- <variable name="Pump">
- <type>
- <derived name="HMI_NODE"/>
- </type>
- </variable>
- <variable name="Pressure">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- </localVars>
- <inputVars>
- <variable name="TargetPressure">
- <type>
- <INT/>
- </type>
- </variable>
- </inputVars>
- <localVars>
- <variable name="Sloth">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- <variable name="boolout">
- <type>
- <derived name="HMI_BOOL"/>
- </type>
- </variable>
- <variable name="boolin">
- <type>
- <derived name="HMI_BOOL"/>
- </type>
- <initialValue>
- <simpleValue value="True"/>
- </initialValue>
- </variable>
- <variable name="strout">
- <type>
- <derived name="HMI_STRING"/>
- </type>
- </variable>
- <variable name="strin">
- <type>
- <derived name="HMI_STRING"/>
- </type>
- <initialValue>
- <simpleValue value="blup"/>
- </initialValue>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
- <position x="150" y="100"/>
- <connectionPointOut>
- <relPosition x="125" y="15"/>
- </connectionPointOut>
- <expression>TargetPressure</expression>
- </inVariable>
- <block localId="6" typeName="ADD" executionOrderId="0" height="60" width="65">
- <position x="405" y="65"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="7" formalParameter="OUT">
- <position x="405" y="115"/>
- <position x="360" y="115"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="1" executionOrderId="0" height="30" width="75" negated="false">
- <position x="150" y="135"/>
- <connectionPointOut>
- <relPosition x="75" y="15"/>
- </connectionPointOut>
- <expression>Pressure</expression>
- </inVariable>
- <block localId="7" typeName="SUB" executionOrderId="0" height="60" width="65">
- <position x="295" y="85"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="5">
- <position x="295" y="115"/>
- <position x="275" y="115"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="1">
- <position x="295" y="135"/>
- <position x="285" y="135"/>
- <position x="285" y="150"/>
- <position x="225" y="150"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="2" executionOrderId="0" height="30" width="60" negated="false">
- <position x="240" y="190"/>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>Sloth</expression>
- </inVariable>
- <outVariable localId="3" executionOrderId="0" height="30" width="75" negated="false">
- <position x="435" y="205"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="8" formalParameter="OUT">
- <position x="435" y="220"/>
- <position x="410" y="220"/>
- </connection>
- </connectionPointIn>
- <expression>Pressure</expression>
- </outVariable>
- <block localId="8" typeName="DIV" executionOrderId="0" height="60" width="65">
- <position x="345" y="190"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="2">
- <position x="345" y="220"/>
- <position x="335" y="220"/>
- <position x="335" y="205"/>
- <position x="300" y="205"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="9">
- <position x="345" y="240"/>
- <position x="300" y="240"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="9" executionOrderId="0" height="30" width="60" negated="false">
- <position x="240" y="225"/>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>100</expression>
- </inVariable>
- <block localId="10" typeName="CONCAT" executionOrderId="0" height="60" width="65">
- <position x="360" y="345"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="13" formalParameter="OUT">
- <position x="360" y="375"/>
- <position x="330" y="375"/>
- <position x="330" y="332"/>
- <position x="440" y="332"/>
- <position x="440" y="300"/>
- <position x="430" y="300"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="14">
- <position x="360" y="395"/>
- <position x="322" y="395"/>
- <position x="322" y="400"/>
- <position x="285" y="400"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <outVariable localId="11" executionOrderId="0" height="30" width="58" negated="false">
- <position x="495" y="355"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="10" formalParameter="OUT">
- <position x="495" y="370"/>
- <position x="450" y="370"/>
- <position x="450" y="375"/>
- <position x="425" y="375"/>
- </connection>
- </connectionPointIn>
- <expression>strout</expression>
- </outVariable>
- <inVariable localId="12" executionOrderId="0" height="30" width="125" negated="false">
- <position x="145" y="285"/>
- <connectionPointOut>
- <relPosition x="125" y="15"/>
- </connectionPointOut>
- <expression>TargetPressure</expression>
- </inVariable>
- <block localId="13" typeName="INT_TO_STRING" executionOrderId="0" height="40" width="115">
- <position x="315" y="270"/>
- <inputVariables>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="12">
- <position x="315" y="300"/>
- <position x="270" y="300"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="115" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="14" executionOrderId="0" height="30" width="50" negated="false">
- <position x="235" y="385"/>
- <connectionPointOut>
- <relPosition x="50" y="15"/>
- </connectionPointOut>
- <expression>strin</expression>
- </inVariable>
- <inVariable localId="15" executionOrderId="0" height="30" width="60" negated="false">
- <position x="690" y="210"/>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>boolin</expression>
- </inVariable>
- <outVariable localId="16" executionOrderId="0" height="30" width="70" negated="false">
- <position x="915" y="240"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="17" formalParameter="OUT">
- <position x="915" y="255"/>
- <position x="880" y="255"/>
- </connection>
- </connectionPointIn>
- <expression>boolout</expression>
- </outVariable>
- <block localId="17" typeName="AND" executionOrderId="0" height="60" width="65">
- <position x="815" y="225"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="15">
- <position x="815" y="255"/>
- <position x="762" y="255"/>
- <position x="762" y="225"/>
- <position x="750" y="225"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="21" formalParameter="OUT">
- <position x="815" y="275"/>
- <position x="750" y="275"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="18" executionOrderId="0" height="30" width="75" negated="false">
- <position x="455" y="260"/>
- <connectionPointOut>
- <relPosition x="75" y="15"/>
- </connectionPointOut>
- <expression>Pressure</expression>
- </inVariable>
- <block localId="19" typeName="MOD" executionOrderId="0" height="60" width="65">
- <position x="585" y="245"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="18">
- <position x="585" y="275"/>
- <position x="530" y="275"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="20">
- <position x="585" y="295"/>
- <position x="555" y="295"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="20" executionOrderId="0" height="30" width="20" negated="false">
- <position x="535" y="280"/>
- <connectionPointOut>
- <relPosition x="20" y="15"/>
- </connectionPointOut>
- <expression>2</expression>
- </inVariable>
- <block localId="21" typeName="EQ" executionOrderId="0" height="60" width="65">
- <position x="685" y="245"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="19" formalParameter="OUT">
- <position x="685" y="275"/>
- <position x="650" y="275"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="22">
- <position x="685" y="295"/>
- <position x="670" y="295"/>
- <position x="670" y="330"/>
- <position x="650" y="330"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="22" executionOrderId="0" height="30" width="20" negated="false">
- <position x="630" y="315"/>
- <connectionPointOut>
- <relPosition x="20" y="15"/>
- </connectionPointOut>
- <expression>0</expression>
- </inVariable>
- <inVariable localId="4" executionOrderId="0" height="30" width="60" negated="false">
- <position x="510" y="80"/>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>Sloth</expression>
- </inVariable>
- </FBD>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="resource1">
- <task name="task0" priority="0" interval="T#20ms">
- <pouInstance name="instance0" typeName="MainStuff"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/svghmi_v2/py_ext_0@py_ext/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="1" Name="py_ext_0"/>
--- a/tests/svghmi_v2/py_ext_0@py_ext/pyfile.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,30 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <variables>
- <variable name="SomePLCglobal" type="HMI_STRING" initial="'blaf'" onchange="MyOnChangeFunc"/>
- </variables>
- <globals>
- <xhtml:p><![CDATA[
-
-def MyOnChangeFunc(changed_var_name):
- print changed_var_name + ": " + getattr(PLCGlobals, changed_var_name)
-
-]]></xhtml:p>
- </globals>
- <init>
- <xhtml:p><![CDATA[
-]]></xhtml:p>
- </init>
- <cleanup>
- <xhtml:p><![CDATA[
-]]></xhtml:p>
- </cleanup>
- <start>
- <xhtml:p><![CDATA[
-]]></xhtml:p>
- </start>
- <stop>
- <xhtml:p><![CDATA[
-]]></xhtml:p>
- </stop>
-</PyFile>
--- a/tests/svghmi_v2/svghmi_0@svghmi/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="svghmi_0"/>
--- a/tests/svghmi_v2/svghmi_0@svghmi/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<SVGHMI xmlns:xsd="http://www.w3.org/2001/XMLSchema" OnWatchdog="echo Watchdog for {name} !" OnStart="xdg-open http://127.0.0.1:{port}/{name}" OnStop="echo Closing {name}" WatchdogInitial="10" WatchdogInterval="5"/>
--- a/tests/svghmi_v2/svghmi_0@svghmi/svghmi.svg Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1619 +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="1280"
- height="720"
- viewBox="0 0 1280 720"
- version="1.1"
- id="hmi0"
- sodipodi:docname="svghmi.svg"
- inkscape:version="0.92.5 (0.92.5+68)"
- inkscape:label="Layer">
- <metadata
- id="metadata4542">
- <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>
- <defs
- id="defs2">
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="-688.56326 : 510.71991 : 1"
- inkscape:vp_y="0 : 1306.0642 : 0"
- inkscape:vp_z="662.62627 : 323.72015 : 1"
- inkscape:persp3d-origin="147.31778 : 353.99223 : 1"
- id="perspective258" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="-457.78124 : 416.79285 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="576.76945 : 273.61475 : 1"
- inkscape:persp3d-origin="182.21876 : 296.79285 : 1"
- id="perspective503" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="-104 : 357 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="1272 : 385 : 1"
- inkscape:persp3d-origin="536 : 237 : 1"
- id="perspective445" />
- <linearGradient
- inkscape:collect="always"
- id="linearGradient962">
- <stop
- style="stop-color:#ff3000;stop-opacity:1;"
- offset="0"
- id="stop958" />
- <stop
- style="stop-color:#0022ff;stop-opacity:1"
- offset="1"
- id="stop960" />
- </linearGradient>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker926"
- 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- id="path924"
- inkscape:connector-curvature="0" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient962"
- id="linearGradient1407"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5,0,0,0.03945396,73.07865,3.7693345)"
- x1="113.38908"
- y1="-62.210247"
- x2="113.38908"
- y2="4.0725975" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="-470.06413 : 851.30353 : 1"
- inkscape:vp_y="0 : 1319.7648 : 0"
- inkscape:vp_z="895.29941 : 662.3421 : 1"
- inkscape:persp3d-origin="374.58537 : 692.93174 : 1"
- id="perspective503-6" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:document-units="px"
- inkscape:current-layer="hmi0"
- showgrid="false"
- units="px"
- inkscape:zoom="1"
- inkscape:cx="379.07861"
- inkscape:cy="265.09897"
- inkscape:window-width="2503"
- inkscape:window-height="1416"
- inkscape:window-x="57"
- inkscape:window-y="24"
- inkscape:window-maximized="1"
- showguides="true"
- inkscape:guide-bbox="true" />
- <rect
- style="color:#000000;fill:#4d4d4d"
- id="page0"
- width="1280"
- height="720"
- x="0"
- y="0"
- inkscape:label="HMI:Page:Home"
- sodipodi:insensitive="true" />
- <g
- inkscape:label="HMI:Slider@/SPEED"
- transform="matrix(7.5590552,0,0,7.5590552,-780.78539,561.61779)"
- id="g110-0">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:0.52916664;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="M 113.38908,2.2017068 V -62.210247"
- id="path90-9"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- inkscape:label="range" />
- <path
- inkscape:label="handle"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path92-3"
- d="m 113.32293,4.2048893 v -5.230241"
- style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient1407);stroke-width:5.28146696;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="115.07632"
- y="9.3424692"
- id="text96-6"
- inkscape:label="min"><tspan
- sodipodi:role="line"
- id="tspan94-0"
- x="115.07632"
- y="9.3424692"
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
- <text
- id="text100-6"
- y="-64.195457"
- x="113.27539"
- style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="max"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="-64.195457"
- x="113.27539"
- sodipodi:role="line"
- id="tspan1409">10</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="-24.72547"
- y="-121.97556"
- id="text104-6"
- inkscape:label="value"
- transform="rotate(90)"><tspan
- sodipodi:role="line"
- x="-24.72547"
- y="-121.97556"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- id="tspan102-1">000</tspan></text>
- </g>
- <g
- id="g4557"
- inkscape:label="HMI:Input@/SOMEPLCGLOBAL">
- <text
- inkscape:label="value"
- transform="scale(1.1201068,0.89277202)"
- id="text2398"
- y="479.46704"
- x="247.53484"
- style="font-style:normal;font-weight:normal;font-size:124.08008575px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.10200214px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:3.10200214px"
- y="479.46704"
- x="247.53484"
- id="tspan2396"
- sodipodi:role="line">Test</tspan></text>
- <rect
- style="opacity:0.18600003;fill:#de2cc9;fill-opacity:1;stroke:none;stroke-width:1.11699021"
- id="rect4559"
- width="323.85489"
- height="132.93608"
- x="257.10974"
- y="328.97858"
- inkscape:label="edit" />
- <rect
- style="opacity:0;fill:#de2cc9;fill-opacity:1;stroke:none;stroke-width:3.45667744"
- id="rect4561"
- width="580.42413"
- height="339.91623"
- x="699.57587"
- y="380.08374"
- inkscape:label="key_pos" />
- </g>
- <g
- transform="matrix(1.5213157,0,0,1.4848913,-82.472173,789.79964)"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4278"
- inkscape:label="HMI:Keypad:HMI_STRING">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="M 54.211084,1.2654702 H 435.7388 V 230.18209 H 54.211084 Z"
- id="rect1006-3"
- inkscape:connector-curvature="0"
- inkscape:label="Background"
- sodipodi:nodetypes="ccccc" />
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path185"
- d="m 162,197 h -11 c -2,0 -3,1 -3,3 v 18 c 0,2 1,3 3,3 h 11 168 18 c 0,0 1,-1 1,-3 v -18 c 0,-2 -1,-3 -1,-3 h -18 z"
- inkscape:connector-curvature="0"
- inkscape:label="Space" />
- <g
- id="g4380"
- inkscape:label="Keys"
- style="stroke-width:0.47631353"
- transform="translate(0,-19.076386)">
- <g
- id="g4283"
- inkscape:label="q Q"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path41"
- d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="99.378708"
- y="138.28395"
- id="text203"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">Q</text>
- </g>
- <g
- id="g4337"
- inkscape:label="w W"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path43"
- d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="127.0709"
- y="138.28395"
- id="text207"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">W</text>
- </g>
- <g
- id="g4332"
- inkscape:label="e E"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path45"
- d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="159.70854"
- y="138.28395"
- id="text211"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">E</text>
- </g>
- <g
- id="g4326"
- inkscape:label="r R"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path47"
- d="m 184,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="188.39003"
- y="138.28395"
- id="text215"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">R</text>
- </g>
- <g
- id="g4321"
- inkscape:label="t T"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path49"
- d="m 213,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="219.04961"
- y="138.28395"
- id="text219"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">T</text>
- </g>
- <g
- id="g4316"
- inkscape:label="y Y"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path51"
- d="m 243,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="248.72017"
- y="138.28395"
- id="text223"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">Y</text>
- </g>
- <g
- id="g4311"
- inkscape:label="u U"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path53"
- d="m 273,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="278.39075"
- y="138.28395"
- id="text227"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">U</text>
- </g>
- <g
- id="g4306"
- inkscape:label="i I"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path55"
- d="m 302,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="311.02859"
- y="138.28395"
- id="text231"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">I</text>
- </g>
- <g
- id="g4301"
- inkscape:label="o O"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path57"
- d="m 332,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="336.74319"
- y="138.28395"
- id="text235"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">O</text>
- </g>
- <g
- id="g4296"
- inkscape:label="p P"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path59"
- d="m 362,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="367.40256"
- y="138.28395"
- id="text239"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">P</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4511"
- inkscape:label="a A">
- <path
- inkscape:connector-curvature="0"
- d="m 103,147 h 19 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path65"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text243"
- y="163.99854"
- x="107.29005"
- transform="scale(1.0007154,0.99928514)">A</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4516"
- inkscape:label="s S">
- <path
- inkscape:connector-curvature="0"
- d="m 132,147 h 20 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path67"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text247"
- y="163.99854"
- x="137.95012"
- transform="scale(1.0007154,0.99928514)">S</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4521"
- inkscape:label="d D">
- <path
- inkscape:connector-curvature="0"
- d="m 162,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path69"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text251"
- y="163.99854"
- x="166.63159"
- transform="scale(1.0007154,0.99928514)">D</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4526"
- inkscape:label="f F">
- <path
- inkscape:connector-curvature="0"
- d="m 192,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path71"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text255"
- y="163.99854"
- x="197.29166"
- transform="scale(1.0007154,0.99928514)">F</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4531"
- inkscape:label="g G">
- <path
- inkscape:connector-curvature="0"
- d="m 221,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path73"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text259"
- y="163.99854"
- x="225.97284"
- transform="scale(1.0007154,0.99928514)">G</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4536"
- inkscape:label="h H">
- <path
- inkscape:connector-curvature="0"
- d="m 251,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path75"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text263"
- y="163.99854"
- x="255.64342"
- transform="scale(1.0007154,0.99928514)">H</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4541"
- inkscape:label="j J">
- <path
- inkscape:connector-curvature="0"
- d="m 281,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path77"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text267"
- y="163.99854"
- x="287.29208"
- transform="scale(1.0007154,0.99928514)">J</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4546"
- inkscape:label="k K">
- <path
- inkscape:connector-curvature="0"
- d="m 310,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path79"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text271"
- y="163.99854"
- x="314.98465"
- transform="scale(1.0007154,0.99928514)">K</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4551"
- inkscape:label="l L">
- <path
- inkscape:connector-curvature="0"
- d="m 340,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path81"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text275"
- y="163.99854"
- x="345.64444"
- transform="scale(1.0007154,0.99928514)">L</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4586"
- inkscape:label="z Z"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 113,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
- id="path87-3"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text279"
- y="188.72411"
- x="119.15855"
- transform="scale(1.0007154,0.99928514)">Z</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4581"
- inkscape:label="x X"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 143,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
- id="path89-6"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text283"
- y="188.72411"
- x="148.82933"
- transform="scale(1.0007154,0.99928514)">X</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4576"
- inkscape:label="c C"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 173,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
- id="path91-7"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text287"
- y="188.72411"
- x="178.50011"
- transform="scale(1.0007154,0.99928514)">C</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4571"
- inkscape:label="v V"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 202,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c 0,0 -1,-1 -1,-3 v -17 c 0,-1 1,-3 1,-3 z"
- id="path195"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text291"
- y="188.72411"
- x="208.16988"
- transform="scale(1.0007154,0.99928514)">V</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4566"
- inkscape:label="b B"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 233,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path93"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text295"
- y="188.72411"
- x="237.84096"
- transform="scale(1.0007154,0.99928514)">B</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4561"
- inkscape:label="n N"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 263,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path95"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text299"
- y="188.72411"
- x="267.51193"
- transform="scale(1.0007154,0.99928514)">N</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4556"
- inkscape:label="m M"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 293,172 h 19 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -19 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path97"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text303"
- y="188.72411"
- x="296.1933"
- transform="scale(1.0007154,0.99928514)">M</text>
- </g>
- <g
- id="g4818"
- inkscape:label=". :"
- style="stroke-width:0.47631353"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 352,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path101"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928513)"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- id="text719"
- y="189.66107"
- x="359.58276">.</text>
- <text
- x="359.58276"
- y="181.64532"
- id="text4834"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928512)">:</text>
- </g>
- <g
- id="g4813"
- inkscape:label=", ;"
- style="stroke-width:0.47631353"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 322,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path99"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- id="text727"
- y="181.64532"
- x="330.00806"
- transform="scale(1.0007154,0.99928512)">;</text>
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- y="189.66107"
- x="330.00806"
- transform="scale(1.0007154,0.99928512)"
- id="text4826">,</text>
- </g>
- <g
- style="stroke-width:0.47631353"
- inkscape:label="1"
- id="g2845"
- transform="translate(-13.353469,-45.783327)">
- <path
- inkscape:connector-curvature="0"
- d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path2839"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2841"
- y="138.28395"
- x="101.07153"
- transform="scale(1.0007154,0.99928513)">1</text>
- </g>
- <g
- style="stroke-width:0.47631353"
- inkscape:label="2"
- id="g2853"
- transform="translate(-13.353469,-45.783327)">
- <path
- inkscape:connector-curvature="0"
- d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path2847"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2849"
- y="138.28395"
- x="130.18704"
- transform="scale(1.0007154,0.99928513)">2</text>
- </g>
- <g
- inkscape:label="3"
- id="g2861"
- style="stroke-width:0.47631353"
- transform="translate(-13.353469,-45.783327)">
- <path
- inkscape:connector-curvature="0"
- d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path2855"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2857"
- y="138.28395"
- x="159.70854"
- transform="scale(1.0007154,0.99928514)">3</text>
- </g>
- <g
- id="g2957"
- inkscape:label="4"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 170.64653,94.293059 h 19 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 V 97.293059 c 0,-2 2,-3 3,-3 z"
- id="path2865"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2867"
- y="111.55791"
- x="176.39188"
- transform="scale(1.0007154,0.99928514)">4</text>
- </g>
- <g
- id="g2962"
- inkscape:label="5"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 199.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2873"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2875"
- y="111.55791"
- x="205.70567"
- transform="scale(1.0007154,0.99928514)">5</text>
- </g>
- <g
- id="g2967"
- inkscape:label="6"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 229.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2881"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2883"
- y="111.55791"
- x="236.15851"
- transform="scale(1.0007154,0.99928514)">6</text>
- </g>
- <g
- id="g2972"
- inkscape:label="7"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 259.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2889"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2891"
- y="111.55791"
- x="266.06564"
- transform="scale(1.0007154,0.99928514)">7</text>
- </g>
- <g
- id="g2977"
- inkscape:label="8"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 288.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2897"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2899"
- y="111.55791"
- x="295.08231"
- transform="scale(1.0007154,0.99928514)">8</text>
- </g>
- <g
- id="g2982"
- inkscape:label="9 -"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 318.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2905"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2907"
- y="111.55791"
- x="325.05408"
- transform="scale(1.0007154,0.99928514)">9</text>
- <text
- transform="scale(1.0007154,0.99928511)"
- x="335.72681"
- y="102.42173"
- id="text806"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826">-</text>
- </g>
- <g
- id="g2987"
- inkscape:label="0 +"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 348.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2913"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2915"
- y="111.55791"
- x="355.05984"
- transform="scale(1.0007154,0.99928514)">0</text>
- <text
- transform="scale(1.0007154,0.99928511)"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- id="text804"
- y="102.42173"
- x="365.30151">+</text>
- </g>
- </g>
- <g
- transform="translate(335.89988,-58.934803)"
- id="g3544"
- inkscape:label="Esc"
- style="stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path105"
- d="m 47.948645,115.07509 h 39.076386 c 1,0 3,1 3,3 v 18 c 0,1 -2,3 -3,3 H 47.948645 c -2,0 -3,-2 -3,-3 v -18 c 0,-2 1,-3 3,-3 z"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="sssssssss" />
- <text
- transform="scale(1.0007154,0.99928512)"
- style="font-weight:normal;font-size:9.37966251px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- id="text469"
- y="130.02028"
- x="59.288635">Esc</text>
- </g>
- <g
- inkscape:label="Enter"
- id="g4291"
- style="stroke-width:0.47631353"
- transform="translate(0,-19.076386)">
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path3616"
- d="m 368.68274,170 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 54.24217 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -260.23633,1080.8125 v 15.7949 h -38.68555 v -3 l -6.91992,4 6.91992,4 v -3.0019 h 40.6836 v -17.793 z"
- transform="matrix(0.47690966,0,0,0.47690966,531.12074,-361.18588)"
- id="path6545"
- inkscape:connector-curvature="0" />
- </g>
- <g
- inkscape:label="BackSpace"
- id="g4287"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- transform="translate(2.3648311e-6,-28.614579)">
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path3624"
- d="m 391.97749,144 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 30.94742 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -268.72656,1011.1777 -6.91992,4 6.91992,4 v -3.0019 h 29.18945 v -1.9981 h -29.18945 z"
- transform="matrix(0.47690966,0,0,0.47690966,531.12074,-351.64769)"
- id="path11623-1-0"
- inkscape:connector-curvature="0" />
- </g>
- <g
- id="g934"
- inkscape:label="CapsLock">
- <g
- inkscape:label="inactive"
- id="g942"
- style="display:inline;fill-rule:evenodd;stroke-width:0.47631353"
- transform="translate(0,-19.076386)">
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path936-3"
- d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
- inkscape:connector-curvature="0" />
- <text
- x="69.789322"
- y="156.71973"
- id="text938-5"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
- transform="scale(1.0007154,0.99928515)">Caps</text>
- <text
- x="69.789322"
- y="166.5585"
- id="text940"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
- transform="scale(1.0007154,0.99928515)">Lock</text>
- </g>
- <g
- transform="translate(0,-19.076386)"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4429"
- inkscape:label="active">
- <path
- inkscape:connector-curvature="0"
- d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
- id="path199"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <text
- transform="scale(1.0007154,0.99928515)"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
- id="text647"
- y="156.71973"
- x="69.789322">Caps</text>
- <text
- transform="scale(1.0007154,0.99928515)"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
- id="text651"
- y="166.5585"
- x="69.789322">Lock</text>
- </g>
- </g>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect2130"
- width="361.89996"
- height="30.150299"
- x="64.024956"
- y="15.771065"
- rx="3.8152773"
- ry="3.8152773"
- inkscape:label="Field" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="72.50132"
- y="38.296417"
- id="text1309"
- inkscape:label="Value"><tspan
- sodipodi:role="line"
- id="tspan1307"
- x="72.50132"
- y="38.296417"
- style="text-align:start;text-anchor:start;stroke-width:0.47690967px">text</tspan></text>
- <g
- id="g437"
- inkscape:label="Shift">
- <g
- id="g421"
- inkscape:label="inactive">
- <path
- inkscape:connector-curvature="0"
- d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- id="path910"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <text
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text912"
- y="177.90059"
- x="392.55679"
- transform="scale(1.0007154,0.99928513)">Shift</text>
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path856"
- d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
- inkscape:connector-curvature="0" />
- <text
- x="75.85218"
- y="177.90059"
- id="text858"
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928513)">Shift</text>
- </g>
- <g
- id="g413"
- inkscape:label="active">
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path551"
- d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928513)"
- x="392.55679"
- y="177.90059"
- id="text629"
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;stroke-width:0.36866826">Shift</text>
- <path
- inkscape:connector-curvature="0"
- d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
- id="path879"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <text
- transform="scale(1.0007154,0.99928513)"
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- id="text881"
- y="177.90059"
- x="75.85218">Shift</text>
- </g>
- </g>
- <text
- transform="scale(0.96824588,1.0327955)"
- id="text471"
- y="12.333657"
- x="252.9579"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="Info"><tspan
- style="stroke-width:0.30784383px"
- y="12.333657"
- x="252.9579"
- id="tspan469"
- sodipodi:role="line">information</tspan></text>
- <rect
- style="opacity:0.18600003;fill:#de2cc9;fill-opacity:1;stroke:none;stroke-width:0.31677353"
- id="rect4563"
- width="381.45959"
- height="14.110301"
- x="54.211086"
- y="1.2654642"
- inkscape:label="position" />
- </g>
- <g
- inkscape:label="HMI:Slider@/PUMP0/SLOTH"
- transform="matrix(7.5590552,0,0,7.5590552,-248.554,584.0829)"
- id="g110-0-9">
- <g
- inkscape:label="setpoint"
- style="opacity:0.5;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.76565915"
- inkscape:corner7="-0.15304809 : -0.15652183 : 0.051043755 : 1"
- inkscape:corner0="-0.13109479 : -0.13697746 : 0 : 1"
- inkscape:perspectiveID="#perspective258"
- id="g256"
- sodipodi:type="inkscape:box3d">
- <path
- style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
- points="69.054145,5.4029493 71.910946,3.7246414 71.910946,0.053890203 69.054145,1.5165601 "
- d="M 69.054145,1.5165601 V 5.4029493 L 71.910946,3.7246414 V 0.0538902 Z"
- inkscape:box3dsidetype="6"
- id="path244"
- sodipodi:type="inkscape:box3dside" />
- <path
- style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
- points="72.352867,6.8282124 75.092002,5.0278603 71.910946,3.7246414 69.054145,5.4029493 "
- d="M 69.054145,5.4029493 72.352867,6.8282124 75.092002,5.0278603 71.910946,3.7246414 Z"
- inkscape:box3dsidetype="13"
- id="path246"
- sodipodi:type="inkscape:box3dside" />
- <path
- style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
- points="75.092002,1.2673703 75.092002,5.0278603 71.910946,3.7246414 71.910946,0.053890203 "
- d="m 71.910946,0.0538902 3.181056,1.2134801 v 3.76049 L 71.910946,3.7246414 Z"
- inkscape:box3dsidetype="11"
- id="path248"
- sodipodi:type="inkscape:box3dside" />
- <path
- style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
- points="72.352867,2.8410867 75.092002,1.2673703 71.910946,0.053890203 69.054145,1.5165601 "
- d="M 69.054145,1.5165601 72.352867,2.8410867 75.092002,1.2673703 71.910946,0.0538902 Z"
- inkscape:box3dsidetype="5"
- id="path250"
- sodipodi:type="inkscape:box3dside" />
- <path
- style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
- points="72.352867,6.8282124 75.092002,5.0278603 75.092002,1.2673703 72.352867,2.8410867 "
- d="m 72.352867,2.8410867 v 3.9871257 l 2.739135,-1.8003521 v -3.76049 z"
- inkscape:box3dsidetype="14"
- id="path252"
- sodipodi:type="inkscape:box3dside" />
- <path
- style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1"
- points="72.352867,2.8410867 72.352867,6.8282124 69.054145,5.4029493 69.054145,1.5165601 "
- d="m 69.054145,1.5165601 3.298722,1.3245266 V 6.8282124 L 69.054145,5.4029493 Z"
- inkscape:box3dsidetype="3"
- id="path254"
- sodipodi:type="inkscape:box3dside" />
- </g>
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff0000;stroke-width:0.52375954;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m 71.94894,3.6581855 79.3256,0.040092"
- id="path90-9-3"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- inkscape:label="range" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="68.771873"
- y="5.501111"
- id="text96-6-0"
- inkscape:label="min"><tspan
- sodipodi:role="line"
- id="tspan94-0-62"
- x="68.771873"
- y="5.501111"
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
- <text
- id="text100-6-6"
- y="5.501111"
- x="159.67337"
- style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="max"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="5.501111"
- x="159.67337"
- sodipodi:role="line"
- id="tspan1409-1">1000</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:7.78479624px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.19461991px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="-115.32294"
- y="-9.0188799"
- id="text104-6-8"
- inkscape:label="value"
- transform="scale(-1)"><tspan
- sodipodi:role="line"
- x="-115.32294"
- y="-9.0188799"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.19461991px"
- id="tspan102-1-7">000</tspan></text>
- <g
- sodipodi:type="inkscape:box3d"
- id="g930"
- inkscape:perspectiveID="#perspective503"
- inkscape:corner0="-0.13109479 : -0.13697746 : 0 : 1"
- inkscape:corner7="-0.15304809 : -0.15652183 : 0.051043755 : 1"
- style="fill:#ff0000;fill-opacity:1;stroke:none"
- inkscape:label="handle"
- transform="translate(0.01,0.01)">
- <path
- sodipodi:type="inkscape:box3dside"
- id="path932"
- inkscape:box3dsidetype="6"
- d="M 69.751604,1.9575481 V 4.9331975 L 71.93894,3.6481857 V 0.8376415 Z"
- points="69.751604,4.9331975 71.93894,3.6481857 71.93894,0.8376415 69.751604,1.9575481 "
- style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path940"
- inkscape:box3dsidetype="13"
- d="M 69.751604,4.9331975 72.2773,6.0244633 74.374544,4.6460073 71.93894,3.6481857 Z"
- points="72.2773,6.0244633 74.374544,4.6460073 71.93894,3.6481857 69.751604,4.9331975 "
- style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path942"
- inkscape:box3dsidetype="11"
- d="m 71.93894,0.8376415 2.435604,0.9291122 V 4.6460073 L 71.93894,3.6481857 Z"
- points="74.374544,1.7667537 74.374544,4.6460073 71.93894,3.6481857 71.93894,0.8376415 "
- style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path934"
- inkscape:box3dsidetype="5"
- d="M 69.751604,1.9575481 72.2773,2.971684 74.374544,1.7667537 71.93894,0.8376415 Z"
- points="72.2773,2.971684 74.374544,1.7667537 71.93894,0.8376415 69.751604,1.9575481 "
- style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path938"
- inkscape:box3dsidetype="14"
- d="m 72.2773,2.971684 v 3.0527793 l 2.097244,-1.378456 V 1.7667537 Z"
- points="72.2773,6.0244633 74.374544,4.6460073 74.374544,1.7667537 72.2773,2.971684 "
- style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path936"
- inkscape:box3dsidetype="3"
- d="M 69.751604,1.9575481 72.2773,2.971684 V 6.0244633 L 69.751604,4.9331975 Z"
- points="72.2773,2.971684 72.2773,6.0244633 69.751604,4.9331975 69.751604,1.9575481 "
- style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
- </g>
- </g>
- <g
- id="g1292-3"
- inkscape:label="HMI:Input@/RADIOSTATE"
- transform="matrix(0.94144976,0,0,1.7212489,176.35468,-2117.077)">
- <g
- id="g2530"
- inkscape:label="=3">
- <rect
- style="display:inline;fill:#0009ff;fill-opacity:1;stroke:none;stroke-width:0.24259248"
- id="rect1273-6-3"
- width="57.391823"
- height="24.148804"
- x="230.03636"
- y="1238.2637"
- inkscape:label="3" />
- <g
- transform="translate(-213.152,55.750293)"
- id="g2520-5"
- inkscape:label="HMI:Switch@/RADIOSTATE"
- style="fill:#0009ff;fill-opacity:1">
- <rect
- inkscape:label="3"
- y="1206.6622"
- x="443.18835"
- height="24.148754"
- width="57.39183"
- id="rect1273-6-9-9-9"
- style="display:inline;fill:#0009ff;fill-opacity:1;stroke:none;stroke-width:0.24259226" />
- </g>
- </g>
- <g
- id="g2527"
- inkscape:label="=2">
- <rect
- style="display:inline;fill:#00ffed;fill-opacity:1;stroke:none;stroke-width:0.24259254"
- id="rect1273-6-56"
- width="57.391857"
- height="24.148804"
- x="313.84549"
- y="1238.2637"
- inkscape:label="2" />
- <g
- transform="translate(-303.62283,32.70105)"
- id="g2520-2"
- inkscape:label="HMI:Switch@/RADIOSTATE">
- <rect
- inkscape:label="2"
- y="1229.7114"
- x="617.46832"
- height="24.148754"
- width="57.39183"
- id="rect1273-6-9-9-0"
- style="display:inline;fill:#00ffed;fill-opacity:1;stroke:none;stroke-width:0.24259226" />
- </g>
- </g>
- <g
- id="g2524"
- inkscape:label="=1">
- <rect
- style="display:inline;fill:#3eff00;fill-opacity:1;stroke:none;stroke-width:0.24182089"
- id="rect1273-6-2"
- width="57.027344"
- height="24.148796"
- x="146.22725"
- y="1238.2637"
- inkscape:label="1" />
- <g
- transform="translate(-213.152,55.750293)"
- id="g2520-23"
- inkscape:label="HMI:Switch@/RADIOSTATE">
- <rect
- inkscape:label="1"
- y="1206.6622"
- x="359.37924"
- height="24.148754"
- width="57.39183"
- id="rect1273-6-9-9-7"
- style="display:inline;fill:#3eff00;fill-opacity:1;stroke:none;stroke-width:0.24259226" />
- </g>
- </g>
- <g
- id="g2501"
- inkscape:label="=0"
- transform="translate(-260.62575)">
- <rect
- inkscape:label="0"
- y="1238.2637"
- x="323.04385"
- height="24.148754"
- width="57.39183"
- id="rect1273-6-9"
- style="display:inline;fill:#ffea00;fill-opacity:1;stroke:none;stroke-width:0.24259225" />
- <g
- id="g2520"
- inkscape:label="HMI:Switch@/RADIOSTATE">
- <rect
- inkscape:label="0"
- y="1262.4125"
- x="323.04385"
- height="24.148754"
- width="57.39183"
- id="rect1273-6-9-9"
- style="display:inline;fill:#ffea00;fill-opacity:1;stroke:none;stroke-width:0.24259226" />
- </g>
- </g>
- </g>
- <g
- id="g1047"
- inkscape:label="HMI:CircularBar@/PUMP0/SLOTH"
- transform="matrix(0.39840034,0,0,0.35920948,-97.955902,106.13488)">
- <path
- inkscape:label="range"
- sodipodi:open="true"
- d="M 1079.626,411.60913 A 184.25998,167.44942 0 0 1 874.51345,308.78336 184.25998,167.44942 0 0 1 946.20137,106.11681 184.25998,167.44942 0 0 1 1178.8257,131.16507"
- sodipodi:end="5.5191826"
- sodipodi:start="1.3860423"
- sodipodi:ry="167.44942"
- sodipodi:rx="184.25998"
- sodipodi:cy="247.00946"
- sodipodi:cx="1045.7766"
- sodipodi:type="arc"
- id="path1044"
- style="opacity:1;fill:none;fill-opacity:1;stroke:#fe00dc;stroke-width:22.07197189;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:90.1384964px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff00ca;fill-opacity:1;stroke:none;stroke-width:2.25346255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1046.8701"
- y="258.16129"
- id="text1051"
- transform="scale(0.91814752,1.0891496)"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1049"
- x="1046.8701"
- y="258.16129"
- style="fill:#ff00ca;fill-opacity:1;stroke:none;stroke-width:2.25346255px;stroke-opacity:1">000</tspan></text>
- <path
- inkscape:label="path"
- sodipodi:open="true"
- d="M 1083.68,410.87778 A 184.25998,167.44942 0 0 1 875.42544,310.83196 184.25998,167.44942 0 0 1 945.58759,106.47662 184.25998,167.44942 0 0 1 1179.4956,131.8038"
- sodipodi:end="5.524452"
- sodipodi:start="1.3636114"
- sodipodi:ry="167.44942"
- sodipodi:rx="184.25998"
- sodipodi:cy="247.00946"
- sodipodi:cx="1045.7766"
- sodipodi:type="arc"
- id="path1044-3"
- style="opacity:1;fill:none;fill-opacity:1;stroke:#00fff1;stroke-width:40;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- <g
- id="g1047-6"
- inkscape:label="HMI:CircularSlider@/PUMP0/SLOTH"
- transform="matrix(0.45707797,0,0,0.45707797,33.744118,80.994747)">
- <path
- inkscape:label="range"
- d="M 970.29569,399.76446 A 184.25998,167.44942 0 0 1 866.26395,284.77467 184.25998,167.44942 0 0 1 904.10823,139.93753"
- sodipodi:end="3.8353474"
- sodipodi:start="1.9928597"
- sodipodi:ry="167.44942"
- sodipodi:rx="184.25998"
- sodipodi:cy="247.00946"
- sodipodi:cx="1045.7766"
- sodipodi:type="arc"
- id="path1044-7"
- style="opacity:1;fill:none;fill-opacity:1;stroke:#fe00dc;stroke-width:22.07197189;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- sodipodi:open="true" />
- <g
- sodipodi:type="inkscape:box3d"
- id="g930-2"
- inkscape:perspectiveID="#perspective503-6"
- inkscape:corner0="-0.086129988 : -0.14445971 : 0 : 1"
- inkscape:corner7="-0.10808329 : -0.16400408 : 0.051043755 : 1"
- style="fill:#ff0000;fill-opacity:1;stroke:none"
- inkscape:label="handle"
- inkscape:transform-center-x="8"
- inkscape:transform-center-y="98">
- <path
- sodipodi:type="inkscape:box3dside"
- id="path932-9"
- inkscape:box3dsidetype="6"
- d="m 919.8592,371.09875 v 61.75093 l 51.05152,-25.59855 v -58.48432 z"
- points="919.8592,432.84968 970.91072,407.25113 970.91072,348.76681 919.8592,371.09875 "
- style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-width:21.82598114px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path940-1"
- inkscape:box3dsidetype="13"
- d="m 919.8592,432.84968 49.77112,22.08624 49.54588,-27.39007 -48.26548,-20.29472 z"
- points="969.63032,454.93592 1019.1762,427.54585 970.91072,407.25113 919.8592,432.84968 "
- style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-width:21.82598114px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path942-2"
- inkscape:box3dsidetype="11"
- d="m 970.91072,348.76681 48.26548,18.93313 v 59.84591 l -48.26548,-20.29472 z"
- points="1019.1762,367.69994 1019.1762,427.54585 970.91072,407.25113 970.91072,348.76681 "
- style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-width:21.82598114px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path934-7"
- inkscape:box3dsidetype="5"
- d="m 919.8592,371.09875 49.77112,20.56633 49.54588,-23.96514 -48.26548,-18.93313 z"
- points="969.63032,391.66508 1019.1762,367.69994 970.91072,348.76681 919.8592,371.09875 "
- style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-width:21.82598114px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path938-0"
- inkscape:box3dsidetype="14"
- d="m 969.63032,391.66508 v 63.27084 l 49.54588,-27.39007 v -59.84591 z"
- points="969.63032,454.93592 1019.1762,427.54585 1019.1762,367.69994 969.63032,391.66508 "
- style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-width:21.82598114px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
- <path
- sodipodi:type="inkscape:box3dside"
- id="path936-9"
- inkscape:box3dsidetype="3"
- d="m 919.8592,371.09875 49.77112,20.56633 v 63.27084 L 919.8592,432.84968 Z"
- points="969.63032,391.66508 969.63032,454.93592 919.8592,432.84968 919.8592,371.09875 "
- style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-width:21.82598114px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" />
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:90.1384964px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff00ca;fill-opacity:1;stroke:none;stroke-width:2.25346255px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1046.8701"
- y="258.16129"
- id="text1051-5"
- transform="scale(0.91814752,1.0891496)"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1049-3"
- x="1046.8701"
- y="258.16129"
- style="fill:#ff00ca;fill-opacity:1;stroke:none;stroke-width:2.25346255px;stroke-opacity:1">000</tspan></text>
- </g>
- <g
- transform="translate(-289.17513,-33.060654)"
- id="g4791-6"
- inkscape:label="HMI:ToggleButton@/TOGGLE1">
- <rect
- inkscape:label="inactive"
- y="47.187904"
- x="906.51086"
- height="44.547726"
- width="45.254833"
- id="rect4772-5"
- style="opacity:1;fill:#ff0015;fill-opacity:1;stroke:none" />
- <rect
- inkscape:label="active"
- y="47.187904"
- x="906.51086"
- height="44.547726"
- width="45.254833"
- id="rect4772-3-7"
- style="opacity:1;fill:#00ff03;fill-opacity:1;stroke:none" />
- </g>
- <g
- transform="translate(-287.05529,41.033314)"
- id="g479hgjk"
- inkscape:label="HMI:Button@/TOGGLE">
- <rect
- inkscape:label="active"
- y="46.127251"
- x="906.51086"
- height="44.547726"
- width="45.254833"
- id="rect47fuzkj"
- style="opacity:1;fill:#00ff03;fill-opacity:1;stroke:none" />
- <rect
- inkscape:label="inactive"
- y="46.127251"
- x="906.51086"
- height="44.547726"
- width="45.254833"
- id="rect477hjoj"
- style="opacity:1;fill:#ff0015;fill-opacity:1;stroke:none" />
- </g>
- <g
- id="g1112"
- inkscape:label="HMI:AnimateRotation@/SPEED">
- <circle
- r="32.057827"
- cy="436.18585"
- cx="747.05347"
- id="path1380"
- style="fill:#ececec;fill-opacity:1;stroke:#ff0000;stroke-width:2.95733476;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <rect
- y="286.18585"
- x="597.05353"
- height="300"
- width="300"
- id="rect1382"
- style="opacity:0;fill:#ececec;fill-opacity:1;stroke:none;stroke-width:3.69000006;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="sssssss"
- inkscape:connector-curvature="0"
- id="path1388"
- d="m 719.75481,403.83452 c 1.9692,9.54564 9.417,-4.37059 26.6751,-4.06174 27.2477,0.48762 30.0401,21.24497 35.5749,12.81174 6.6594,-10.14673 12.6699,-22.7446 14.75,-33.25 13.5509,-68.43783 -46.4736,-97.18589 -72,-91.49999 -40.88858,9.10778 -49.54078,47.21136 -31.99998,71.75 13.16428,18.41615 23.37448,26.67508 26.99998,44.24999 z"
- style="fill:#fd0000;fill-opacity:1;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="sssssss"
- inkscape:connector-curvature="0"
- id="path1388-9"
- d="m 789.45321,432.25975 c -8.9783,-3.79302 -1.7422,10.23457 -11.7862,24.27224 -15.8577,22.16324 -34.5364,12.68834 -30.7308,22.03024 4.5788,11.24 11.5443,23.3361 19.0162,31.0083 48.6752,49.9808 106.3992,16.8549 116.1963,-7.3926 15.6932,-38.84015 -10.7791,-67.57972 -40.9378,-67.05341 -22.634,0.39495 -35.2273,4.11873 -51.7577,-2.86477 z"
- style="fill:#fd0000;fill-opacity:1;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- sodipodi:nodetypes="sssssss"
- inkscape:connector-curvature="0"
- id="path1388-9-8"
- d="m 730.85671,475.85643 c 7.5732,-6.1355 -8.2092,-6.3552 -15.8654,-21.82523 -12.0882,-24.42445 5.0646,-36.44319 -4.9688,-37.48364 -12.07218,-1.25186 -26.02318,-0.80116 -36.30958,2.17903 -67.0109,19.41388 -64.9607,85.93594 -48.1806,105.99474 26.8787,32.1304 64.6969,22.3051 78.43058,-4.5502 10.3071,-20.1549 12.9505,-33.0184 26.8938,-44.3147 z"
- style="fill:#fd0000;fill-opacity:1;stroke:#ff0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <animateTransform
- attributeName="transform"
- attributeType="XML"
- type="rotate"
- from="0 1049 278"
- to="360 1049 278"
- dur="1s"
- repeatCount="indefinite" />
- </g>
- <g
- id="g1093"
- inkscape:label="HMI:CustomHtml">
- <rect
- inkscape:label="container"
- y="12"
- x="818"
- height="323"
- width="452"
- id="rect1072"
- style="opacity:0.29800002;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:1.11057007" />
- <text
- inkscape:label="code"
- transform="scale(0.57360572,1.7433578)"
- id="text1076"
- y="23.059681"
- x="1433.04"
- style="font-style:normal;font-weight:normal;font-size:9.29032898px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.87096828px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.87096828px"
- id="tspan1078"
- y="23.059681"
- x="1433.04"
- sodipodi:role="line"> <img xmlns="http://www.w3.org/1999/xhtml" id="img" src="https://thumbs.gfycat.com/ImpoliteSoupyKakapo-size_restricted.gif" width="100%" height="80%" /></tspan><tspan
- style="stroke-width:0.87096828px"
- id="tspan1080"
- y="34.672592"
- x="1433.04"
- sodipodi:role="line"> <a xmlns="http://www.w3.org/1999/xhtml" href='www.gmail.com'>Gmail</a></tspan><tspan
- style="stroke-width:0.87096828px"
- id="tspan1082"
- y="46.285503"
- x="1433.04"
- sodipodi:role="line"> <p xmlns="http://www.w3.org/1999/xhtml">Koj kurac to ne dela</p></tspan><tspan
- style="stroke-width:0.87096828px"
- id="tspan1084"
- y="57.898415"
- x="1433.04"
- sodipodi:role="line" /></text>
- </g>
-</svg>
--- a/tests/svghmi_widgets/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="PYRO://127.0.0.1:61284">
- <TargetType/>
- <Libraries Enable_SVGHMI_Library="true"/>
-</BeremizRoot>
--- a/tests/svghmi_widgets/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,922 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="Unknown" productName="Unnamed" productVersion="1" creationDateTime="2019-08-06T14:23:42"/>
- <contentHeader name="Unnamed" modificationDateTime="2020-12-01T09:52:25">
- <coordinateInfo>
- <fbd>
- <scaling x="5" y="5"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="MainStuff" pouType="program">
- <interface>
- <localVars>
- <variable name="TargetPressure">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- <variable name="selection">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- <variable name="Pump0">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="Pump1">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="Pump2">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="Pump3">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="Pump4">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="Pump5">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="Pump6">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- <variable name="Pump7">
- <type>
- <derived name="PumpControl"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <block localId="4" typeName="PumpControl" instanceName="Pump0" executionOrderId="0" height="40" width="127">
- <position x="595" y="50"/>
- <inputVariables>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="5">
- <position x="595" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
- <position x="445" y="65"/>
- <connectionPointOut>
- <relPosition x="125" y="15"/>
- </connectionPointOut>
- <expression>TargetPressure</expression>
- </inVariable>
- <block localId="1" typeName="PumpControl" instanceName="Pump1" executionOrderId="0" height="40" width="127">
- <position x="595" y="180"/>
- <inputVariables>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="5">
- <position x="595" y="210"/>
- <position x="582" y="210"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <block localId="2" typeName="PumpControl" instanceName="Pump2" executionOrderId="0" height="40" width="127">
- <position x="595" y="110"/>
- <inputVariables>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="5">
- <position x="595" y="140"/>
- <position x="582" y="140"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <block localId="3" typeName="PumpControl" instanceName="Pump3" executionOrderId="0" height="40" width="127">
- <position x="595" y="245"/>
- <inputVariables>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="5">
- <position x="595" y="275"/>
- <position x="582" y="275"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <block localId="6" typeName="PumpControl" instanceName="Pump4" executionOrderId="0" height="40" width="127">
- <position x="595" y="315"/>
- <inputVariables>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="5">
- <position x="595" y="345"/>
- <position x="582" y="345"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <block localId="7" typeName="PumpControl" instanceName="Pump5" executionOrderId="0" height="40" width="127">
- <position x="595" y="395"/>
- <inputVariables>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="5">
- <position x="595" y="425"/>
- <position x="582" y="425"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <block localId="8" typeName="PumpControl" instanceName="Pump6" executionOrderId="0" height="40" width="127">
- <position x="595" y="475"/>
- <inputVariables>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="5">
- <position x="595" y="505"/>
- <position x="582" y="505"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- <block localId="9" typeName="PumpControl" instanceName="Pump7" executionOrderId="0" height="40" width="127">
- <position x="595" y="545"/>
- <inputVariables>
- <variable formalParameter="TargetPressure">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="5">
- <position x="595" y="575"/>
- <position x="582" y="575"/>
- <position x="582" y="80"/>
- <position x="570" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables/>
- </block>
- </FBD>
- </body>
- </pou>
- <pou name="PumpControl" pouType="functionBlock">
- <interface>
- <localVars>
- <variable name="Pump">
- <type>
- <derived name="HMI_NODE"/>
- </type>
- </variable>
- <variable name="Pressure">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- </localVars>
- <inputVars>
- <variable name="TargetPressure">
- <type>
- <INT/>
- </type>
- </variable>
- </inputVars>
- <localVars>
- <variable name="Sloth">
- <type>
- <derived name="HMI_INT"/>
- </type>
- </variable>
- <variable name="boolout">
- <type>
- <derived name="HMI_BOOL"/>
- </type>
- </variable>
- <variable name="boolin">
- <type>
- <derived name="HMI_BOOL"/>
- </type>
- <initialValue>
- <simpleValue value="True"/>
- </initialValue>
- </variable>
- <variable name="strout">
- <type>
- <derived name="HMI_STRING"/>
- </type>
- </variable>
- <variable name="strin">
- <type>
- <derived name="HMI_STRING"/>
- </type>
- <initialValue>
- <simpleValue value="blup"/>
- </initialValue>
- </variable>
- <variable name="floating">
- <type>
- <derived name="HMI_REAL"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <inVariable localId="5" executionOrderId="0" height="30" width="125" negated="false">
- <position x="150" y="100"/>
- <connectionPointOut>
- <relPosition x="125" y="15"/>
- </connectionPointOut>
- <expression>TargetPressure</expression>
- </inVariable>
- <inOutVariable localId="4" executionOrderId="0" height="30" width="60" negatedOut="false" negatedIn="false">
- <position x="510" y="80"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="6" formalParameter="OUT">
- <position x="510" y="95"/>
- <position x="470" y="95"/>
- </connection>
- </connectionPointIn>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>Sloth</expression>
- </inOutVariable>
- <block localId="6" typeName="ADD" executionOrderId="0" height="60" width="65">
- <position x="405" y="65"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="4">
- <position x="405" y="95"/>
- <position x="385" y="95"/>
- <position x="385" y="50"/>
- <position x="580" y="50"/>
- <position x="580" y="95"/>
- <position x="570" y="95"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="7" formalParameter="OUT">
- <position x="405" y="115"/>
- <position x="360" y="115"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="1" executionOrderId="0" height="30" width="75" negated="false">
- <position x="150" y="135"/>
- <connectionPointOut>
- <relPosition x="75" y="15"/>
- </connectionPointOut>
- <expression>Pressure</expression>
- </inVariable>
- <block localId="7" typeName="SUB" executionOrderId="0" height="60" width="65">
- <position x="295" y="85"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="5">
- <position x="295" y="115"/>
- <position x="275" y="115"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="1">
- <position x="295" y="135"/>
- <position x="285" y="135"/>
- <position x="285" y="150"/>
- <position x="225" y="150"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="2" executionOrderId="0" height="30" width="60" negated="false">
- <position x="240" y="190"/>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>Sloth</expression>
- </inVariable>
- <outVariable localId="3" executionOrderId="0" height="30" width="75" negated="false">
- <position x="435" y="205"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="8" formalParameter="OUT">
- <position x="435" y="220"/>
- <position x="410" y="220"/>
- </connection>
- </connectionPointIn>
- <expression>Pressure</expression>
- </outVariable>
- <block localId="8" typeName="DIV" executionOrderId="0" height="60" width="65">
- <position x="345" y="190"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="2">
- <position x="345" y="220"/>
- <position x="335" y="220"/>
- <position x="335" y="205"/>
- <position x="300" y="205"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="9">
- <position x="345" y="240"/>
- <position x="300" y="240"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="9" executionOrderId="0" height="30" width="60" negated="false">
- <position x="240" y="225"/>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>100</expression>
- </inVariable>
- <block localId="10" typeName="CONCAT" executionOrderId="0" height="60" width="65">
- <position x="360" y="345"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="13" formalParameter="OUT">
- <position x="360" y="375"/>
- <position x="330" y="375"/>
- <position x="330" y="332"/>
- <position x="440" y="332"/>
- <position x="440" y="300"/>
- <position x="430" y="300"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="14">
- <position x="360" y="395"/>
- <position x="322" y="395"/>
- <position x="322" y="400"/>
- <position x="285" y="400"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <outVariable localId="11" executionOrderId="0" height="30" width="58" negated="false">
- <position x="495" y="355"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="10" formalParameter="OUT">
- <position x="495" y="370"/>
- <position x="450" y="370"/>
- <position x="450" y="375"/>
- <position x="425" y="375"/>
- </connection>
- </connectionPointIn>
- <expression>strout</expression>
- </outVariable>
- <inVariable localId="12" executionOrderId="0" height="30" width="125" negated="false">
- <position x="145" y="285"/>
- <connectionPointOut>
- <relPosition x="125" y="15"/>
- </connectionPointOut>
- <expression>TargetPressure</expression>
- </inVariable>
- <block localId="13" typeName="INT_TO_STRING" executionOrderId="0" height="40" width="115">
- <position x="315" y="270"/>
- <inputVariables>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="12">
- <position x="315" y="300"/>
- <position x="270" y="300"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="115" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="14" executionOrderId="0" height="30" width="50" negated="false">
- <position x="235" y="385"/>
- <connectionPointOut>
- <relPosition x="50" y="15"/>
- </connectionPointOut>
- <expression>strin</expression>
- </inVariable>
- <inVariable localId="15" executionOrderId="0" height="30" width="60" negated="false">
- <position x="690" y="210"/>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>boolin</expression>
- </inVariable>
- <outVariable localId="16" executionOrderId="0" height="30" width="70" negated="false">
- <position x="915" y="240"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="17" formalParameter="OUT">
- <position x="915" y="255"/>
- <position x="880" y="255"/>
- </connection>
- </connectionPointIn>
- <expression>boolout</expression>
- </outVariable>
- <block localId="17" typeName="AND" executionOrderId="0" height="60" width="65">
- <position x="815" y="225"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="15">
- <position x="815" y="255"/>
- <position x="762" y="255"/>
- <position x="762" y="225"/>
- <position x="750" y="225"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="21" formalParameter="OUT">
- <position x="815" y="275"/>
- <position x="750" y="275"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="18" executionOrderId="0" height="30" width="75" negated="false">
- <position x="455" y="260"/>
- <connectionPointOut>
- <relPosition x="75" y="15"/>
- </connectionPointOut>
- <expression>Pressure</expression>
- </inVariable>
- <block localId="19" typeName="MOD" executionOrderId="0" height="60" width="65">
- <position x="585" y="245"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="18">
- <position x="585" y="275"/>
- <position x="530" y="275"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="20">
- <position x="585" y="295"/>
- <position x="555" y="295"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="20" executionOrderId="0" height="30" width="20" negated="false">
- <position x="535" y="280"/>
- <connectionPointOut>
- <relPosition x="20" y="15"/>
- </connectionPointOut>
- <expression>2</expression>
- </inVariable>
- <block localId="21" typeName="EQ" executionOrderId="0" height="60" width="65">
- <position x="685" y="245"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="19" formalParameter="OUT">
- <position x="685" y="275"/>
- <position x="650" y="275"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="22">
- <position x="685" y="295"/>
- <position x="670" y="295"/>
- <position x="670" y="330"/>
- <position x="650" y="330"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="22" executionOrderId="0" height="30" width="20" negated="false">
- <position x="630" y="315"/>
- <connectionPointOut>
- <relPosition x="20" y="15"/>
- </connectionPointOut>
- <expression>0</expression>
- </inVariable>
- <outVariable localId="23" executionOrderId="0" height="25" width="75" negated="false">
- <position x="935" y="120"/>
- <connectionPointIn>
- <relPosition x="0" y="10"/>
- <connection refLocalId="25" formalParameter="OUT">
- <position x="935" y="130"/>
- <position x="922" y="130"/>
- <position x="922" y="110"/>
- <position x="910" y="110"/>
- </connection>
- </connectionPointIn>
- <expression>floating</expression>
- </outVariable>
- <inVariable localId="24" executionOrderId="0" height="30" width="60" negated="false">
- <position x="615" y="65"/>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>Sloth</expression>
- </inVariable>
- <block localId="25" typeName="DIV" executionOrderId="0" height="60" width="65">
- <position x="845" y="80"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="27" formalParameter="OUT">
- <position x="845" y="110"/>
- <position x="822" y="110"/>
- <position x="822" y="80"/>
- <position x="800" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="26">
- <position x="845" y="130"/>
- <position x="810" y="130"/>
- <position x="810" y="135"/>
- <position x="800" y="135"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="26" executionOrderId="0" height="30" width="90" negated="false">
- <position x="710" y="120"/>
- <connectionPointOut>
- <relPosition x="90" y="15"/>
- </connectionPointOut>
- <expression>REAL#100.0</expression>
- </inVariable>
- <block localId="27" typeName="INT_TO_REAL" executionOrderId="0" height="40" width="100">
- <position x="700" y="50"/>
- <inputVariables>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="24">
- <position x="700" y="80"/>
- <position x="675" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="100" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <block localId="28" typeName="EQ" executionOrderId="0" height="60" width="65">
- <position x="410" y="430"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="36">
- <position x="418" y="460"/>
- <position x="401" y="460"/>
- <position x="401" y="435"/>
- <position x="380" y="435"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="29">
- <position x="410" y="480"/>
- <position x="367" y="480"/>
- <position x="367" y="475"/>
- <position x="325" y="475"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="29" executionOrderId="0" height="30" width="20" negated="false">
- <position x="305" y="460"/>
- <connectionPointOut>
- <relPosition x="20" y="15"/>
- </connectionPointOut>
- <expression>0</expression>
- </inVariable>
- <inVariable localId="32" executionOrderId="0" height="30" width="20" negated="false">
- <position x="765" y="505"/>
- <connectionPointOut>
- <relPosition x="20" y="15"/>
- </connectionPointOut>
- <expression>0</expression>
- </inVariable>
- <outVariable localId="31" executionOrderId="0" height="30" width="75" negated="false">
- <position x="925" y="460"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="33" formalParameter="OUT">
- <position x="925" y="475"/>
- <position x="890" y="475"/>
- </connection>
- </connectionPointIn>
- <expression>Sloth</expression>
- </outVariable>
- <block localId="33" typeName="MUX" executionOrderId="0" height="80" width="65">
- <position x="825" y="445"/>
- <inputVariables>
- <variable formalParameter="K">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="34" formalParameter="OUT">
- <position x="825" y="475"/>
- <position x="685" y="475"/>
- <position x="685" y="465"/>
- <position x="675" y="465"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN0">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="30">
- <position x="825" y="495"/>
- <position x="800" y="495"/>
- <position x="800" y="485"/>
- <position x="790" y="485"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="70"/>
- <connection refLocalId="32">
- <position x="825" y="515"/>
- <position x="795" y="515"/>
- <position x="795" y="520"/>
- <position x="785" y="520"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="65" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="30" executionOrderId="0" height="30" width="75" negated="false">
- <position x="715" y="470"/>
- <connectionPointOut>
- <relPosition x="75" y="15"/>
- </connectionPointOut>
- <expression>Sloth</expression>
- </inVariable>
- <block localId="34" typeName="BOOL_TO_SINT" executionOrderId="0" height="40" width="110">
- <position x="565" y="435"/>
- <inputVariables>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="28" formalParameter="OUT">
- <position x="565" y="465"/>
- <position x="520" y="465"/>
- <position x="520" y="460"/>
- <position x="475" y="460"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="110" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <connector name="Connection0" localId="35" height="25" width="125">
- <position x="400" y="140"/>
- <connectionPointIn>
- <relPosition x="0" y="10"/>
- <connection refLocalId="7" formalParameter="OUT">
- <position x="400" y="150"/>
- <position x="375" y="150"/>
- <position x="375" y="115"/>
- <position x="360" y="115"/>
- </connection>
- </connectionPointIn>
- </connector>
- <continuation name="Connection0" localId="36" height="25" width="125">
- <position x="255" y="425"/>
- <connectionPointOut>
- <relPosition x="125" y="10"/>
- </connectionPointOut>
- </continuation>
- </FBD>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="resource1">
- <task name="task0" priority="0" interval="T#20ms">
- <pouInstance name="instance0" typeName="MainStuff"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/svghmi_widgets/py_ext_0@py_ext/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="1" Name="py_ext_0"/>
--- a/tests/svghmi_widgets/py_ext_0@py_ext/pyfile.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,93 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <variables>
- <variable name="AlarmNotify" type="HMI_INT"/>
- <variable name="SendAlarm" type="HMI_INT" onchange="TriggerAlarm"/>
- <variable name="AlarmText" type="HMI_STRING" initial="'POS'"/>
- <variable name="AlarmStatus" type="HMI_STRING" initial="'alarm'"/>
- </variables>
- <globals>
- <xhtml:p><![CDATA[
-from twisted.web.resource import Resource
-import json, time, random, collections
-
-Alarms = []
-AlarmIndex = {}
-lastid = 0
-
-def TriggerAlarm(changed_var_name):
- global Alarms, lastid
- new_entry = [time.time(), PLCGlobals.AlarmText, PLCGlobals.AlarmStatus, lastid]
- Alarms.append(new_entry)
- AlarmIndex[lastid] = new_entry
- lastid = lastid + 1
- PLCGlobals.AlarmNotify = random.randint(0, 4294967296)
-
-class AlarmJsonResource(Resource):
- def render_GET(self, request):
- return ''
-
- def render_POST(self, request):
- newstr = request.content.getvalue()
- newdata = json.loads(newstr)
- args = newdata[u'args']
- range_feedback = newdata[u'range']
- slider_position = newdata[u'position']
- visible = newdata[u'visible']
- extra = newdata[u'extra']
- options = newdata[u'options']
-
- if len(options) == 2 :
- action, alarmid = options
- if action == "onClick[acknowledge]":
- AlarmIndex[int(alarmid)][2] = "ack"
-
- answer = self.renderTable(range_feedback, slider_position, visible, extra)
- janswer = json.dumps(answer)
- return janswer
-
- def renderTable(self, old_range, old_position, visible, extra):
- if len(extra) > 0 and extra[0] != "":
- fAlarms = [alrm for alrm in Alarms if alrm[1].find(extra[0])!=-1]
- else:
- fAlarms = Alarms
- new_range = len(fAlarms)
- delta = new_range - visible
- new_position = 0 if delta <= 0 else delta if old_position > delta else old_position
- new_visible = new_range if delta <= 0 else visible
-
- visible_alarms = []
- for ts, text, status, alarmid in fAlarms[new_position:new_position + new_visible]:
- visible_alarms.append({
- "time": time.ctime(ts),
- "text": text, # TODO translate text
- "status": status,
- "alarmid": alarmid
- })
-
- return new_range, new_position, visible_alarms
-
-
-]]></xhtml:p>
- </globals>
- <init>
- <xhtml:p><![CDATA[
-]]></xhtml:p>
- </init>
- <cleanup>
- <xhtml:p><![CDATA[
-]]></xhtml:p>
- </cleanup>
- <start>
- <xhtml:p><![CDATA[
-
-svghmi_root.putChild("alarms", AlarmJsonResource())
-
-
-]]></xhtml:p>
- </start>
- <stop>
- <xhtml:p><![CDATA[
-]]></xhtml:p>
- </stop>
-</PyFile>
--- a/tests/svghmi_widgets/svghmi_0@svghmi/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="svghmi_0"/>
--- a/tests/svghmi_widgets/svghmi_0@svghmi/confnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<SVGHMI xmlns:xsd="http://www.w3.org/2001/XMLSchema" OnWatchdog="echo Watchdog for {name} !" OnStart="chromium http://127.0.0.1:{port}/{name}" OnStop="echo Closing {name}" WatchdogInitial="10" WatchdogInterval="5"/>
--- a/tests/svghmi_widgets/svghmi_0@svghmi/svghmi.svg Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13525 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
- sodipodi:docname="svghmi.svg"
- id="hmi0"
- version="1.1"
- viewBox="0 0 1280 720"
- height="720"
- width="1280">
- <metadata
- id="metadata4542">
- <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>
- <defs
- id="defs2">
- <linearGradient
- id="linearGradient48067"
- inkscape:collect="always">
- <stop
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0"
- id="stop48065" />
- <stop
- style="stop-color:#000000;stop-opacity:1"
- offset="1"
- id="stop48063" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker47537"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#464646;fill-opacity:1;fill-rule:evenodd;stroke:#464646;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path47535" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker35048"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path35046" />
- </marker>
- <linearGradient
- id="linearGradient34303"
- osb:paint="solid">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop34301" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker33393"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path33391" />
- </marker>
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern33040"
- id="pattern33045"
- patternTransform="matrix(0.3402725,0,0,0.3402725,3541.9168,2783.1968)" />
- <pattern
- inkscape:collect="always"
- xlink:href="#pattern32315"
- id="pattern33036"
- patternTransform="matrix(0.3402725,0,0,0.3402725,2860.2482,2779.1427)" />
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker30413"
- style="overflow:visible">
- <path
- id="path30411"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker27950"
- style="overflow:visible">
- <path
- id="path27948"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker26128"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path26126" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker25626"
- style="overflow:visible"
- inkscape:collect="always">
- <path
- id="path25624"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker25174"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path25172" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker22786"
- style="overflow:visible"
- inkscape:collect="always">
- <path
- id="path22784"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker21366"
- style="overflow:visible">
- <path
- id="path21364"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker20902"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path20900" />
- </marker>
- <linearGradient
- id="linearGradient20537"
- osb:paint="solid">
- <stop
- style="stop-color:#000000;stop-opacity:1;"
- offset="0"
- id="stop20535" />
- </linearGradient>
- <marker
- style="overflow:visible"
- id="marker15089"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path15087" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker14681"
- style="overflow:visible"
- inkscape:collect="always">
- <path
- id="path14679"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker14281"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path14279" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker13869"
- style="overflow:visible"
- inkscape:collect="always">
- <path
- id="path13867"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker13481"
- style="overflow:visible">
- <path
- id="path13479"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker13093"
- style="overflow:visible">
- <path
- id="path13091"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker12717"
- style="overflow:visible"
- inkscape:collect="always">
- <path
- id="path12715"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker30978"
- style="overflow:visible;"
- inkscape:isstock="true">
- <path
- id="path30976"
- 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:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
- transform="scale(0.4) rotate(180) translate(10,0)" />
- </marker>
- <marker
- inkscape:stockid="DotM"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker30668"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- id="path30666"
- 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 "
- style="fill-rule:evenodd;stroke:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
- transform="scale(0.4) translate(7.4, 1)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible;"
- id="marker30310"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mend"
- inkscape:collect="always">
- <path
- transform="scale(0.4) rotate(180) translate(10,0)"
- style="fill-rule:evenodd;stroke:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
- 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="path30308" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker30012"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="DotM"
- inkscape:collect="always">
- <path
- transform="scale(0.4) translate(7.4, 1)"
- style="fill-rule:evenodd;stroke:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
- d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
- id="path30010" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible;"
- id="marker29562"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mend">
- <path
- transform="scale(0.4) rotate(180) translate(10,0)"
- style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- 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="path29560" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker29276"
- style="overflow:visible;"
- inkscape:isstock="true">
- <path
- id="path29274"
- 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:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- transform="scale(0.4) rotate(180) translate(10,0)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible;"
- id="marker28710"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mend">
- <path
- transform="scale(0.4) rotate(180) translate(10,0)"
- style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- 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="path28708" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker28436"
- style="overflow:visible;"
- inkscape:isstock="true">
- <path
- id="path28434"
- 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:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- transform="scale(0.4) rotate(180) translate(10,0)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible;"
- id="marker27764"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mend">
- <path
- transform="scale(0.4) rotate(180) translate(10,0)"
- style="fill-rule:evenodd;stroke:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
- 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="path27762" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker27514"
- 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:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
- d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z "
- id="path27512" />
- </marker>
- <marker
- inkscape:stockid="DotM"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="DotM"
- style="overflow:visible"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- id="path8269"
- 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 "
- style="fill-rule:evenodd;stroke:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
- transform="scale(0.4) translate(7.4, 1)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker26099"
- style="overflow:visible;"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- id="path26097"
- 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:#ff6600;stroke-width:1pt;stroke-opacity:1;fill:#ff6600;fill-opacity:1"
- transform="scale(0.4) rotate(180) translate(10,0)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker25879"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="SquareL">
- <path
- transform="scale(0.8)"
- style="fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M -5,-5 V 5 H 5 V -5 Z"
- id="path25877"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker25117"
- style="overflow:visible;"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- id="path25115"
- 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:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- transform="scale(0.4) rotate(180) translate(10,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker24867"
- style="overflow:visible;"
- inkscape:isstock="true">
- <path
- id="path8226"
- style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#3ee800;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- 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:isstock="true"
- style="overflow:visible;"
- id="marker23223"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mend"
- inkscape:collect="always">
- <path
- transform="scale(0.4) rotate(180) translate(10,0)"
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
- 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="path23221" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker22799"
- style="overflow:visible;"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- id="path22797"
- 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:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
- transform="scale(0.4) rotate(180) translate(10,0)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible;"
- id="marker22543"
- 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="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1"
- id="path22541" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker21870"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend">
- <path
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path21868"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker21674"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="SquareL">
- <path
- transform="scale(0.8)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M -5,-5 V 5 H 5 V -5 Z"
- id="path21672"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:stockid="SquareL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker20566"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- id="path20564"
- d="M -5.0,-5.0 L -5.0,5.0 L 5.0,5.0 L 5.0,-5.0 L -5.0,-5.0 z "
- style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
- transform="scale(0.8)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker20382"
- style="overflow:visible;"
- inkscape:isstock="true">
- <path
- id="path20380"
- 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:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
- transform="scale(0.8) rotate(180) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:stockid="SquareL"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="SquareL"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- id="path8275"
- d="M -5.0,-5.0 L -5.0,5.0 L 5.0,5.0 L 5.0,-5.0 L -5.0,-5.0 z "
- style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
- transform="scale(0.8)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="marker19998"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- id="path19996"
- 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:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
- transform="scale(0.8) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible;"
- id="marker19820"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mend"
- inkscape:collect="always">
- <path
- transform="scale(0.4) rotate(180) translate(10,0)"
- style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- 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="path19818" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker19672"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mstart">
- <path
- transform="scale(0.4) translate(10,0)"
- style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
- 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="path19670" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker19488"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="DiamondMend">
- <path
- transform="scale(0.4) translate(-6.5,0)"
- style="fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1;fill:none;fill-opacity:1"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- id="path19486" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker19352"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="DiamondMend">
- <path
- transform="scale(0.4) translate(-6.5,0)"
- style="fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-opacity:1;fill:none;fill-opacity:1"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- id="path19350" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible;"
- id="marker17321"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mend">
- <path
- transform="scale(0.4) rotate(180) translate(10,0)"
- style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
- 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="path17319" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker17197"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="Arrow1Mstart">
- <path
- transform="scale(0.4) translate(10,0)"
- style="fill-rule:evenodd;stroke:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
- 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="path17195" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker16921"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="DiamondMend">
- <path
- transform="scale(0.4) translate(-6.5,0)"
- style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- id="path16919" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker16821"
- refX="0.0"
- refY="0.0"
- orient="auto"
- inkscape:stockid="DiamondMend">
- <path
- transform="scale(0.4) translate(-6.5,0)"
- style="fill-rule:evenodd;stroke:#3ee800;stroke-width:1pt;stroke-opacity:1;fill:#3ee800;fill-opacity:1"
- d="M 0,-7.0710768 L -7.0710894,0 L 0,7.0710589 L 7.0710462,0 L 0,-7.0710768 z "
- id="path16819" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lstart"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Lstart"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- id="path8205"
- 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:#ff3000;stroke-width:1pt;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
- transform="scale(0.8) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow2Lstart"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow2Lstart"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- id="path8223"
- style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#ff3000;stroke-opacity:1;fill:#ff3000;fill-opacity:1"
- 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) translate(1,0)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker10905"
- 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- id="path10903"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0.0"
- refX="0.0"
- id="Arrow1Lend"
- style="overflow:visible;"
- inkscape:isstock="true">
- <path
- id="path8208"
- 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:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
- transform="scale(0.8) rotate(180) translate(12.5,0)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker1971"
- 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- id="path1969"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker1536"
- 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- id="path1534"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker1656"
- 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- id="path1654"
- inkscape:connector-curvature="0" />
- </marker>
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="1454.3019 : 921.18786 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="2782.3019 : 507.18786 : 1"
- inkscape:persp3d-origin="2094.3019 : 801.18786 : 1"
- id="perspective1372" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="1424.3019 : 863.18786 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="2800.3019 : 891.18786 : 1"
- inkscape:persp3d-origin="2064.3019 : 743.18786 : 1"
- id="perspective1370" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="73.983557 : 377.52255 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="1401.9836 : -36.477445 : 1"
- inkscape:persp3d-origin="713.98356 : 257.52255 : 1"
- id="perspective503" />
- <inkscape:perspective
- sodipodi:type="inkscape:persp3d"
- inkscape:vp_x="43.983597 : 319.52255 : 1"
- inkscape:vp_y="0 : 1000 : 0"
- inkscape:vp_z="1419.9836 : 347.52255 : 1"
- inkscape:persp3d-origin="683.98356 : 199.52255 : 1"
- id="perspective445" />
- <inkscape:tag
- id="Set 1"
- inkscape:label="HMI:AccessList@Admin"
- inkscape:expanded="true">
- <inkscape:tagref
- xlink:href="#text995"
- id="tagref192" />
- <inkscape:tagref
- xlink:href="#g991"
- id="tagref194" />
- </inkscape:tag>
- <linearGradient
- inkscape:collect="always"
- id="linearGradient962">
- <stop
- style="stop-color:#ff3000;stop-opacity:1;"
- offset="0"
- id="stop958" />
- <stop
- style="stop-color:#0022ff;stop-opacity:1"
- offset="1"
- id="stop960" />
- </linearGradient>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker926"
- 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 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- id="path924"
- inkscape:connector-curvature="0" />
- </marker>
- <inkscape:tag
- id="Set 3"
- inkscape:expanded="true"
- inkscape:label="HMI:Translate">
- <inkscape:tagref
- xlink:href="#text831"
- id="tagref1085" />
- <inkscape:tagref
- xlink:href="#text827"
- id="tagref1087" />
- <inkscape:tagref
- xlink:href="#text4497"
- id="tagref1089" />
- <inkscape:tagref
- xlink:href="#home_jmp"
- id="tagref1091" />
- <inkscape:tagref
- xlink:href="#setting_jmp"
- id="tagref1093" />
- </inkscape:tag>
- <marker
- inkscape:stockid="Arrow2Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow2Lend"
- style="overflow:visible"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- inkscape:connector-curvature="0"
- id="path895"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
- d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
- transform="matrix(-1.1,0,0,-1.1,-1.1,0)" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient962"
- id="linearGradient964"
- x1="113.38908"
- y1="-62.210247"
- x2="113.38908"
- y2="4.0725975"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.5,0,0,0.5,73.144796,-1.4471993)" />
- <linearGradient
- id="linearGradient4428"
- y2="315.91"
- gradientUnits="userSpaceOnUse"
- x2="486.78"
- y1="279.85001"
- x1="452.26001"
- inkscape:collect="always"
- gradientTransform="matrix(2.1333334,0,0,2.1333334,-3540.3373,-2618.8351)">
- <stop
- id="stop3842"
- style="stop-color:#5e5e5e"
- offset="0" />
- <stop
- id="stop3844"
- style="stop-color:#5e5e5e;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3919"
- inkscape:collect="always">
- <stop
- id="stop3921"
- style="stop-color:#ffffff"
- offset="0" />
- <stop
- id="stop3923"
- style="stop-color:#ffffff;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient3862">
- <stop
- id="stop3864"
- style="stop-color:#414141"
- offset="0" />
- <stop
- id="stop3868"
- style="stop-color:#41433f"
- offset=".15789" />
- <stop
- id="stop3866"
- style="stop-color:#000000"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient4436"
- gradientUnits="userSpaceOnUse"
- cy="336.42001"
- cx="491.09"
- gradientTransform="matrix(1.1429,0,0,1.1429,-73.994,-53.898)"
- r="42.073002"
- inkscape:collect="always">
- <stop
- id="stop3894"
- style="stop-color:#ddcf1b"
- offset="0" />
- <stop
- id="stop3898"
- style="stop-color:#ccd21b"
- offset=".5" />
- <stop
- id="stop3896"
- style="stop-color:#2bb733"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient4440"
- gradientUnits="userSpaceOnUse"
- cy="325.29001"
- cx="477.91"
- gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
- r="26.870001"
- inkscape:collect="always">
- <stop
- id="stop3876"
- style="stop-color:#333333"
- offset="0" />
- <stop
- id="stop3878"
- style="stop-color:#333333;stop-opacity:0"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient4442"
- y2="364.53"
- gradientUnits="userSpaceOnUse"
- x2="510.54001"
- y1="300.89001"
- x1="460.44"
- inkscape:collect="always"
- gradientTransform="matrix(2.1333334,0,0,2.1333334,1460.1239,1204.5844)">
- <stop
- id="stop3911"
- style="stop-color:#ffffff"
- offset="0" />
- <stop
- id="stop3913"
- style="stop-color:#ffffff;stop-opacity:0"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient4401"
- xlink:href="#linearGradient3862"
- gradientUnits="userSpaceOnUse"
- cy="271.12"
- cx="488.75"
- gradientTransform="matrix(1.2669,-2.1673e-7,1.919e-7,1.0468,-130.57,-2.7383)"
- r="57.629002"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4403"
- y2="274.60001"
- xlink:href="#linearGradient3994"
- gradientUnits="userSpaceOnUse"
- x2="461.51001"
- y1="378.48001"
- x1="460.51001"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient3994">
- <stop
- id="stop3996"
- style="stop-color:#626262"
- offset="0" />
- <stop
- id="stop4000"
- style="stop-color:#919191"
- offset=".74085" />
- <stop
- id="stop3998"
- style="stop-color:#ceced2"
- offset="1" />
- </linearGradient>
- <filter
- id="filter4030"
- inkscape:collect="always"
- style="color-interpolation-filters:sRGB">
- <feGaussianBlur
- id="feGaussianBlur4032"
- stdDeviation="3.9987611"
- inkscape:collect="always" />
- </filter>
- <radialGradient
- id="radialGradient4405"
- gradientUnits="userSpaceOnUse"
- cy="276.20999"
- cx="489.59"
- gradientTransform="matrix(1.8965,-0.037037,0.020439,1.0466,-444.48,15.45)"
- r="57.629002"
- inkscape:collect="always">
- <stop
- id="stop4044"
- style="stop-color:#414141"
- offset="0" />
- <stop
- id="stop4046"
- style="stop-color:#41433f"
- offset=".17350" />
- <stop
- id="stop4048"
- style="stop-color:#000000"
- offset="1" />
- </radialGradient>
- <linearGradient
- id="linearGradient4407"
- y2="274.60001"
- gradientUnits="userSpaceOnUse"
- x2="461.51001"
- y1="378.48001"
- x1="460.51001"
- inkscape:collect="always">
- <stop
- id="stop4036"
- style="stop-color:#1b1b1d"
- offset="0" />
- <stop
- id="stop4038"
- style="stop-color:#262828"
- offset=".54558" />
- <stop
- id="stop4040"
- style="stop-color:#ceced2"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4108">
- <stop
- id="stop4110"
- style="stop-color:#ddcf1b"
- offset="0" />
- <stop
- id="stop4112"
- style="stop-color:#ccd21b"
- offset="0.28542241" />
- <stop
- id="stop4114"
- style="stop-color:#2bb733"
- offset="1" />
- </linearGradient>
- <radialGradient
- id="radialGradient4372"
- xlink:href="#linearGradient3862"
- gradientUnits="userSpaceOnUse"
- cy="271.12"
- cx="488.75"
- gradientTransform="matrix(-1.1814,2.021e-7,-1.7895e-7,-0.97615,1072.1,866.87)"
- r="57.629002"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4374"
- y2="274.60001"
- xlink:href="#linearGradient3994"
- gradientUnits="userSpaceOnUse"
- x2="461.51001"
- gradientTransform="matrix(-0.93252,0,0,-0.93252,950.38,864.32)"
- y1="378.48001"
- x1="460.51001"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient4376"
- y2="603.70001"
- xlink:href="#linearGradient4292"
- gradientUnits="userSpaceOnUse"
- x2="505.57999"
- y1="526.63"
- x1="504.87"
- inkscape:collect="always"
- gradientTransform="matrix(2.1333334,0,0,2.1333334,893.33419,706.77548)" />
- <linearGradient
- id="linearGradient4292">
- <stop
- id="stop4294"
- style="stop-color:#666666"
- offset="0" />
- <stop
- id="stop4296"
- style="stop-color:#c3c3c5"
- offset="1" />
- </linearGradient>
- <linearGradient
- id="linearGradient4378"
- y2="585.34003"
- xlink:href="#linearGradient3919"
- gradientUnits="userSpaceOnUse"
- x2="493.29999"
- y1="596.53003"
- x1="486.85001"
- inkscape:collect="always"
- gradientTransform="matrix(3.5063468,0,0,3.5063468,198.4947,-3883.2624)" />
- <radialGradient
- id="radialGradient9759"
- xlink:href="#linearGradient3862"
- gradientUnits="userSpaceOnUse"
- cy="271.12"
- cx="488.75"
- gradientTransform="matrix(-1.1814,2.021e-7,-1.7895e-7,-0.97615,1072.1,866.87)"
- r="57.629002"
- inkscape:collect="always" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4292"
- id="linearGradient10071"
- gradientUnits="userSpaceOnUse"
- x1="504.87"
- y1="526.63"
- x2="505.57999"
- y2="603.70001"
- gradientTransform="matrix(3.5063468,0,0,3.5063468,198.4947,-3883.2624)" />
- <marker
- inkscape:stockid="DiamondMend"
- orient="auto"
- refY="0"
- refX="0"
- id="DiamondMend-9"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path8305-2"
- d="M 0,-7.0710768 -7.0710894,0 0,7.0710589 7.0710462,0 Z"
- style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(0.4,0,0,0.4,-2.6,0)" />
- </marker>
- <marker
- inkscape:stockid="DiamondMend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker16719"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path16717"
- d="M 0,-7.0710768 -7.0710894,0 0,7.0710589 7.0710462,0 Z"
- style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(0.4,0,0,0.4,-2.6,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mstart"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Mstart-2"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path8211-3"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(0.4,0,0,0.4,4,0)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Mend-7"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path8214-5"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#ff3000;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.4,0,0,-0.4,-4,0)" />
- </marker>
- <filter
- id="filter5708"
- inkscape:collect="always"
- style="color-interpolation-filters:sRGB">
- <feGaussianBlur
- id="feGaussianBlur5710"
- stdDeviation="28.132071"
- inkscape:collect="always" />
- </filter>
- <linearGradient
- id="linearGradient7109"
- y2="276.98999"
- xlink:href="#linearGradient5712"
- gradientUnits="userSpaceOnUse"
- x2="298.10999"
- gradientTransform="translate(1979.8,858.86)"
- y1="-906.90997"
- x1="-914.59003"
- inkscape:collect="always" />
- <linearGradient
- id="linearGradient5712">
- <stop
- id="stop5714"
- style="stop-color:#cccccc"
- offset="0" />
- <stop
- id="stop5716"
- style="stop-color:#ffffff;stop-opacity:0"
- offset=".12299" />
- <stop
- id="stop5718"
- style="stop-color:#999999;stop-opacity:.63813"
- offset="1" />
- </linearGradient>
- <marker
- inkscape:stockid="SquareL"
- orient="auto"
- refY="0"
- refX="0"
- id="marker20566-2"
- style="overflow:visible"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- inkscape:connector-curvature="0"
- id="path20564-8"
- d="M -5,-5 V 5 H 5 V -5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="scale(0.8)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker23223-1"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Mend">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.4,0,0,-0.4,-4,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path23221-2" />
- </marker>
- <marker
- inkscape:stockid="DotM"
- orient="auto"
- refY="0"
- refX="0"
- id="DotM-2"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path8269-0"
- 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"
- style="fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(0.4,0,0,0.4,2.96,0.4)" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker26099-6"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path26097-1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.4,0,0,-0.4,-4,0)" />
- </marker>
- <marker
- inkscape:isstock="true"
- style="overflow:visible"
- id="marker19820-5"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Mend">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.4,0,0,-0.4,-4,0)"
- style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path19818-4" />
- </marker>
- <marker
- inkscape:stockid="Arrow1Mend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker25117-7"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path25115-6"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#3ee800;fill-opacity:1;fill-rule:evenodd;stroke:#3ee800;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.4,0,0,-0.4,-4,0)" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4436"
- id="linearGradient31386"
- x1="1094.1289"
- y1="489.64468"
- x2="1008.9722"
- y2="209.67311"
- gradientUnits="userSpaceOnUse" />
- <filter
- inkscape:collect="always"
- style="color-interpolation-filters:sRGB"
- id="filter31680"
- x="-0.066705994"
- width="1.133412"
- y="-0.075436398"
- height="1.1508728">
- <feGaussianBlur
- inkscape:collect="always"
- stdDeviation="10.428525"
- id="feGaussianBlur31682" />
- </filter>
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lend-3"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path8208-5"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#fffffc;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)" />
- </marker>
- <radialGradient
- id="radialGradient4432-9"
- xlink:href="#linearGradient3862"
- gradientUnits="userSpaceOnUse"
- cy="331.47"
- cx="487.54999"
- gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
- r="57.629002"
- inkscape:collect="always" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4436-7"
- id="radialGradient2918-3"
- cx="1043.1659"
- cy="285.35944"
- fx="1043.1659"
- fy="285.35944"
- r="192.22134"
- gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- id="radialGradient4436-7"
- gradientUnits="userSpaceOnUse"
- cy="336.42001"
- cx="491.09"
- gradientTransform="matrix(1.1429,0,0,1.1429,-73.994,-53.898)"
- r="42.073002"
- inkscape:collect="always">
- <stop
- id="stop3894-5"
- style="stop-color:#ddcf1b"
- offset="0" />
- <stop
- id="stop3898-9"
- style="stop-color:#ccd21b"
- offset=".5" />
- <stop
- id="stop3896-2"
- style="stop-color:#2bb733"
- offset="1" />
- </radialGradient>
- <radialGradient
- id="radialGradient4438-2"
- xlink:href="#linearGradient3919"
- gradientUnits="userSpaceOnUse"
- cy="379.03"
- cx="520.47998"
- gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
- r="57.629002"
- inkscape:collect="always" />
- <radialGradient
- id="radialGradient5322"
- xlink:href="#linearGradient3862"
- gradientUnits="userSpaceOnUse"
- cy="331.47"
- cx="487.54999"
- gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
- r="57.629002"
- inkscape:collect="always" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4436-7"
- id="radialGradient5340"
- cx="1043.1659"
- cy="285.35944"
- fx="1043.1659"
- fy="285.35944"
- r="192.22134"
- gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
- gradientUnits="userSpaceOnUse" />
- <radialGradient
- id="radialGradient5350"
- xlink:href="#linearGradient3919"
- gradientUnits="userSpaceOnUse"
- cy="379.03"
- cx="520.47998"
- gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
- r="57.629002"
- inkscape:collect="always" />
- <marker
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="Arrow1Lend-3-9"
- style="overflow:visible"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- id="path8208-5-3"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#fffffc;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)" />
- </marker>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3862"
- id="radialGradient8154-3"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
- cx="487.54999"
- cy="331.47"
- r="57.629002" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4436-5"
- id="radialGradient8158-1"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
- cx="1043.1659"
- cy="285.35944"
- fx="1043.1659"
- fy="285.35944"
- r="192.22134" />
- <radialGradient
- id="radialGradient4436-5"
- gradientUnits="userSpaceOnUse"
- cy="336.42001"
- cx="491.09"
- gradientTransform="matrix(1.1429,0,0,1.1429,-73.994,-53.898)"
- r="42.073002"
- inkscape:collect="always">
- <stop
- id="stop3894-54"
- style="stop-color:#ddcf1b"
- offset="0" />
- <stop
- id="stop3898-7"
- style="stop-color:#ccd21b"
- offset=".5" />
- <stop
- id="stop3896-6"
- style="stop-color:#2bb733"
- offset="1" />
- </radialGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3919"
- id="radialGradient8160-5"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
- cx="520.47998"
- cy="379.03"
- r="57.629002" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4440-9"
- id="radialGradient8162-6"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
- cx="477.91"
- cy="325.29001"
- r="26.870001" />
- <radialGradient
- id="radialGradient4440-9"
- gradientUnits="userSpaceOnUse"
- cy="325.29001"
- cx="477.91"
- gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
- r="26.870001"
- inkscape:collect="always">
- <stop
- id="stop3876-3"
- style="stop-color:#333333"
- offset="0" />
- <stop
- id="stop3878-7"
- style="stop-color:#333333;stop-opacity:0"
- offset="1" />
- </radialGradient>
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3862"
- id="radialGradient8996"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
- cx="487.54999"
- cy="331.47"
- r="57.629002" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4436-5"
- id="radialGradient9014"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
- cx="1043.1659"
- cy="285.35944"
- fx="1043.1659"
- fy="285.35944"
- r="192.22134" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3919"
- id="radialGradient9024"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
- cx="520.47998"
- cy="379.03"
- r="57.629002" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4440-9"
- id="radialGradient9032"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
- cx="477.91"
- cy="325.29001"
- r="26.870001" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4436"
- id="linearGradient10485"
- gradientUnits="userSpaceOnUse"
- x1="1094.1289"
- y1="489.64468"
- x2="1008.9722"
- y2="209.67311" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4428"
- id="linearGradient10487"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.1333334,0,0,2.1333334,-3540.3373,-2618.8351)"
- x1="452.26001"
- y1="279.85001"
- x2="486.78"
- y2="315.91" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3919"
- id="linearGradient10489"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.1333334,0,0,2.1333334,1460.1239,1202.4511)"
- x1="462.14999"
- y1="275.60999"
- x2="493.85001"
- y2="326.51999" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3862"
- id="radialGradient10491"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.7799744,-9.2806384e-8,9.900727e-8,1.6752735,-3368.2885,-2467.2504)"
- cx="487.54999"
- cy="331.47"
- r="57.629002" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3919"
- id="linearGradient10493"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.8846721,0,0,1.9108481,-3418.46,-2542.9311)"
- x1="452.26001"
- y1="279.85001"
- x2="486.78"
- y2="315.91" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4436"
- id="radialGradient10495"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.93659677,-0.44854394,0.32346083,0.67732006,-26.162515,540.12207)"
- cx="1043.1659"
- cy="285.35944"
- fx="1043.1659"
- fy="285.35944"
- r="192.22134" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient3919"
- id="radialGradient10497"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.5227749,-1.8142535,0.87409912,1.2348725,-4090.1248,-1355.5321)"
- cx="520.47998"
- cy="379.03"
- r="57.629002" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#radialGradient4440"
- id="radialGradient10499"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(5.2310528,-3.8736755,1.0272215,1.565962,-362.40903,3218.8585)"
- cx="477.91"
- cy="325.29001"
- r="26.870001" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4442"
- id="linearGradient10501"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(2.1333334,0,0,2.1333334,1460.1239,1204.5844)"
- x1="460.44"
- y1="300.89001"
- x2="510.54001"
- y2="364.53" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient5712"
- id="linearGradient10503"
- gradientUnits="userSpaceOnUse"
- gradientTransform="translate(-266.78,858.86)"
- x1="-914.59003"
- y1="-906.90997"
- x2="298.10999"
- y2="276.98999" />
- <marker
- style="overflow:visible"
- id="marker1197"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path1195" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker1207"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path1205" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker1187"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path1185" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker1177"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path1175" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker1167"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path1165" />
- </marker>
- <marker
- style="overflow:visible"
- id="marker1157"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true"
- inkscape:collect="always">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path1155" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker22786-9"
- style="overflow:visible">
- <path
- id="path22784-6"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker22786-3"
- style="overflow:visible">
- <path
- id="path22784-3"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <marker
- inkscape:isstock="true"
- inkscape:stockid="Arrow1Lend"
- orient="auto"
- refY="0"
- refX="0"
- id="marker22786-8"
- style="overflow:visible">
- <path
- id="path22784-60"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- inkscape:connector-curvature="0" />
- </marker>
- <pattern
- patternUnits="userSpaceOnUse"
- width="1280"
- height="720"
- patternTransform="translate(-120,1560)"
- id="pattern32315">
- <use
- height="100%"
- width="100%"
- transform="translate(4.4804112e-6,-1560)"
- id="use32313"
- xlink:href="#g4278"
- y="0"
- x="0" />
- </pattern>
- <pattern
- patternUnits="userSpaceOnUse"
- width="1280"
- height="720"
- patternTransform="translate(4.5843587e-5,2340)"
- id="pattern33040">
- <use
- id="use33038"
- xlink:href="#g2432"
- y="0"
- x="0"
- transform="translate(-4.5843587e-5,-2340)"
- width="100%"
- height="100%" />
- </pattern>
- <marker
- style="overflow:visible"
- id="marker33393-6"
- refX="0"
- refY="0"
- orient="auto"
- inkscape:stockid="Arrow1Lend"
- inkscape:isstock="true">
- <path
- inkscape:connector-curvature="0"
- transform="matrix(-0.8,0,0,-0.8,-10,0)"
- style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000003pt;stroke-opacity:1"
- d="M 0,0 5,-5 -12.5,0 5,5 Z"
- id="path33391-4" />
- </marker>
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4108"
- id="linearGradient35598"
- x1="3282.1479"
- y1="3490.5305"
- x2="3302.1479"
- y2="3565.5305"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4108"
- id="linearGradient35602"
- gradientUnits="userSpaceOnUse"
- x1="3282.1479"
- y1="3530.5305"
- x2="3302.1479"
- y2="3565.5305"
- gradientTransform="translate(0,-246)" />
- <linearGradient
- inkscape:collect="always"
- xlink:href="#linearGradient4108"
- id="linearGradient35607"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1,0,0,-1,0,7302.061)"
- x1="3282.1479"
- y1="3565.5305"
- x2="3302.1479"
- y2="3530.5305" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient48067"
- id="radialGradient48061"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.01927641,3.0508146,-1.339822,0.00867105,4122.7241,-10076.708)"
- cx="4437.8638"
- cy="432.34897"
- fx="4437.8638"
- fy="432.34897"
- r="35.250397" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient48067"
- id="radialGradient48061-9"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(0.02836882,4.436331,-1.9717971,0.01260898,731.53273,-19692.285)"
- cx="4437.6318"
- cy="434.84348"
- fx="4437.6318"
- fy="434.84348"
- r="35.250397" />
- <radialGradient
- inkscape:collect="always"
- xlink:href="#linearGradient48067"
- id="radialGradient48094"
- gradientUnits="userSpaceOnUse"
- gradientTransform="matrix(1.6218841e-6,-15.394244,1.33985,-0.00103654,3136.5425,73759.406)"
- cx="4544.9692"
- cy="400.71506"
- fx="4544.9692"
- fy="400.71506"
- r="35.250397" />
- </defs>
- <sodipodi:namedview
- id="base"
- pagecolor="#ffffff"
- bordercolor="#666666"
- borderopacity="1.0"
- inkscape:pageopacity="0"
- inkscape:pageshadow="2"
- inkscape:document-units="px"
- inkscape:current-layer="hmi0"
- showgrid="false"
- units="px"
- inkscape:zoom="0.29824219"
- inkscape:cx="6031.6643"
- inkscape:cy="-3206.0412"
- inkscape:window-width="3840"
- inkscape:window-height="2123"
- inkscape:window-x="1600"
- inkscape:window-y="0"
- inkscape:window-maximized="1"
- showguides="true"
- inkscape:guide-bbox="true"
- inkscape:snap-global="true"
- inkscape:snap-bbox="true"
- inkscape:bbox-nodes="true">
- <sodipodi:guide
- position="2769.4073,-860.03335"
- orientation="0,1"
- id="guide6495"
- inkscape:locked="false"
- inkscape:label=""
- inkscape:color="rgb(0,0,255)" />
- <sodipodi:guide
- position="5344.8616,-2420"
- orientation="0,1"
- id="guide6497"
- inkscape:locked="false"
- inkscape:label=""
- inkscape:color="rgb(0,0,255)" />
- <sodipodi:guide
- position="2760,-1640"
- orientation="0,1"
- id="guide6501"
- inkscape:locked="false"
- inkscape:label=""
- inkscape:color="rgb(0,0,255)" />
- </sodipodi:namedview>
- <use
- x="0"
- y="0"
- xlink:href="#g7994"
- id="use7996"
- transform="translate(1480,800)"
- width="100%"
- height="100%"
- inkscape:label="HMI:Page:RelativePageTest@/PUMP0" />
- <rect
- sodipodi:insensitive="true"
- inkscape:label="HMI:Page:Conf"
- y="780"
- x="0"
- height="720"
- width="1280"
- id="rect1016"
- style="color:#000000;fill:#000000" />
- <g
- id="g1082"
- inkscape:label="HMI:Jump:Home"
- transform="translate(-940,-558)">
- <g
- id="g1152"
- inkscape:label="button">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
- id="rect1022"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cssssccc" />
- </g>
- <g
- id="g1149"
- inkscape:label="text">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="1436.9814"
- id="home_jmp"
- inkscape:label="home_jmp"><tspan
- sodipodi:role="line"
- id="tspan1028"
- x="1090.7626"
- y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
- </g>
- </g>
- <rect
- style="color:#000000;fill:#4d4d4d"
- id="page0"
- width="1280"
- height="720"
- x="0"
- y="0"
- inkscape:label="HMI:Page:Home" />
- <g
- id="g1077"
- inkscape:label="HMI:Jump:Conf"
- transform="matrix(0.57180538,0,0,0.57180538,-373.64055,248.51305)">
- <g
- id="g1159"
- inkscape:label="button">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1020"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- id="g1156"
- inkscape:label="text">
- <text
- inkscape:label="setting_jmp"
- id="setting_jmp"
- y="656.98151"
- x="1090.7626"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="656.98151"
- x="1090.7626"
- id="tspan1024"
- sodipodi:role="line">Settings</tspan></text>
- </g>
- </g>
- <g
- id="g84"
- inkscape:label="HMI:Input@/TARGETPRESSURE,0,100"
- transform="matrix(0.35865594,0,0,0.35865594,22.072155,63.074421)">
- <text
- inkscape:label="value"
- id="text5151"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="218.24219"
- x="136.32812"
- id="tspan5149"
- sodipodi:role="line">8888</tspan></text>
- <path
- transform="scale(1,-1)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path89"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="14.956363"
- inkscape:label="-100" />
- <path
- inkscape:label="-10"
- inkscape:transform-center-y="7.4781812"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path88"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="scale(1,-1)" />
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect85"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <path
- inkscape:label="+100"
- inkscape:transform-center-y="-14.956361"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path87"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path86"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-7.4781804"
- inkscape:label="+10" />
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path91"
- sodipodi:sides="4"
- sodipodi:cx="80.740723"
- sodipodi:cy="165.17262"
- sodipodi:r1="57.015106"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.77793027"
- sodipodi:arg2="1.5633284"
- inkscape:flatsided="true"
- inkscape:rounded="-0.65084865"
- inkscape:randomized="0"
- d="M 121.35644,205.1862 C 158.18649,167.80191 3.342862,168.95829 40.72715,205.78834 78.111437,242.61839 76.95506,87.774762 40.125008,125.15905 3.2949549,162.54334 158.13858,161.38696 120.7543,124.55691 83.370008,87.726855 84.526385,242.57048 121.35644,205.1862 Z"
- inkscape:transform-center-y="-14.956361"
- inkscape:label="=0" />
- </g>
- <text
- inkscape:label="HMI:Display@/PUMP0/PRESSURE"
- id="text823"
- y="141.34827"
- x="293.33374"
- style="font-style:normal;font-weight:normal;font-size:57.38494873px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.35865593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.35865593px"
- y="141.34827"
- x="293.33374"
- id="tspan821"
- sodipodi:role="line">8888</tspan></text>
- <g
- id="g4523"
- transform="matrix(2.1611542,0,0,2.1611542,142.76714,468.92423)"
- inkscape:label="HMI:Meter@/PUMP0/SLOTH">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3ee800;stroke-width:26.45833397;stroke-miterlimit:4;stroke-dasharray:2.64583333, 2.64583333;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path4499"
- sodipodi:type="arc"
- sodipodi:cx="128.02208"
- sodipodi:cy="2.2017097"
- sodipodi:rx="64.411957"
- sodipodi:ry="64.411957"
- sodipodi:start="3.1415927"
- sodipodi:end="4.712389"
- d="M 63.610123,2.2017068 A 64.411957,64.411957 0 0 1 128.02208,-62.210247"
- sodipodi:open="true"
- inkscape:label="range" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#ff3000;stroke-width:2.96333337;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0, 32.59666667;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-end:url(#Arrow2Lend)"
- d="M 130.96206,4.0725977 79.111776,-41.363223"
- id="path4501"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- inkscape:label="needle" />
- <text
- inkscape:label="min"
- id="text4505"
- y="4.9187088"
- x="49.132977"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px"
- y="4.9187088"
- x="49.132977"
- id="tspan4503"
- sodipodi:role="line">0</tspan></text>
- <text
- inkscape:label="max"
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="127.48073"
- y="-78.144218"
- id="text4509"><tspan
- sodipodi:role="line"
- id="tspan4507"
- x="127.48073"
- y="-78.144218"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px">10000</tspan></text>
- <text
- inkscape:label="value"
- id="text4517"
- y="-6.1937833"
- x="113.53007"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- id="tspan4515"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="-6.1937833"
- x="113.53007"
- sodipodi:role="line">000</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="124.77896"
- y="1.1408259"
- id="text4521"
- inkscape:label="unit"><tspan
- sodipodi:role="line"
- x="124.77896"
- y="1.1408259"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- id="tspan4519">bar</tspan></text>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:14.34623718px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.35865593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="114.11434"
- y="90.742165"
- id="text827"
- inkscape:label="setpoint_label"><tspan
- sodipodi:role="line"
- id="tspan825"
- x="114.11434"
- y="90.742165"
- style="stroke-width:0.35865593px">SetPoint</tspan></text>
- <text
- id="text831"
- y="90.742165"
- x="344.50876"
- style="font-style:normal;font-weight:normal;font-size:14.34623718px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.35865593px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="actual_label"><tspan
- y="90.742165"
- x="344.50876"
- id="tspan829"
- sodipodi:role="line"
- style="stroke-width:0.35865593px">Actual</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.57180536px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="206.73413"
- y="336.90073"
- id="text4497"
- inkscape:label="pressure_label"><tspan
- sodipodi:role="line"
- id="tspan4495"
- x="206.73413"
- y="336.90073"
- style="fill:#ff6600;stroke-width:0.57180536px">Pressure</tspan></text>
- <g
- id="layer4"
- inkscape:label="HMI:Lang:cn"
- style="display:none"
- inkscape:groupmode="layer">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:80px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:vertical-lr;text-anchor:middle;display:inline;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="83.669571"
- y="136.78285"
- id="text948-6"
- inkscape:label="setpoint_label"><tspan
- sodipodi:role="line"
- id="tspan946-2"
- x="136.78285"
- y="83.669571"
- style="stroke-width:1px">设定值</tspan></text>
- <text
- id="text952-9"
- y="137.16286"
- x="703.711"
- style="font-style:normal;font-weight:normal;font-size:80px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:vertical-lr;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="actual_label"><tspan
- y="703.711"
- x="137.16286"
- id="tspan950-1"
- sodipodi:role="line"
- style="text-align:center;writing-mode:vertical-lr;text-anchor:middle;stroke-width:1px">当前值</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:80px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;writing-mode:vertical-lr;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="480.61847"
- y="278.37503"
- id="text956-2"
- inkscape:label="pressure_label"><tspan
- sodipodi:role="line"
- id="tspan954-7"
- x="278.37503"
- y="480.61847"
- style="writing-mode:vertical-lr;fill:#ff6600;stroke-width:0.99999994px">压力</tspan></text>
- <text
- inkscape:label="setting_jmp"
- id="text1097"
- y="656.98151"
- x="1090.7626"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="656.98151"
- x="1090.7626"
- id="tspan1095"
- sodipodi:role="line">设置</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="1436.9814"
- id="text1101"
- inkscape:label="home_jmp"><tspan
- sodipodi:role="line"
- x="1090.7626"
- y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- id="tspan1107">家</tspan></text>
- </g>
- <g
- id="layer2"
- inkscape:label="HMI:Lang:fr"
- style="display:none"
- inkscape:groupmode="layer">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="340.9082"
- y="77.142853"
- id="text948"
- inkscape:label="setpoint_label"><tspan
- sodipodi:role="line"
- id="tspan946"
- x="340.9082"
- y="77.142853">Valeur de consigne</tspan></text>
- <text
- id="text952"
- y="77.142853"
- x="960.9082"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="actual_label"><tspan
- y="77.142853"
- x="960.9082"
- id="tspan950"
- sodipodi:role="line"
- style="text-align:center;text-anchor:middle">Valeur courante</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="420.37848"
- y="399.41504"
- id="text956"
- inkscape:label="pressure_label"><tspan
- sodipodi:role="line"
- id="tspan954"
- x="420.37848"
- y="399.41504"
- style="fill:#ff6600;stroke-width:0.99999994px">Pression</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="656.98151"
- id="setting_jmp-0"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- id="tspan1024-9"
- x="1090.7626"
- y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Settings</tspan></text>
- <text
- inkscape:label="home_jmp"
- id="home_jmp-3"
- y="1436.9814"
- x="1090.7626"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="1436.9814"
- x="1090.7626"
- id="tspan1028-6"
- sodipodi:role="line">Home</tspan></text>
- </g>
- <g
- id="layer3"
- inkscape:label="HMI:Lang:si"
- style="display:inline"
- inkscape:groupmode="layer">
- <text
- id="text930"
- y="77.142853"
- x="338.67188"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="setpoint_label"><tspan
- y="77.142853"
- x="338.67188"
- id="tspan928"
- sodipodi:role="line">nastavljena vrednost</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="959.38477"
- y="77.142853"
- id="text934"
- inkscape:label="actual_label"><tspan
- sodipodi:role="line"
- id="tspan932"
- x="959.38477"
- y="77.142853">dejanska vrednost</tspan></text>
- <text
- id="text938"
- y="399.41504"
- x="420.37848"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="pressure_label"><tspan
- style="fill:#ff6600;stroke-width:0.99999994px"
- y="399.41504"
- x="420.37848"
- id="tspan936"
- sodipodi:role="line">pritisk</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="656.98151"
- id="setting_jmp-06"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- id="tspan1024-2"
- x="1090.7626"
- y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Settings</tspan></text>
- <text
- inkscape:label="home_jmp"
- id="home_jmp-6"
- y="1436.9814"
- x="1090.7626"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="1436.9814"
- x="1090.7626"
- id="tspan1028-1"
- sodipodi:role="line">Home</tspan></text>
- </g>
- <g
- inkscape:label="HMI:Meter@/PUMP0/SLOTH"
- transform="matrix(7.5590552,0,0,7.5590552,-244.3956,1321.2434)"
- id="g110">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="M 113.38908,2.2017068 V -62.210247"
- id="path90"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- inkscape:label="range" />
- <path
- inkscape:label="needle"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path92"
- d="M 113.38908,4.0725977 V -62.210247"
- style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient964);stroke-width:13.22916698;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="115.07632"
- y="9.3424692"
- id="text96"
- inkscape:label="min"><tspan
- sodipodi:role="line"
- id="tspan94"
- x="115.07632"
- y="9.3424692"
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
- <text
- id="text100"
- y="-64.195457"
- x="113.27539"
- style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="max"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="-64.195457"
- x="113.27539"
- id="tspan98"
- sodipodi:role="line">10000</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="-20.624428"
- y="-109.67243"
- id="text104"
- inkscape:label="value"
- transform="rotate(90)"><tspan
- sodipodi:role="line"
- x="-20.624428"
- y="-109.67243"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- id="tspan102">000</tspan></text>
- <text
- inkscape:label="unit"
- id="text108"
- y="-9.4425077"
- x="140.65398"
- style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- id="tspan106"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="-9.4425077"
- x="140.65398"
- sodipodi:role="line">€£$¥</tspan></text>
- </g>
- <g
- inkscape:label="HMI:Input@/TARGETPRESSURE"
- id="g991"
- transform="matrix(0.5,0,0,0.5,230.11026,885.7162)"
- style="stroke-width:2">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text977"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan975"
- x="136.32812"
- y="218.24219"
- style="stroke-width:2px">8888</tspan></text>
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect983"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- id="g1086"
- inkscape:label="=0"
- transform="translate(-416.52022,170.47452)"
- style="stroke-width:2">
- <path
- inkscape:connector-curvature="0"
- id="path989"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1048"
- y="111.05016"
- x="733.58197"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="733.58197"
- id="tspan1046"
- sodipodi:role="line">→0←</tspan></text>
- </g>
- <g
- id="g1091"
- inkscape:label="-10"
- transform="translate(-416.52022,170.47452)"
- style="stroke-width:2">
- <path
- inkscape:transform-center-x="14.956371"
- inkscape:transform-center-y="-3.6154501e-05"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path981"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="633.09552"
- y="111.05016"
- id="text1059"><tspan
- sodipodi:role="line"
- id="tspan1057"
- x="633.09552"
- y="111.05016"
- style="stroke-width:1px">-10</tspan></text>
- </g>
- <g
- id="g1096"
- inkscape:label="-100"
- transform="translate(-416.52022,170.47452)"
- style="stroke-width:2">
- <path
- inkscape:transform-center-x="14.956364"
- transform="rotate(-90,746.45698,-44.543641)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path979"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="-5.9989963e-06" />
- <text
- id="text1063"
- y="111.05016"
- x="537.25018"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="537.25018"
- id="tspan1061"
- sodipodi:role="line">-100</tspan></text>
- </g>
- <g
- id="g1076"
- inkscape:label="+100"
- transform="translate(-416.52022,170.47452)"
- style="stroke-width:2">
- <path
- inkscape:transform-center-x="-14.956365"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-y="-5.5023185e-06"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path985"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <text
- id="text1067"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="925.82605"
- id="tspan1065"
- sodipodi:role="line">+100</tspan></text>
- </g>
- <g
- id="g1081"
- inkscape:label="+10"
- transform="translate(-416.52022,170.47452)"
- style="stroke-width:2">
- <path
- inkscape:transform-center-x="-14.956349"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path987"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.3040441e-05" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="842.71497"
- y="111.05016"
- id="text1071"><tspan
- sodipodi:role="line"
- id="tspan1069"
- x="842.71497"
- y="111.05016"
- style="stroke-width:1px">+10</tspan></text>
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#82ff77;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
- x="736.32812"
- y="1478.2422"
- id="text995"
- inkscape:label="HMI:Display@/PUMP0/PRESSURE"><tspan
- sodipodi:role="line"
- id="tspan993"
- x="736.32812"
- y="1478.2422"
- style="fill:#82ff77;fill-opacity:1;stroke-width:1px;">8888</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="28.181862"
- y="365.32291"
- id="text134"
- inkscape:label="HMI:Display@/PUMP0/STROUT"><tspan
- sodipodi:role="line"
- id="tspan132"
- x="28.181862"
- y="365.32291"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
- <text
- inkscape:label="HMI:Display@/PUMP0/BOOLOUT"
- id="text138"
- y="422.50345"
- x="28.181862"
- style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
- y="422.50345"
- x="28.181862"
- id="tspan136"
- sodipodi:role="line">8888</tspan></text>
- <g
- transform="matrix(0.28590269,0,0,0.28590269,0.70444171,226.1427)"
- id="g208-1"
- inkscape:label="HMI:Input@/PUMP0/STRIN"
- style="stroke-width:2">
- <text
- inkscape:label="value"
- id="text164"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="218.24219"
- x="136.32812"
- id="tspan162"
- sodipodi:role="line">8888</tspan></text>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect166"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="+"dhu""
- id="g174"
- style="stroke-width:2">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:transform-center-y="-14.956361"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- id="path168"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="733.58197"
- y="111.05016"
- id="text172"><tspan
- sodipodi:role="line"
- id="tspan170"
- x="733.58197"
- y="111.05016"
- style="stroke-width:1px">dhu</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="plop""
- id="g182"
- style="stroke-width:2">
- <path
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path176"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-184.98808"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.6154501e-05"
- inkscape:transform-center-x="14.956371" />
- <text
- id="text180"
- y="111.05016"
- x="633.09552"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="633.09552"
- id="tspan178"
- sodipodi:role="line">plop</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhoo""
- id="g190"
- style="stroke-width:2">
- <path
- inkscape:transform-center-y="-5.9989963e-06"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-216.2599"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path184"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="rotate(-90,746.45698,-44.543641)"
- inkscape:transform-center-x="14.956364" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="537.25018"
- y="111.05016"
- id="text188"><tspan
- sodipodi:role="line"
- id="tspan186"
- x="537.25018"
- y="111.05016"
- style="stroke-width:1px">mhoo</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="yodl""
- id="g198"
- style="stroke-width:2">
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path192"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="105.17262"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:transform-center-y="-5.5023185e-06"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-x="-14.956365" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="925.82605"
- y="111.05016"
- id="text196"><tspan
- sodipodi:role="line"
- id="tspan194"
- x="925.82605"
- y="111.05016"
- style="stroke-width:1px">yodl</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhe""
- id="g206-1"
- style="stroke-width:2">
- <path
- inkscape:transform-center-y="-3.3040441e-05"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="136.44444"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path200"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- inkscape:transform-center-x="-14.956349" />
- <text
- id="text204"
- y="111.05016"
- x="842.71497"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="842.71497"
- id="tspan202"
- sodipodi:role="line">mhe</tspan></text>
- </g>
- </g>
- <g
- inkscape:label="HMI:Keypad:HMI_INT:HMI_REAL"
- id="g2432"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- transform="matrix(3.3549332,0,0,3.14525,-181.87457,2336.0198)">
- <path
- sodipodi:nodetypes="ccccc"
- inkscape:label="Background"
- inkscape:connector-curvature="0"
- id="path2136"
- d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <rect
- ry="3.8152773"
- rx="3.8152773"
- y="15.77106"
- x="64.024963"
- height="30.150299"
- width="361.89996"
- id="rect2426"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:label="Field" />
- <text
- id="text2430"
- y="37.408375"
- x="72.50132"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="Value"><tspan
- style="text-align:start;text-anchor:start;stroke-width:0.47690967px"
- y="37.408375"
- x="72.50132"
- id="tspan2428"
- sodipodi:role="line">number</tspan></text>
- <g
- style="fill-rule:evenodd;stroke-width:0.13585199"
- inkscape:label="Enter"
- id="g4947"
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
- <path
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.10074362;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path193"
- d="m 750,175 c 0,-2 -1,-3 -3,-3 h -20 c -1,0 -3,1 -3,3 v 43 c 0,1 2,2 3,2 h 20 c 2,0 3,-1 3,-2 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -1244.2949,1166.5938 v 15.791 h -38.6875 v -2.9981 l -6.9199,4 6.9199,4 v -2.998 h 40.6836 v -17.7949 z"
- transform="matrix(0.28557246,0,0,0.28557246,1098.7155,-140.51013)"
- id="path6545-4"
- inkscape:connector-curvature="0" />
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.13585199"
- inkscape:label="Keys"
- id="g4993"
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60855)">
- <g
- style="stroke-width:0.13585199"
- inkscape:label="7"
- id="g4892">
- <path
- inkscape:connector-curvature="0"
- d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path163"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text331"
- y="129.38269"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">7</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="4"
- id="g4907">
- <path
- inkscape:connector-curvature="0"
- d="m 638,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path169"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text335"
- y="154.10822"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">4</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="1"
- id="g4922">
- <path
- inkscape:connector-curvature="0"
- d="m 638,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path175"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text339"
- y="179.82285"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">1</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="8"
- id="g4897">
- <path
- inkscape:connector-curvature="0"
- d="m 668,120 h 19 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path165"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text347"
- y="129.38269"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">8</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="5"
- id="g4912">
- <path
- inkscape:connector-curvature="0"
- d="m 668,146 h 19 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -19 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path171"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text351"
- y="154.10822"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">5</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="2"
- id="g4927">
- <path
- inkscape:connector-curvature="0"
- d="m 668,172 h 19 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path177"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text355"
- y="179.82285"
- x="667.07562"
- transform="scale(1.0007154,0.99928514)">2</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="9"
- id="g4902">
- <path
- inkscape:connector-curvature="0"
- d="m 697,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- id="path167"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text363"
- y="129.38269"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">9</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="6"
- id="g4917">
- <path
- inkscape:connector-curvature="0"
- d="m 697,146 h 20 c 2,0 3,1 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path173"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text367"
- y="154.10822"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">6</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="3"
- id="g4932">
- <path
- inkscape:connector-curvature="0"
- d="m 697,172 h 20 c 2,0 3,1 3,3 v 17 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -17 c 0,-2 2,-3 3,-3 z"
- id="path179"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text371"
- y="179.82285"
- x="695.75708"
- transform="scale(1.0007154,0.99928514)">3</text>
- </g>
- <g
- style="stroke-width:0.13585199"
- inkscape:label="0"
- id="g4937">
- <path
- inkscape:connector-curvature="0"
- d="m 638,220 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 h 49 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 z"
- id="path373"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text377"
- y="205.53712"
- x="636.4165"
- transform="scale(1.0007154,0.99928514)">0</text>
- </g>
- </g>
- <g
- id="g3113"
- inkscape:label="Esc"
- transform="translate(-318.22576)">
- <path
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path167-3"
- d="m 387.26079,54.792986 h 33.40019 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -33.40019 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
- inkscape:connector-curvature="0" />
- <text
- x="394.42801"
- y="78.632088"
- id="text469-4"
- style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928511)">Esc</text>
- </g>
- <g
- id="g3109"
- inkscape:label="BackSpace"
- transform="translate(0,-43.420332)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path173-1"
- d="m 387.26079,98.213318 h 33.40019 c 3.34,0 5.01006,1.670013 5.01006,5.010032 v 30.06024 c 0,3.34002 -1.67006,5.01003 -5.01006,5.01003 h -33.40019 c -1.67006,0 -5.01007,-1.67001 -5.01007,-5.01003 v -30.06024 c 0,-3.340019 3.34001,-5.010032 5.01007,-5.010032 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -1278.9668,1041.3047 -6.9199,4 6.9199,4 v -3 h 33.416 v -1.9981 h -33.416 z"
- transform="matrix(0.47690966,0,0,0.47690966,1008.0304,-380.26227)"
- id="path11623-1-0-2"
- inkscape:connector-curvature="0" />
- </g>
- <g
- id="g787"
- inkscape:label="Sign"
- style="fill-rule:evenodd;stroke-width:0.13585199"
- transform="matrix(1.6700128,0,0,1.6700128,-678.20742,-102.18822)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path781"
- d="m 638,120 h 20 c 2,0 3,2 3,3 v 18 c 0,2 -1,3 -3,3 h -20 c -1,0 -3,-1 -3,-3 v -18 c 0,-1 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="642.1239"
- y="135.09822"
- id="text783"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- transform="scale(1.0007154,0.99928514)">+/-</text>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="252.9579"
- y="12.333653"
- id="text509"
- transform="scale(0.96824589,1.0327955)"
- inkscape:label="Info"><tspan
- sodipodi:role="line"
- id="tspan507"
- x="252.9579"
- y="12.333653"
- style="stroke-width:0.30784383px">information</tspan></text>
- <g
- transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60856)"
- style="fill-rule:evenodd;stroke-width:0.13585199"
- id="g4942"
- inkscape:label="NumDot">
- <path
- inkscape:connector-curvature="0"
- d="m 697,197 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path181"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.10074359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:6.96602964px;font-family:Arial;fill:#2b2828;stroke-width:0.10514989"
- id="text771"
- y="204.54802"
- x="696.7464"
- transform="scale(1.0007154,0.99928514)">.</text>
- </g>
- </g>
- <g
- transform="matrix(3.3549332,0,0,3.14525,-181.87457,1556.0198)"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4278"
- inkscape:label="HMI:Keypad:HMI_STRING:HMI_LOCAL:PAGE_LOCAL">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="M 54.211084,1.2654702 H 435.7388 V 230.18209 H 54.211084 Z"
- id="rect1006-3"
- inkscape:connector-curvature="0"
- inkscape:label="Background"
- sodipodi:nodetypes="ccccc" />
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path185"
- d="m 162,197 h -11 c -2,0 -3,1 -3,3 v 18 c 0,2 1,3 3,3 h 11 168 18 c 0,0 1,-1 1,-3 v -18 c 0,-2 -1,-3 -1,-3 h -18 z"
- inkscape:connector-curvature="0"
- inkscape:label="Space" />
- <g
- id="g4380"
- inkscape:label="Keys"
- style="stroke-width:0.47631353"
- transform="translate(0,-19.076386)">
- <g
- id="g4283"
- inkscape:label="q Q"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path41"
- d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="99.378708"
- y="138.28395"
- id="text203"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">Q</text>
- </g>
- <g
- id="g4337"
- inkscape:label="w W"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path43"
- d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="127.0709"
- y="138.28395"
- id="text207"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">W</text>
- </g>
- <g
- id="g4332"
- inkscape:label="e E"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path45"
- d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="159.70854"
- y="138.28395"
- id="text211"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">E</text>
- </g>
- <g
- id="g4326"
- inkscape:label="r R"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path47"
- d="m 184,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="188.39003"
- y="138.28395"
- id="text215"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">R</text>
- </g>
- <g
- id="g4321"
- inkscape:label="t T"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path49"
- d="m 213,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="219.04961"
- y="138.28395"
- id="text219"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">T</text>
- </g>
- <g
- id="g4316"
- inkscape:label="y Y"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path51"
- d="m 243,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="248.72017"
- y="138.28395"
- id="text223"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">Y</text>
- </g>
- <g
- id="g4311"
- inkscape:label="u U"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path53"
- d="m 273,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="278.39075"
- y="138.28395"
- id="text227"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">U</text>
- </g>
- <g
- id="g4306"
- inkscape:label="i I"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path55"
- d="m 302,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="311.02859"
- y="138.28395"
- id="text231"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">I</text>
- </g>
- <g
- id="g4301"
- inkscape:label="o O"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path57"
- d="m 332,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="336.74319"
- y="138.28395"
- id="text235"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">O</text>
- </g>
- <g
- id="g4296"
- inkscape:label="p P"
- style="stroke-width:0.47631353"
- transform="translate(0,-9.5381931)">
- <path
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path59"
- d="m 362,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 v -18 c 0,-2 1,-3 2,-3 z"
- inkscape:connector-curvature="0" />
- <text
- x="367.40256"
- y="138.28395"
- id="text239"
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928514)">P</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4511"
- inkscape:label="a A">
- <path
- inkscape:connector-curvature="0"
- d="m 103,147 h 19 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path65"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text243"
- y="163.99854"
- x="107.29005"
- transform="scale(1.0007154,0.99928514)">A</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4516"
- inkscape:label="s S">
- <path
- inkscape:connector-curvature="0"
- d="m 132,147 h 20 c 1,0 3,1 3,2 v 19 c 0,1 -2,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path67"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text247"
- y="163.99854"
- x="137.95012"
- transform="scale(1.0007154,0.99928514)">S</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4521"
- inkscape:label="d D">
- <path
- inkscape:connector-curvature="0"
- d="m 162,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path69"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text251"
- y="163.99854"
- x="166.63159"
- transform="scale(1.0007154,0.99928514)">D</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4526"
- inkscape:label="f F">
- <path
- inkscape:connector-curvature="0"
- d="m 192,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path71"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text255"
- y="163.99854"
- x="197.29166"
- transform="scale(1.0007154,0.99928514)">F</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4531"
- inkscape:label="g G">
- <path
- inkscape:connector-curvature="0"
- d="m 221,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -2,0 -3,-1 -3,-2 v -19 c 0,-1 1,-2 3,-2 z"
- id="path73"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text259"
- y="163.99854"
- x="225.97284"
- transform="scale(1.0007154,0.99928514)">G</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4536"
- inkscape:label="h H">
- <path
- inkscape:connector-curvature="0"
- d="m 251,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path75"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text263"
- y="163.99854"
- x="255.64342"
- transform="scale(1.0007154,0.99928514)">H</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4541"
- inkscape:label="j J">
- <path
- inkscape:connector-curvature="0"
- d="m 281,147 h 19 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -19 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path77"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text267"
- y="163.99854"
- x="287.29208"
- transform="scale(1.0007154,0.99928514)">J</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4546"
- inkscape:label="k K">
- <path
- inkscape:connector-curvature="0"
- d="m 310,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path79"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text271"
- y="163.99854"
- x="314.98465"
- transform="scale(1.0007154,0.99928514)">K</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4551"
- inkscape:label="l L">
- <path
- inkscape:connector-curvature="0"
- d="m 340,147 h 20 c 2,0 3,1 3,2 v 19 c 0,1 -1,2 -3,2 h -20 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 z"
- id="path81"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text275"
- y="163.99854"
- x="345.64444"
- transform="scale(1.0007154,0.99928514)">L</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4586"
- inkscape:label="z Z"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 113,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
- id="path87-3"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text279"
- y="188.72411"
- x="119.15855"
- transform="scale(1.0007154,0.99928514)">Z</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4581"
- inkscape:label="x X"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 143,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
- id="path89-6"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text283"
- y="188.72411"
- x="148.82933"
- transform="scale(1.0007154,0.99928514)">X</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4576"
- inkscape:label="c C"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 173,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 z"
- id="path91-7"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text287"
- y="188.72411"
- x="178.50011"
- transform="scale(1.0007154,0.99928514)">C</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4571"
- inkscape:label="v V"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 202,172 h 21 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -21 c 0,0 -1,-1 -1,-3 v -17 c 0,-1 1,-3 1,-3 z"
- id="path195"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text291"
- y="188.72411"
- x="208.16988"
- transform="scale(1.0007154,0.99928514)">V</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4566"
- inkscape:label="b B"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 233,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path93"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text295"
- y="188.72411"
- x="237.84096"
- transform="scale(1.0007154,0.99928514)">B</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4561"
- inkscape:label="n N"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 263,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path95"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text299"
- y="188.72411"
- x="267.51193"
- transform="scale(1.0007154,0.99928514)">N</text>
- </g>
- <g
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4556"
- inkscape:label="m M"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 293,172 h 19 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -19 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path97"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text303"
- y="188.72411"
- x="296.1933"
- transform="scale(1.0007154,0.99928514)">M</text>
- </g>
- <g
- id="g4818"
- inkscape:label=". :"
- style="stroke-width:0.47631353"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 352,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path101"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- transform="scale(1.0007154,0.99928513)"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- id="text719"
- y="189.66107"
- x="359.58276">.</text>
- <text
- x="359.58276"
- y="181.64532"
- id="text4834"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928512)">:</text>
- </g>
- <g
- id="g4813"
- inkscape:label=", ;"
- style="stroke-width:0.47631353"
- transform="translate(0,9.5381929)">
- <path
- inkscape:connector-curvature="0"
- d="m 322,172 h 20 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 h -20 c -2,0 -3,-1 -3,-3 v -17 c 0,-1 1,-3 3,-3 z"
- id="path99"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- id="text727"
- y="181.64532"
- x="330.00806"
- transform="scale(1.0007154,0.99928512)">;</text>
- <text
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- y="189.66107"
- x="330.00806"
- transform="scale(1.0007154,0.99928512)"
- id="text4826">,</text>
- </g>
- <g
- style="stroke-width:0.47631353"
- inkscape:label="1"
- id="g2845"
- transform="translate(-13.353469,-45.783327)">
- <path
- inkscape:connector-curvature="0"
- d="m 95,121 h 19 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 H 95 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path2839"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2841"
- y="138.28395"
- x="101.07153"
- transform="scale(1.0007154,0.99928513)">1</text>
- </g>
- <g
- style="stroke-width:0.47631353"
- inkscape:label="2"
- id="g2853"
- transform="translate(-13.353469,-45.783327)">
- <path
- inkscape:connector-curvature="0"
- d="m 124,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path2847"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2849"
- y="138.28395"
- x="130.18704"
- transform="scale(1.0007154,0.99928513)">2</text>
- </g>
- <g
- inkscape:label="3"
- id="g2861"
- style="stroke-width:0.47631353"
- transform="translate(-13.353469,-45.783327)">
- <path
- inkscape:connector-curvature="0"
- d="m 154,121 h 20 c 2,0 3,1 3,3 v 18 c 0,1 -1,3 -3,3 h -20 c -1,0 -3,-2 -3,-3 v -18 c 0,-2 2,-3 3,-3 z"
- id="path2855"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2857"
- y="138.28395"
- x="159.70854"
- transform="scale(1.0007154,0.99928514)">3</text>
- </g>
- <g
- id="g2957"
- inkscape:label="4"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 170.64653,94.293059 h 19 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -19 c -1,0 -3,-2 -3,-3 V 97.293059 c 0,-2 2,-3 3,-3 z"
- id="path2865"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2867"
- y="111.55791"
- x="176.39188"
- transform="scale(1.0007154,0.99928514)">4</text>
- </g>
- <g
- id="g2962"
- inkscape:label="5"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 199.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2873"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2875"
- y="111.55791"
- x="205.70567"
- transform="scale(1.0007154,0.99928514)">5</text>
- </g>
- <g
- id="g2967"
- inkscape:label="6"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 229.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2881"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2883"
- y="111.55791"
- x="236.15851"
- transform="scale(1.0007154,0.99928514)">6</text>
- </g>
- <g
- id="g2972"
- inkscape:label="7"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 259.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2889"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2891"
- y="111.55791"
- x="266.06564"
- transform="scale(1.0007154,0.99928514)">7</text>
- </g>
- <g
- id="g2977"
- inkscape:label="8"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 288.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2897"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2899"
- y="111.55791"
- x="295.08231"
- transform="scale(1.0007154,0.99928514)">8</text>
- </g>
- <g
- id="g2982"
- inkscape:label="9 -"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 318.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2905"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2907"
- y="111.55791"
- x="325.05408"
- transform="scale(1.0007154,0.99928514)">9</text>
- <text
- transform="scale(1.0007154,0.99928511)"
- x="335.72681"
- y="102.42173"
- id="text806"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826">-</text>
- </g>
- <g
- id="g2987"
- inkscape:label="0 +"
- transform="translate(0,-19.076386)">
- <path
- inkscape:connector-curvature="0"
- d="m 348.64653,94.293059 h 20 c 2,0 3,1 3,3 v 18.000001 c 0,1 -1,3 -3,3 h -20 c -1,0 -2,-2 -2,-3 V 97.293059 c 0,-2 1,-3 2,-3 z"
- id="path2913"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- style="font-weight:normal;font-size:13.93205929px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text2915"
- y="111.55791"
- x="355.05984"
- transform="scale(1.0007154,0.99928514)">0</text>
- <text
- transform="scale(1.0007154,0.99928511)"
- style="font-weight:normal;font-size:9.28803921px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- id="text804"
- y="102.42173"
- x="365.30151">+</text>
- </g>
- </g>
- <g
- transform="translate(335.89988,-58.934803)"
- id="g3544"
- inkscape:label="Esc"
- style="stroke-width:0.47631353">
- <path
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path105"
- d="m 47.948645,115.07509 h 39.076386 c 1,0 3,1 3,3 v 18 c 0,1 -2,3 -3,3 H 47.948645 c -2,0 -3,-2 -3,-3 v -18 c 0,-2 1,-3 3,-3 z"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="sssssssss" />
- <text
- transform="scale(1.0007154,0.99928512)"
- style="font-weight:normal;font-size:9.37966251px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- id="text469"
- y="130.02028"
- x="59.288635">Esc</text>
- </g>
- <g
- inkscape:label="Enter"
- id="g4291"
- style="stroke-width:0.47631353"
- transform="translate(0,-19.076386)">
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path3616"
- d="m 368.68274,170 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 54.24217 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -260.23633,1080.8125 v 15.7949 h -38.68555 v -3 l -6.91992,4 6.91992,4 v -3.0019 h 40.6836 v -17.793 z"
- transform="matrix(0.47690966,0,0,0.47690966,531.12074,-361.18588)"
- id="path6545"
- inkscape:connector-curvature="0" />
- </g>
- <g
- inkscape:label="BackSpace"
- id="g4287"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- transform="translate(2.3648311e-6,-28.614579)">
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path3624"
- d="m 391.97749,144 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 30.94742 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- inkscape:connector-curvature="0" />
- <path
- style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#2b2828;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m -268.72656,1011.1777 -6.91992,4 6.91992,4 v -3.0019 h 29.18945 v -1.9981 h -29.18945 z"
- transform="matrix(0.47690966,0,0,0.47690966,531.12074,-351.64769)"
- id="path11623-1-0"
- inkscape:connector-curvature="0" />
- </g>
- <g
- id="g934"
- inkscape:label="CapsLock">
- <g
- inkscape:label="inactive"
- id="g942"
- style="display:inline;fill-rule:evenodd;stroke-width:0.47631353"
- transform="translate(0,-19.076386)">
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path936"
- d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
- inkscape:connector-curvature="0" />
- <text
- x="69.789322"
- y="156.71973"
- id="text938-5"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
- transform="scale(1.0007154,0.99928515)">Caps</text>
- <text
- x="69.789322"
- y="166.5585"
- id="text940"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#2b2828;stroke-width:0.36866823"
- transform="scale(1.0007154,0.99928515)">Lock</text>
- </g>
- <g
- transform="translate(0,-19.076386)"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g4429"
- inkscape:label="active">
- <path
- inkscape:connector-curvature="0"
- d="m 67.025031,170 c -1,0 -3,-1 -3,-2 v -19 c 0,-1 2,-2 3,-2 H 92 c 2,0 4,1 4,2 v 19 c 0,1 -2,2 -4,2 z"
- id="path199"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <text
- transform="scale(1.0007154,0.99928515)"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
- id="text647"
- y="156.71973"
- x="69.789322">Caps</text>
- <text
- transform="scale(1.0007154,0.99928515)"
- style="font-weight:normal;font-size:8.66233635px;font-family:Arial;fill:#ffffff;stroke-width:0.36866823"
- id="text651"
- y="166.5585"
- x="69.789322">Lock</text>
- </g>
- </g>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect2130"
- width="361.89996"
- height="30.150299"
- x="64.024956"
- y="15.771065"
- rx="3.8152773"
- ry="3.8152773"
- inkscape:label="Field" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="72.50132"
- y="38.296417"
- id="text1309"
- inkscape:label="Value"><tspan
- sodipodi:role="line"
- id="tspan1307"
- x="72.50132"
- y="38.296417"
- style="text-align:start;text-anchor:start;stroke-width:0.47690967px">text</tspan></text>
- <g
- id="g437"
- inkscape:label="Shift">
- <g
- id="g421"
- inkscape:label="inactive">
- <path
- inkscape:connector-curvature="0"
- d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- id="path910"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <text
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
- id="text912"
- y="177.90059"
- x="392.55679"
- transform="scale(1.0007154,0.99928513)">Shift</text>
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#d3d2d2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824308;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path856"
- d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
- inkscape:connector-curvature="0" />
- <text
- x="75.85218"
- y="177.90059"
- id="text858"
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.36866826"
- transform="scale(1.0007154,0.99928513)">Shift</text>
- </g>
- <g
- id="g413"
- inkscape:label="active">
- <path
- sodipodi:nodetypes="sssssssss"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path551"
- d="m 379.96247,185.46181 c -1,0 -2,-1 -2,-3 v -17 c 0,-1 1,-3 2,-3 h 42.96244 c 2,0 3,2 3,3 v 17 c 0,2 -1,3 -3,3 z"
- inkscape:connector-curvature="0" />
- <text
- transform="scale(1.0007154,0.99928513)"
- x="392.55679"
- y="177.90059"
- id="text629"
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;stroke-width:0.36866826">Shift</text>
- <path
- inkscape:connector-curvature="0"
- d="m 67.025031,185.46181 c -1,0 -3,-1 -3,-3 v -17 c 0,-1 2,-3 3,-3 H 104 c 1,0 2,2 2,3 v 17 c 0,2 -1,3 -2,3 z"
- id="path879"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <text
- transform="scale(1.0007154,0.99928513)"
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- id="text881"
- y="177.90059"
- x="75.85218">Shift</text>
- </g>
- </g>
- <text
- transform="scale(0.96824588,1.0327955)"
- id="text471"
- y="12.333657"
- x="252.9579"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="Info"><tspan
- style="stroke-width:0.30784383px"
- y="12.333657"
- x="252.9579"
- id="tspan469"
- sodipodi:role="line">information</tspan></text>
- </g>
- <g
- id="g14237"
- inkscape:label="HMI:DropDown:1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:16:17:18:19:20:21:22:23:24:25:26:27@/SELECTION"
- transform="matrix(0.81491208,0,0,0.81491208,243.6641,-510.30491)"
- style="stroke-width:0.35083869">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#53676c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect14212"
- width="391.99988"
- height="130.9433"
- x="864.00842"
- y="923.98993"
- rx="2.4558709"
- ry="2.4558709"
- inkscape:label="box" />
- <rect
- inkscape:label="highlight"
- ry="2.4558709"
- rx="2.4558709"
- y="943.10553"
- x="864.00842"
- height="92.71212"
- width="391.99988"
- id="rect5497"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419331;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text14183"
- y="1011.9975"
- x="881.44226"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d42aff;fill-opacity:1;stroke:none;stroke-width:0.35083869px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="text"><tspan
- style="text-align:start;text-anchor:start;fill:#d42aff;stroke-width:0.35083869px"
- y="1011.9975"
- x="881.44226"
- sodipodi:role="line"
- id="tspan421">sel_0</tspan></text>
- <path
- sodipodi:type="star"
- style="opacity:1;vector-effect:none;fill:#a7a5a6;fill-opacity:1;stroke:none;stroke-width:0.12376806;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path424"
- sodipodi:sides="3"
- sodipodi:cx="1200.5"
- sodipodi:cy="975"
- sodipodi:r1="43.683521"
- sodipodi:r2="21.841761"
- sodipodi:arg1="1.5707963"
- sodipodi:arg2="2.6179939"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 1200.5,1018.6835 -18.9155,-32.76262 -18.9155,-32.76264 37.831,0 37.831,0 -18.9155,32.76264 z"
- inkscape:transform-center-y="10.92088"
- inkscape:label="button" />
- </g>
- <g
- id="g14274"
- inkscape:label="HMI:List:HoodNames:ForEach:HOOD:NAME@/" />
- <g
- inkscape:label="HMI:Input@/SELECTION"
- id="g446"
- transform="matrix(0.28590269,0,0,0.28590269,85.246911,560.98603)">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="216.32812"
- y="218.24219"
- id="text432"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan430"
- x="216.32812"
- y="218.24219"
- style="text-align:end;text-anchor:end;stroke-width:1px">8</tspan></text>
- <path
- transform="scale(1,-1)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path436"
- sodipodi:sides="3"
- sodipodi:cx="276.74072"
- sodipodi:cy="-224.98808"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 302.6459,-210.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="7.4781812"
- inkscape:label="-1" />
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="-174.94055"
- height="128"
- width="407.7037"
- id="rect438"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:label="+1"
- inkscape:transform-center-y="-7.4781804"
- d="m 302.6459,111.4008 -51.81035,0 25.90517,-44.869079 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="96.444443"
- sodipodi:cx="276.74072"
- sodipodi:sides="3"
- id="path442"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <path
- inkscape:label="=0"
- inkscape:transform-center-y="-10.828983"
- d="m 306.14807,189.68763 -58.37872,0.43598 -0.43597,-58.37872 58.37871,-0.43597 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5633284"
- sodipodi:arg1="0.77793027"
- sodipodi:r2="21.657967"
- sodipodi:r1="41.281136"
- sodipodi:cy="160.71626"
- sodipodi:cx="276.74072"
- sodipodi:sides="4"
- id="path444"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- inkscape:transform-center-x="1.0089177e-06" />
- </g>
- <g
- transform="matrix(0.57180538,0,0,0.57180538,-522.96165,161.69266)"
- id="g443"
- inkscape:label="HMI:Button@/SELECTION"
- style="stroke-width:1">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect5492"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="23.930969"
- inkscape:label="inactive"
- rx="23.930969" />
- <rect
- rx="23.930969"
- inkscape:label="active"
- ry="23.930969"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect433"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fdfdfd;fill-opacity:1;fill-rule:nonzero;stroke:#ffd0b2;stroke-width:28.60938263;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- style="stroke-width:1"
- inkscape:label="text"
- id="g952">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="656.98151"
- id="text950"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- id="tspan948"
- x="1090.7626"
- y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">up</tspan></text>
- </g>
- </g>
- <g
- id="g5053"
- inkscape:label="HMI:Switch@/PUMP0/BOOLOUT"
- transform="translate(43.983597,40.477445)">
- <g
- id="g473"
- style="fill:#ff0000;stroke:#ff00ff"
- inkscape:label="true">
- <path
- d="M 825.90067,963.24473 V 1105.042 L 960.08282,916.47893 V 809.26931 Z"
- style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3451"
- inkscape:connector-curvature="0" />
- <path
- d="m 825.90067,1105.042 90.50966,81.6485 121.15167,-225.30346 -77.47918,-44.90811 z"
- style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3453"
- inkscape:connector-curvature="0" />
- <path
- d="m 960.08282,809.26931 77.47918,36.25625 v 115.86148 l -77.47918,-44.90811 z"
- style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3455"
- inkscape:connector-curvature="0" />
- <path
- d="M 825.90067,963.24473 916.41033,1029.3537 1037.562,845.52556 960.08282,809.26931 Z"
- style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3457"
- inkscape:connector-curvature="0" />
- <path
- d="m 916.41033,1029.3537 v 157.3368 L 1037.562,961.38704 V 845.52556 Z"
- style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3459"
- inkscape:connector-curvature="0" />
- <path
- d="m 825.90067,963.24473 90.50966,66.10897 v 157.3368 l -90.50966,-81.6485 z"
- style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3461"
- inkscape:connector-curvature="0" />
- </g>
- <g
- id="g501"
- style="fill:#ff0000;stroke:#ff00ff"
- inkscape:label="false">
- <path
- d="M 855.90069,905.24473 V 1047.042 L 978.3745,966.29311 V 859.0835 Z"
- style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3437"
- inkscape:connector-curvature="0" />
- <path
- d="m 855.90069,1047.042 90.50966,81.6485 108.49845,-108.7886 -76.5343,-53.60879 z"
- style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3439"
- inkscape:connector-curvature="0" />
- <path
- d="m 978.3745,859.0835 76.5343,44.95689 v 115.86151 l -76.5343,-53.60879 z"
- style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3441"
- inkscape:connector-curvature="0" />
- <path
- d="m 855.90069,905.24473 90.50966,66.10901 108.49845,-67.31335 -76.5343,-44.95689 z"
- style="fill:#4d389f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3443"
- inkscape:connector-curvature="0" />
- <path
- d="M 946.41035,971.35374 V 1128.6905 L 1054.9088,1019.9019 V 904.04039 Z"
- style="fill:#d78bff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3445"
- inkscape:connector-curvature="0" />
- <path
- d="m 855.90069,905.24473 90.50966,66.10901 v 157.33676 l -90.50966,-81.6485 z"
- style="fill:#8667bf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3447"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- <g
- transform="matrix(3.3549332,0,0,3.14525,-181.87457,3116.0198)"
- style="fill-rule:evenodd;stroke-width:0.47631353"
- id="g1490"
- inkscape:label="HMI:ModalOKDialog">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.6;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.16776976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="M 54.211099,1.2654702 H 435.73881 V 230.18209 H 54.211099 Z"
- id="path1386"
- inkscape:connector-curvature="0"
- inkscape:label="Background"
- sodipodi:nodetypes="ccccc" />
- <rect
- inkscape:label="Field"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffff5;fill-opacity:1;fill-rule:nonzero;stroke:#202326;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1388"
- width="314.68832"
- height="68.369255"
- x="87.630791"
- y="56.041908"
- rx="3.8152773"
- ry="3.8152773" />
- <text
- inkscape:label="Message"
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0763855px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.47690967px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="243.24242"
- y="94.637527"
- id="text1392"><tspan
- sodipodi:role="line"
- id="tspan1390"
- x="243.24242"
- y="94.637527"
- style="text-align:center;text-anchor:middle;stroke-width:0.47690967px">message</tspan></text>
- <g
- transform="translate(-158.98593,95.381925)"
- inkscape:label="OK"
- id="g1466">
- <path
- inkscape:connector-curvature="0"
- d="m 363.41531,54.792986 h 81.09115 c 3.34,0 5.01006,3.34003 5.01006,5.010045 v 30.060225 c 0,3.340029 -1.67006,5.010032 -5.01006,5.010032 h -81.09115 c -1.67006,0 -5.01007,-1.670003 -5.01007,-5.010032 V 59.803031 c 0,-1.670015 3.34001,-5.010045 5.01007,-5.010045 z"
- id="path1462"
- style="opacity:1;vector-effect:none;fill:#4f4c4d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.16824313;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:nodetypes="sssssssss" />
- <text
- transform="scale(1.0007154,0.99928511)"
- style="font-weight:normal;font-size:10.63882256px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.36866826"
- id="text1464"
- y="78.632088"
- x="402.71881">
- <tspan
- style="text-align:center;text-anchor:middle"
- id="tspan5195">OK</tspan>
- </text>
- </g>
- <text
- inkscape:label="Info"
- transform="scale(0.96824589,1.0327955)"
- id="text1482"
- y="12.333653"
- x="252.9579"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.31375408px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30784383px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.30784383px"
- y="12.333653"
- x="252.9579"
- id="tspan1480"
- sodipodi:role="line">information</tspan></text>
- </g>
- <g
- inkscape:label="HMI:Meter@/PUMP0/SLOTH"
- transform="matrix(3.7795276,0,0,3.7795276,1628.51,630.30393)"
- id="g1338">
- <path
- inkscape:label="range"
- sodipodi:open="true"
- d="M 63.610123,2.2017068 A 64.411957,64.411957 0 0 1 128.02208,-62.210247"
- sodipodi:end="4.712389"
- sodipodi:start="3.1415927"
- sodipodi:ry="64.411957"
- sodipodi:rx="64.411957"
- sodipodi:cy="2.2017097"
- sodipodi:cx="128.02208"
- sodipodi:type="arc"
- id="path1318"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3ee800;stroke-width:26.45833397;stroke-miterlimit:4;stroke-dasharray:2.64583333, 2.64583333;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:label="needle"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path1320"
- d="M 130.96206,4.0725977 79.111776,-41.363223"
- style="fill:none;fill-rule:evenodd;stroke:#ff3000;stroke-width:2.96333337;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-end:url(#marker1656)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="49.132977"
- y="4.9187088"
- id="text1324"
- inkscape:label="min"><tspan
- sodipodi:role="line"
- id="tspan1322"
- x="49.132977"
- y="4.9187088"
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
- <text
- id="text1328"
- y="-78.144218"
- x="127.48073"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="max"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="-78.144218"
- x="127.48073"
- id="tspan1326"
- sodipodi:role="line">10000</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="113.53007"
- y="-6.1937833"
- id="text1332"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- x="113.53007"
- y="-6.1937833"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- id="tspan1330">000</tspan></text>
- <text
- inkscape:label="unit"
- id="text1336"
- y="1.1408259"
- x="124.77896"
- style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- id="tspan1334"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="1.1408259"
- x="124.77896"
- sodipodi:role="line">bar</tspan></text>
- </g>
- <g
- inkscape:label="HMI:Switch@/PUMP0/BOOLOUT"
- id="g1368"
- transform="translate(1424.3019,-503.18786)">
- <g
- id="g1352"
- style="fill:#ff0000;stroke:#ff00ff"
- inkscape:label="true">
- <path
- d="M 825.90072,963.24473 V 1105.042 L 960.08286,916.47892 V 809.26931 Z"
- style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3479"
- inkscape:connector-curvature="0" />
- <path
- d="m 825.90072,1105.042 90.50967,81.6485 121.15161,-225.30347 -77.47914,-44.90811 z"
- style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3481"
- inkscape:connector-curvature="0" />
- <path
- d="m 960.08286,809.26931 77.47914,36.25624 v 115.86148 l -77.47914,-44.90811 z"
- style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3483"
- inkscape:connector-curvature="0" />
- <path
- d="M 825.90072,963.24473 916.41039,1029.3537 1037.562,845.52555 960.08286,809.26931 Z"
- style="fill:#4d4d9f;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3485"
- inkscape:connector-curvature="0" />
- <path
- d="m 916.41039,1029.3537 v 157.3368 L 1037.562,961.38703 V 845.52555 Z"
- style="fill:#d7d7ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3487"
- inkscape:connector-curvature="0" />
- <path
- d="m 825.90072,963.24473 90.50967,66.10897 v 157.3368 l -90.50967,-81.6485 z"
- style="fill:#8686bf;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3489"
- inkscape:connector-curvature="0" />
- </g>
- <g
- id="g1366"
- style="fill:#ff0000;stroke:#ff00ff"
- inkscape:label="false">
- <path
- d="M 855.90072,905.24473 V 1047.042 L 978.37453,966.29311 V 859.08349 Z"
- style="fill:#353564;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3465"
- inkscape:connector-curvature="0" />
- <path
- d="m 855.90072,1047.042 90.50967,81.6485 108.49841,-108.7886 -76.53427,-53.60879 z"
- style="fill:#afafde;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3467"
- inkscape:connector-curvature="0" />
- <path
- d="m 978.37453,859.08349 76.53427,44.9569 v 115.86151 l -76.53427,-53.60879 z"
- style="fill:#e9e9ff;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3469"
- inkscape:connector-curvature="0" />
- <path
- d="m 855.90072,905.24473 90.50967,66.109 108.49841,-67.31334 -76.53427,-44.9569 z"
- style="fill:#4d389f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3471"
- inkscape:connector-curvature="0" />
- <path
- d="M 946.41039,971.35373 V 1128.6905 L 1054.9088,1019.9019 V 904.04039 Z"
- style="fill:#d78bff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3473"
- inkscape:connector-curvature="0" />
- <path
- d="m 855.90072,905.24473 90.50967,66.109 v 157.33677 l -90.50967,-81.6485 z"
- style="fill:#8667bf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-linejoin:round"
- id="path3475"
- inkscape:connector-curvature="0" />
- </g>
- </g>
- <g
- transform="matrix(0.63690435,0,0,0.63690435,1576.4961,80.355376)"
- inkscape:label="HMI:Input@/PUMP0/PRESSURE"
- id="g1394">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text1380"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1378"
- x="136.32812"
- y="218.24219"
- style="stroke-width:1px">8888</tspan></text>
- <path
- inkscape:label="-100"
- inkscape:transform-center-y="14.956363"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-216.2599"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1382"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="scale(1,-1)" />
- <path
- transform="scale(1,-1)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1384"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-184.98808"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="7.4781812"
- inkscape:label="-10" />
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect1386"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1388"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="105.17262"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:transform-center-y="-14.956361"
- inkscape:label="+100" />
- <path
- inkscape:label="+10"
- inkscape:transform-center-y="-7.4781804"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="136.44444"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1390"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <path
- inkscape:label="=0"
- inkscape:transform-center-y="-14.956361"
- d="M 121.35644,205.1862 C 158.18649,167.80191 3.342862,168.95829 40.72715,205.78834 78.111437,242.61839 76.95506,87.774762 40.125008,125.15905 3.2949549,162.54334 158.13858,161.38696 120.7543,124.55691 83.370008,87.726855 84.526385,242.57048 121.35644,205.1862 Z"
- inkscape:randomized="0"
- inkscape:rounded="-0.65084865"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5633284"
- sodipodi:arg1="0.77793027"
- sodipodi:r2="29.912722"
- sodipodi:r1="57.015106"
- sodipodi:cy="165.17262"
- sodipodi:cx="80.740723"
- sodipodi:sides="4"
- id="path1392"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- </g>
- <g
- style="stroke-width:2"
- inkscape:label="HMI:Input@/PUMP0/STRIN"
- id="g1442"
- transform="matrix(0.5,0,0,0.5,1470.1103,205.71623)">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text1398"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1396"
- x="136.32812"
- y="218.24219"
- style="stroke-width:2px">8888</tspan></text>
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect1400"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- style="stroke-width:2"
- id="g1408"
- inkscape:label="+"dhu""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:connector-curvature="0"
- id="path1402"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1406"
- y="111.05016"
- x="733.58197"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="733.58197"
- id="tspan1404"
- sodipodi:role="line">dhu</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1416"
- inkscape:label="="plop""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956371"
- inkscape:transform-center-y="-3.6154501e-05"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1410"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="633.09552"
- y="111.05016"
- id="text1414"><tspan
- sodipodi:role="line"
- id="tspan1412"
- x="633.09552"
- y="111.05016"
- style="stroke-width:1px">plop</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1424"
- inkscape:label="="mhoo""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956364"
- transform="rotate(-90,746.45698,-44.543641)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1418"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="-5.9989963e-06" />
- <text
- id="text1422"
- y="111.05016"
- x="537.25018"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="537.25018"
- id="tspan1420"
- sodipodi:role="line">mhoo</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1432"
- inkscape:label="="yodl""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956365"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-y="-5.5023185e-06"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1426"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <text
- id="text1430"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="925.82605"
- id="tspan1428"
- sodipodi:role="line">yodl</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1440"
- inkscape:label="="mhe""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956349"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1434"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.3040441e-05" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="842.71497"
- y="111.05016"
- id="text1438"><tspan
- sodipodi:role="line"
- id="tspan1436"
- x="842.71497"
- y="111.05016"
- style="stroke-width:1px">mhe</tspan></text>
- </g>
- </g>
- <text
- inkscape:label="HMI:Display@/PUMP0/STROUT"
- id="text1446"
- y="469.12109"
- x="1578.1641"
- style="font-style:normal;font-weight:normal;font-size:80px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.5px"
- y="469.12109"
- x="1578.1641"
- id="tspan1444"
- sodipodi:role="line">8888</tspan></text>
- <g
- transform="matrix(0.57180538,0,0,0.57180538,-153.64055,248.51305)"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP0"
- id="g1458">
- <g
- inkscape:label="button"
- id="g1450">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect1448"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- inkscape:label="text"
- id="g1456">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="656.98151"
- id="text1454"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- x="1090.7626"
- y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- id="tspan1460">Pump 0</tspan></text>
- </g>
- </g>
- <g
- id="g1475"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP1"
- transform="matrix(0.57180538,0,0,0.57180538,6.35945,248.51305)">
- <g
- id="g1467"
- inkscape:label="button">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1464"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- id="g1473"
- inkscape:label="text">
- <text
- inkscape:label="setting_jmp"
- id="text1471"
- y="656.98151"
- x="1090.7626"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- id="tspan1469"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="656.98151"
- x="1090.7626"
- sodipodi:role="line">Pump 1</tspan><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="706.98151"
- x="1090.7626"
- sodipodi:role="line"
- id="tspan1477" /></text>
- </g>
- </g>
- <g
- transform="matrix(0.57180538,0,0,0.57180538,166.35945,248.51305)"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP2"
- id="g1491">
- <g
- inkscape:label="button"
- id="g1481">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect1479"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- inkscape:label="text"
- id="g1489">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="656.98151"
- id="text1487"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- x="1090.7626"
- y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- id="tspan1493">Pump 2</tspan><tspan
- id="tspan1485"
- sodipodi:role="line"
- x="1090.7626"
- y="706.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px" /></text>
- </g>
- </g>
- <g
- id="g1509"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP3"
- transform="matrix(0.57180538,0,0,0.57180538,326.35945,248.51305)">
- <g
- id="g1499"
- inkscape:label="button">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1497"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- id="g1507"
- inkscape:label="text">
- <text
- inkscape:label="setting_jmp"
- id="text1505"
- y="656.98151"
- x="1090.7626"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="656.98151"
- x="1090.7626"
- sodipodi:role="line"
- id="tspan1511">Pump 3</tspan><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="706.98151"
- x="1090.7626"
- sodipodi:role="line"
- id="tspan1503" /></text>
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="403.8551"
- y="700.05371"
- id="text1517"
- inkscape:label="HMI:Display@/PUMP0/STROUT"><tspan
- sodipodi:role="line"
- id="tspan1515"
- x="403.8551"
- y="700.05371"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px">8888</tspan></text>
- <text
- inkscape:label="HMI:Display@/PUMP1/STROUT"
- id="text1521"
- y="700.05371"
- x="563.8551"
- style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px"
- y="700.05371"
- x="563.8551"
- id="tspan1519"
- sodipodi:role="line">8888</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="723.8551"
- y="700.05371"
- id="text1525"
- inkscape:label="HMI:Display@/PUMP2/STROUT"><tspan
- sodipodi:role="line"
- id="tspan1523"
- x="723.8551"
- y="700.05371"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px">8888</tspan></text>
- <text
- inkscape:label="HMI:Display@/PUMP3/STROUT"
- id="text1529"
- y="700.05371"
- x="883.8551"
- style="font-style:normal;font-weight:normal;font-size:55.09014511px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.34431386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px"
- y="700.05371"
- x="883.8551"
- id="tspan1527"
- sodipodi:role="line">8888</tspan></text>
- <g
- id="g6077"
- inkscape:label="HMI:ForEach:PUMP@/">
- <g
- id="g6130"
- inkscape:label="PUMP:1">
- <g
- transform="matrix(0.57180538,0,0,0.57180538,1024.0513,-317.49049)"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP0"
- id="g1458-8">
- <g
- inkscape:label="button"
- id="g1450-4">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect1448-8"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- inkscape:label="text"
- id="g1456-1">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1038.2972"
- y="635.99542"
- id="text1454-0"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- x="1038.2972"
- y="635.99542"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- id="tspan1460-3">Pump</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579209px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="992.45087"
- y="674.76117"
- id="text1517-8"
- inkscape:label="HMI:Display@/PUMP0/STROUT"><tspan
- sodipodi:role="line"
- id="tspan1515-5"
- x="992.45087"
- y="674.76117"
- style="fill:#000000;fill-opacity:1;stroke-width:0.24579209px">8888</tspan></text>
- </g>
- </g>
- </g>
- <g
- id="g6122"
- inkscape:label="PUMP:2">
- <g
- id="g1475-0"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP1"
- transform="matrix(0.57180538,0,0,0.57180538,1184.0513,-317.49049)">
- <g
- id="g1467-4"
- inkscape:label="button">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1464-4"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- id="g1473-4"
- inkscape:label="text">
- <text
- inkscape:label="setting_jmp"
- id="text1471-4"
- y="635.99542"
- x="1038.2972"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="635.99542"
- x="1038.2972"
- sodipodi:role="line"
- id="tspan1477-6">Pump</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579208px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="992.8111"
- y="674.76117"
- id="text1517-8-5"
- inkscape:label="HMI:Display@/PUMP1/STROUT"><tspan
- sodipodi:role="line"
- id="tspan1515-5-3"
- x="992.8111"
- y="674.76117"
- style="fill:#000000;fill-opacity:1;stroke-width:0.24579208px">8888</tspan></text>
- </g>
- </g>
- </g>
- <g
- id="g6113"
- inkscape:label="PUMP:3">
- <g
- transform="matrix(0.57180538,0,0,0.57180538,1344.0513,-317.49049)"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP2"
- id="g1491-3">
- <g
- inkscape:label="button"
- id="g1481-1">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect1479-7"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <g
- inkscape:label="text"
- id="g1489-5">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1038.2972"
- y="635.99542"
- id="text1487-9"
- inkscape:label="setting_jmp"><tspan
- id="tspan1485-2"
- sodipodi:role="line"
- x="1038.2972"
- y="635.99542"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Pump</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579208px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="993.17108"
- y="674.76117"
- id="text1517-8-8"
- inkscape:label="HMI:Display@/PUMP2/STROUT"><tspan
- sodipodi:role="line"
- id="tspan1515-5-8"
- x="993.17108"
- y="674.76117"
- style="fill:#000000;fill-opacity:1;stroke-width:0.24579208px">8888</tspan></text>
- </g>
- </g>
- </g>
- <g
- id="g6104"
- inkscape:label="PUMP:4">
- <g
- id="g1509-1"
- inkscape:label="HMI:Jump:RelativePageTest@/PUMP3"
- transform="matrix(0.57180538,0,0,0.57180538,1504.0513,-317.49049)">
- <g
- id="g1499-7"
- inkscape:label="button">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1497-8"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="35.579063"
- inkscape:label="button" />
- </g>
- <g
- id="g1507-5"
- inkscape:label="text">
- <text
- inkscape:label="setting_jmp"
- id="text1505-7"
- y="635.99542"
- x="1038.2972"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="635.99542"
- x="1038.2972"
- sodipodi:role="line"
- id="tspan1511-4">Pump</tspan><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
- y="685.99542"
- x="1038.2972"
- sodipodi:role="line"
- id="tspan1503-1" /></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:39.32668304px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24579208px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="993.53101"
- y="674.76117"
- id="text1517-8-3"
- inkscape:label="HMI:Display@/PUMP3/STROUT"><tspan
- sodipodi:role="line"
- id="tspan1515-5-1"
- x="993.53101"
- y="674.76117"
- style="fill:#000000;fill-opacity:1;stroke-width:0.24579208px">8888</tspan></text>
- </g>
- </g>
- </g>
- <g
- inkscape:label="PUMP:+1"
- id="g6241"
- transform="matrix(0.57180538,0,0,0.57180538,1461.2541,-321.48847)">
- <rect
- style="fill:#000000;fill-opacity:1;stroke:#ff0000;stroke-width:1.74884677"
- id="rect6235"
- width="89.036743"
- height="79.143768"
- x="1326.8333"
- y="612.41589"
- rx="22.385239"
- ry="20.986162" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:42.81540298px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.0703851"
- x="1340.5292"
- y="663.73657"
- id="text6239"><tspan
- sodipodi:role="line"
- id="tspan6237"
- x="1340.5292"
- y="663.73657"
- style="fill:#ffffff;stroke-width:1.0703851">+1</tspan></text>
- </g>
- <g
- transform="matrix(0.57180538,0,0,0.57180538,752.02604,-322.19558)"
- id="g6209"
- inkscape:label="PUMP:-1">
- <rect
- ry="20.986162"
- rx="22.385239"
- y="612.41589"
- x="1326.8333"
- height="79.143768"
- width="89.036743"
- id="rect6200"
- style="fill:#000000;fill-opacity:1;stroke:#ff0000;stroke-width:1.74884677" />
- <text
- id="text6204"
- y="663.73657"
- x="1340.5292"
- style="font-style:normal;font-weight:normal;font-size:42.81540298px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.0703851"
- xml:space="preserve"><tspan
- style="fill:#ffffff;stroke-width:1.0703851"
- y="663.73657"
- x="1340.5292"
- id="tspan6202"
- sodipodi:role="line">-1</tspan></text>
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:59.01374435px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#82ff77;fill-opacity:1;stroke:none;stroke-width:0.3688359px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="689.9715"
- y="539.24927"
- id="text995-6"
- inkscape:label="HMI:Display:Ploc %d (%d) grmbl !@/PUMP0/PRESSURE@/PUMP0/SLOTH"><tspan
- sodipodi:role="line"
- id="tspan993-3"
- x="689.9715"
- y="539.24927"
- style="text-align:center;text-anchor:middle;fill:#82ff77;fill-opacity:1;stroke-width:0.3688359px">8888</tspan></text>
- <text
- id="text831-1"
- y="477.76758"
- x="581.62634"
- style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="actual_label"><tspan
- y="477.76758"
- x="581.62634"
- id="tspan829-7"
- sodipodi:role="line"
- style="stroke-width:0.63690436px">Multiple variables</tspan></text>
- <text
- inkscape:label="HMI:Display@paff"
- id="text1457"
- y="68.844757"
- x="750.28473"
- style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
- y="68.844757"
- x="750.28473"
- id="tspan1455"
- sodipodi:role="line">8888</tspan></text>
- <g
- style="stroke-width:4"
- inkscape:label="HMI:Input@paff"
- id="g1505"
- transform="matrix(0.14295135,0,0,0.14295135,589.21833,37.615184)">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text1461"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1459"
- x="136.32812"
- y="218.24219"
- style="stroke-width:4px">8888</tspan></text>
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect1463"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- style="stroke-width:4"
- id="g1471"
- inkscape:label="+"dhu""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:connector-curvature="0"
- id="path1465"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1469"
- y="111.05016"
- x="733.58197"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="733.58197"
- id="tspan1467"
- sodipodi:role="line">dhu</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g1479"
- inkscape:label="="plop""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956371"
- inkscape:transform-center-y="-3.6154501e-05"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1473"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="633.09552"
- y="111.05016"
- id="text1477"><tspan
- sodipodi:role="line"
- id="tspan1475"
- x="633.09552"
- y="111.05016"
- style="stroke-width:2px">plop</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g1487"
- inkscape:label="="mhoo""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956364"
- transform="rotate(-90,746.45698,-44.543641)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1481"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="-5.9989963e-06" />
- <text
- id="text1485"
- y="111.05016"
- x="537.25018"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="537.25018"
- id="tspan1483"
- sodipodi:role="line">mhoo</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g1495"
- inkscape:label="="yodl""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956365"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-y="-5.5023185e-06"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1489"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <text
- id="text1493"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="925.82605"
- id="tspan1491"
- sodipodi:role="line">yodl</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g1503"
- inkscape:label="="mhe""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956349"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1497"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.3040441e-05" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="842.71497"
- y="111.05016"
- id="text1501"><tspan
- sodipodi:role="line"
- id="tspan1499"
- x="842.71497"
- y="111.05016"
- style="stroke-width:2px">mhe</tspan></text>
- </g>
- </g>
- <text
- inkscape:label="actual_label"
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:12.7380867px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="509.67926"
- y="43.42762"
- id="text1527"><tspan
- style="stroke-width:0.63690436px"
- sodipodi:role="line"
- id="tspan1525"
- x="509.67926"
- y="43.42762">HMI_LOCAL variables</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:22.87221527px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="750.28473"
- y="128.84476"
- id="text1557"
- inkscape:label="HMI:Display@.piff"><tspan
- sodipodi:role="line"
- id="tspan1555"
- x="750.28473"
- y="128.84476"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
- <g
- transform="matrix(0.14295135,0,0,0.14295135,589.21833,97.61518)"
- id="g1605"
- inkscape:label="HMI:Input@.piff"
- style="stroke-width:4">
- <text
- inkscape:label="value"
- id="text1561"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:4px"
- y="218.24219"
- x="136.32812"
- id="tspan1559"
- sodipodi:role="line">8888</tspan></text>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1563"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="+"dhu""
- id="g1571"
- style="stroke-width:4">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:transform-center-y="-14.956361"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- id="path1565"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="733.58197"
- y="111.05016"
- id="text1569"><tspan
- sodipodi:role="line"
- id="tspan1567"
- x="733.58197"
- y="111.05016"
- style="stroke-width:2px">dhu</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="plop""
- id="g1579"
- style="stroke-width:4">
- <path
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1573"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-184.98808"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.6154501e-05"
- inkscape:transform-center-x="14.956371" />
- <text
- id="text1577"
- y="111.05016"
- x="633.09552"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="633.09552"
- id="tspan1575"
- sodipodi:role="line">plop</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhoo""
- id="g1587"
- style="stroke-width:4">
- <path
- inkscape:transform-center-y="-5.9989963e-06"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-216.2599"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1581"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="rotate(-90,746.45698,-44.543641)"
- inkscape:transform-center-x="14.956364" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="537.25018"
- y="111.05016"
- id="text1585"><tspan
- sodipodi:role="line"
- id="tspan1583"
- x="537.25018"
- y="111.05016"
- style="stroke-width:2px">mhoo</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="yodl""
- id="g1595"
- style="stroke-width:4">
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1589"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="105.17262"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:transform-center-y="-5.5023185e-06"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-x="-14.956365" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="925.82605"
- y="111.05016"
- id="text1593"><tspan
- sodipodi:role="line"
- id="tspan1591"
- x="925.82605"
- y="111.05016"
- style="stroke-width:2px">yodl</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhe""
- id="g1603"
- style="stroke-width:4">
- <path
- inkscape:transform-center-y="-3.3040441e-05"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="136.44444"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1597"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- inkscape:transform-center-x="-14.956349" />
- <text
- id="text1601"
- y="111.05016"
- x="842.71497"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="842.71497"
- id="tspan1599"
- sodipodi:role="line">mhe</tspan></text>
- </g>
- </g>
- <text
- id="text1609"
- y="103.42763"
- x="509.67926"
- style="font-style:normal;font-weight:normal;font-size:12.7380867px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="actual_label"><tspan
- y="103.42763"
- x="509.67926"
- sodipodi:role="line"
- style="stroke-width:0.63690436px"
- id="tspan1611">PAGE_LOCAL variables</tspan></text>
- <g
- inkscape:label="HMI:Meter@level"
- transform="matrix(2.1611542,0,0,2.1611542,602.76714,428.92423)"
- id="g709">
- <path
- inkscape:label="range"
- sodipodi:open="true"
- d="M 63.610123,2.2017068 A 64.411957,64.411957 0 0 1 128.02208,-62.210247"
- sodipodi:end="4.712389"
- sodipodi:start="3.1415927"
- sodipodi:ry="64.411957"
- sodipodi:rx="64.411957"
- sodipodi:cy="2.2017097"
- sodipodi:cx="128.02208"
- sodipodi:type="arc"
- id="path689"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ff7f2a;stroke-width:26.45833397;stroke-miterlimit:4;stroke-dasharray:2.64583333, 2.64583333;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:label="needle"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path691"
- d="M 130.96206,4.0725977 79.111776,-41.363223"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ff3000;stroke-width:2.96333337;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0, 32.59666667;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-end:url(#marker1971)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="49.132977"
- y="4.9187088"
- id="text695"
- inkscape:label="min"><tspan
- sodipodi:role="line"
- id="tspan693"
- x="49.132977"
- y="4.9187088"
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
- <text
- id="text699"
- y="-78.144218"
- x="127.48073"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="max"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="-78.144218"
- x="127.48073"
- id="tspan697"
- sodipodi:role="line">10000</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="113.53007"
- y="-6.1937833"
- id="text703"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- x="113.53007"
- y="-6.1937833"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- id="tspan701">000</tspan></text>
- <text
- inkscape:label="unit"
- id="text707"
- y="1.1408259"
- x="124.77896"
- style="font-style:normal;font-weight:normal;font-size:7.5467205px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- id="tspan705"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="1.1408259"
- x="124.77896"
- sodipodi:role="line">bar</tspan></text>
- </g>
- <g
- id="g84-3"
- inkscape:label="HMI:Input@level"
- transform="matrix(0.35865594,0,0,0.35865594,458.57767,253.49106)">
- <text
- inkscape:label="value"
- id="text5151-6"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="218.24219"
- x="136.32812"
- id="tspan5149-7"
- sodipodi:role="line">8888</tspan></text>
- <path
- transform="scale(1,-1)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path89-5"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="14.956363"
- inkscape:label="-100" />
- <path
- inkscape:label="-10"
- inkscape:transform-center-y="7.4781812"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path88-3"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="scale(1,-1)" />
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect85-5"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <path
- inkscape:label="+100"
- inkscape:transform-center-y="-14.956361"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path87-6"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path86-2"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-7.4781804"
- inkscape:label="+10" />
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path91-9"
- sodipodi:sides="4"
- sodipodi:cx="80.740723"
- sodipodi:cy="165.17262"
- sodipodi:r1="57.015106"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.77793027"
- sodipodi:arg2="1.5633284"
- inkscape:flatsided="true"
- inkscape:rounded="-0.65084865"
- inkscape:randomized="0"
- d="M 121.35644,205.1862 C 158.18649,167.80191 3.342862,168.95829 40.72715,205.78834 78.111437,242.61839 76.95506,87.774762 40.125008,125.15905 3.2949549,162.54334 158.13858,161.38696 120.7543,124.55691 83.370008,87.726855 84.526385,242.57048 121.35644,205.1862 Z"
- inkscape:transform-center-y="-14.956361"
- inkscape:label="=0" />
- </g>
- <text
- inkscape:label="HMI:Display@paff"
- id="text1457-1"
- y="215.65211"
- x="2632.9148"
- style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
- y="215.65211"
- x="2632.9148"
- id="tspan1455-2"
- sodipodi:role="line">8888</tspan></text>
- <g
- style="stroke-width:2"
- inkscape:label="HMI:Input@paff"
- id="g1505-7"
- transform="matrix(0.28590269,0,0,0.28590269,2430.782,153.19299)">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text1461-0"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1459-9"
- x="136.32812"
- y="218.24219"
- style="stroke-width:2px">8888</tspan></text>
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect1463-3"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- style="stroke-width:2"
- id="g1471-6"
- inkscape:label="+"dhu""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:connector-curvature="0"
- id="path1465-0"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1469-6"
- y="111.05016"
- x="733.58197"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="733.58197"
- id="tspan1467-2"
- sodipodi:role="line">dhu</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1479-6"
- inkscape:label="="plop""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956371"
- inkscape:transform-center-y="-3.6154501e-05"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1473-1"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="633.09552"
- y="111.05016"
- id="text1477-8"><tspan
- sodipodi:role="line"
- id="tspan1475-7"
- x="633.09552"
- y="111.05016"
- style="stroke-width:1px">plop</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1487-9"
- inkscape:label="="mhoo""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956364"
- transform="rotate(-90,746.45698,-44.543641)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1481-2"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="-5.9989963e-06" />
- <text
- id="text1485-0"
- y="111.05016"
- x="537.25018"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="537.25018"
- id="tspan1483-2"
- sodipodi:role="line">mhoo</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1495-3"
- inkscape:label="="yodl""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956365"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-y="-5.5023185e-06"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1489-7"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <text
- id="text1493-5"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="925.82605"
- id="tspan1491-9"
- sodipodi:role="line">yodl</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1503-2"
- inkscape:label="="mhe""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956349"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1497-2"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.3040441e-05" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="842.71497"
- y="111.05016"
- id="text1501-8"><tspan
- sodipodi:role="line"
- id="tspan1499-9"
- x="842.71497"
- y="111.05016"
- style="stroke-width:1px">mhe</tspan></text>
- </g>
- </g>
- <text
- inkscape:label="actual_label"
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="2471.7039"
- y="164.81787"
- id="text1527-7"><tspan
- style="stroke-width:0.63690436px"
- sodipodi:role="line"
- id="tspan1525-3"
- x="2471.7039"
- y="164.81787">HMI_LOCAL variables</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="2632.9148"
- y="335.65213"
- id="text1557-6"
- inkscape:label="HMI:Display@.piff"><tspan
- sodipodi:role="line"
- id="tspan1555-1"
- x="2632.9148"
- y="335.65213"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
- <g
- transform="matrix(0.28590269,0,0,0.28590269,2430.782,273.19298)"
- id="g1605-2"
- inkscape:label="HMI:Input@.piff"
- style="stroke-width:2">
- <text
- inkscape:label="value"
- id="text1561-9"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="218.24219"
- x="136.32812"
- id="tspan1559-3"
- sodipodi:role="line">8888</tspan></text>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1563-1"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="+"dhu""
- id="g1571-9"
- style="stroke-width:2">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:transform-center-y="-14.956361"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- id="path1565-4"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="733.58197"
- y="111.05016"
- id="text1569-7"><tspan
- sodipodi:role="line"
- id="tspan1567-8"
- x="733.58197"
- y="111.05016"
- style="stroke-width:1px">dhu</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="plop""
- id="g1579-4"
- style="stroke-width:2">
- <path
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1573-5"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-184.98808"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.6154501e-05"
- inkscape:transform-center-x="14.956371" />
- <text
- id="text1577-0"
- y="111.05016"
- x="633.09552"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="633.09552"
- id="tspan1575-3"
- sodipodi:role="line">plop</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhoo""
- id="g1587-6"
- style="stroke-width:2">
- <path
- inkscape:transform-center-y="-5.9989963e-06"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-216.2599"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1581-1"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="rotate(-90,746.45698,-44.543641)"
- inkscape:transform-center-x="14.956364" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="537.25018"
- y="111.05016"
- id="text1585-0"><tspan
- sodipodi:role="line"
- id="tspan1583-6"
- x="537.25018"
- y="111.05016"
- style="stroke-width:1px">mhoo</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="yodl""
- id="g1595-3"
- style="stroke-width:2">
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1589-2"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="105.17262"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:transform-center-y="-5.5023185e-06"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-x="-14.956365" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="925.82605"
- y="111.05016"
- id="text1593-0"><tspan
- sodipodi:role="line"
- id="tspan1591-6"
- x="925.82605"
- y="111.05016"
- style="stroke-width:1px">yodl</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhe""
- id="g1603-1"
- style="stroke-width:2">
- <path
- inkscape:transform-center-y="-3.3040441e-05"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="136.44444"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1597-5"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- inkscape:transform-center-x="-14.956349" />
- <text
- id="text1601-5"
- y="111.05016"
- x="842.71497"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="842.71497"
- id="tspan1599-4"
- sodipodi:role="line">mhe</tspan></text>
- </g>
- </g>
- <text
- id="text1609-7"
- y="284.81787"
- x="2471.7039"
- style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="actual_label"><tspan
- y="284.81787"
- x="2471.7039"
- sodipodi:role="line"
- style="stroke-width:0.63690436px"
- id="tspan1611-6">PAGE_LOCAL variables</tspan></text>
- <text
- inkscape:label="HMI:Display@paff"
- id="text1457-5"
- y="1208.4301"
- x="276.83508"
- style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
- y="1208.4301"
- x="276.83508"
- id="tspan1455-6"
- sodipodi:role="line">8888</tspan></text>
- <g
- style="stroke-width:2"
- inkscape:label="HMI:Input@paff"
- id="g1505-9"
- transform="matrix(0.28590269,0,0,0.28590269,74.702238,1145.9709)">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text1461-3"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1459-7"
- x="136.32812"
- y="218.24219"
- style="stroke-width:2px">8888</tspan></text>
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect1463-4"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- style="stroke-width:2"
- id="g1471-5"
- inkscape:label="+"dhu""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:connector-curvature="0"
- id="path1465-2"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1469-5"
- y="111.05016"
- x="733.58197"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="733.58197"
- id="tspan1467-4"
- sodipodi:role="line">dhu</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1479-7"
- inkscape:label="="plop""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956371"
- inkscape:transform-center-y="-3.6154501e-05"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1473-4"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="633.09552"
- y="111.05016"
- id="text1477-4"><tspan
- sodipodi:role="line"
- id="tspan1475-3"
- x="633.09552"
- y="111.05016"
- style="stroke-width:1px">plop</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1487-0"
- inkscape:label="="mhoo""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956364"
- transform="rotate(-90,746.45698,-44.543641)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1481-7"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="-5.9989963e-06" />
- <text
- id="text1485-8"
- y="111.05016"
- x="537.25018"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="537.25018"
- id="tspan1483-6"
- sodipodi:role="line">mhoo</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1495-8"
- inkscape:label="="yodl""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956365"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-y="-5.5023185e-06"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1489-8"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <text
- id="text1493-4"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="925.82605"
- id="tspan1491-3"
- sodipodi:role="line">yodl</tspan></text>
- </g>
- <g
- style="stroke-width:2"
- id="g1503-1"
- inkscape:label="="mhe""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956349"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1497-4"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.3040441e-05" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="842.71497"
- y="111.05016"
- id="text1501-9"><tspan
- sodipodi:role="line"
- id="tspan1499-2"
- x="842.71497"
- y="111.05016"
- style="stroke-width:1px">mhe</tspan></text>
- </g>
- </g>
- <text
- inkscape:label="actual_label"
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="115.62414"
- y="1157.5958"
- id="text1527-0"><tspan
- style="stroke-width:0.63690436px"
- sodipodi:role="line"
- id="tspan1525-6"
- x="115.62414"
- y="1157.5958">HMI_LOCAL variables</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="276.83508"
- y="1328.4301"
- id="text1557-8"
- inkscape:label="HMI:Display@.piff"><tspan
- sodipodi:role="line"
- id="tspan1555-9"
- x="276.83508"
- y="1328.4301"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
- <g
- transform="matrix(0.28590269,0,0,0.28590269,74.702238,1265.9709)"
- id="g1605-26"
- inkscape:label="HMI:Input@.piff"
- style="stroke-width:2">
- <text
- inkscape:label="value"
- id="text1561-6"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="218.24219"
- x="136.32812"
- id="tspan1559-4"
- sodipodi:role="line">8888</tspan></text>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1563-9"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="+"dhu""
- id="g1571-5"
- style="stroke-width:2">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:transform-center-y="-14.956361"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- id="path1565-0"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="733.58197"
- y="111.05016"
- id="text1569-4"><tspan
- sodipodi:role="line"
- id="tspan1567-87"
- x="733.58197"
- y="111.05016"
- style="stroke-width:1px">dhu</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="plop""
- id="g1579-1"
- style="stroke-width:2">
- <path
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1573-7"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-184.98808"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.6154501e-05"
- inkscape:transform-center-x="14.956371" />
- <text
- id="text1577-2"
- y="111.05016"
- x="633.09552"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="633.09552"
- id="tspan1575-7"
- sodipodi:role="line">plop</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhoo""
- id="g1587-2"
- style="stroke-width:2">
- <path
- inkscape:transform-center-y="-5.9989963e-06"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-216.2599"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1581-2"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="rotate(-90,746.45698,-44.543641)"
- inkscape:transform-center-x="14.956364" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="537.25018"
- y="111.05016"
- id="text1585-6"><tspan
- sodipodi:role="line"
- id="tspan1583-1"
- x="537.25018"
- y="111.05016"
- style="stroke-width:1px">mhoo</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="yodl""
- id="g1595-0"
- style="stroke-width:2">
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path1589-6"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="105.17262"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:transform-center-y="-5.5023185e-06"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-x="-14.956365" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="925.82605"
- y="111.05016"
- id="text1593-1"><tspan
- sodipodi:role="line"
- id="tspan1591-5"
- x="925.82605"
- y="111.05016"
- style="stroke-width:1px">yodl</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhe""
- id="g1603-9"
- style="stroke-width:2">
- <path
- inkscape:transform-center-y="-3.3040441e-05"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="136.44444"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path1597-4"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- inkscape:transform-center-x="-14.956349" />
- <text
- id="text1601-9"
- y="111.05016"
- x="842.71497"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:1px"
- y="111.05016"
- x="842.71497"
- id="tspan1599-0"
- sodipodi:role="line">mhe</tspan></text>
- </g>
- </g>
- <text
- id="text1609-9"
- y="1277.5958"
- x="115.62414"
- style="font-style:normal;font-weight:normal;font-size:25.4761734px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#008000;fill-opacity:1;stroke:none;stroke-width:0.63690436px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="actual_label"><tspan
- y="1277.5958"
- x="115.62414"
- sodipodi:role="line"
- style="stroke-width:0.63690436px"
- id="tspan1611-1">PAGE_LOCAL variables</tspan></text>
- <g
- id="g2387"
- inkscape:label="HMI:VarInit:42@level" />
- <g
- inkscape:label="HMI:VarInit:"a string"@paff"
- id="g2389" />
- <g
- id="g825"
- inkscape:label="HMI:VarInit:"a page string"@.piff" />
- <g
- inkscape:label="HMI:VarInit:50@.position"
- id="g906" />
- <g
- id="g908"
- inkscape:label="HMI:VarInit:100@.range" />
- <g
- inkscape:label="HMI:VarInit:7@.visibleAlarms"
- id="g906-3" />
- <use
- x="0"
- y="0"
- xlink:href="#g7994"
- id="use8000"
- transform="translate(-1380,800)"
- width="100%"
- height="100%"
- inkscape:label="HMI:Page:AlarmPage" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="-738.18359"
- y="86.260696"
- id="text2019"><tspan
- sodipodi:role="line"
- id="tspan2017"
- x="-738.18359"
- y="86.260696"
- style="fill:#ffffff;stroke-width:1px">Alarm Page</tspan></text>
- <g
- id="g1289"
- inkscape:label="HMI:JsonTable:/alarms@/ALARMNOTIFY@.range@.position@.visibleAlarms@.filter"
- transform="matrix(0.5,0,0,0.5,-1757.3465,454.4367)">
- <g
- id="g5231"
- inkscape:label="data">
- <g
- id="g1384"
- inkscape:label="[0]"
- transform="translate(52.326002,240.30067)">
- <g
- id="g901"
- inkscape:label="# commented group"
- transform="translate(419.716,-441.73566)">
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="m 528.62458,486.07049 23.69122,21.00809"
- id="path903"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
- <use
- x="0"
- y="0"
- xlink:href="#use1297"
- inkscape:transform-center-x="0.11123312"
- inkscape:transform-center-y="2.2824109"
- id="use1378"
- width="100%"
- height="100%"
- transform="matrix(0.7609336,0,0,0.7609336,199.15217,164.3798)"
- inkscape:label=".status onClick[acknowledge]=.alarmid" />
- <use
- transform="matrix(1.3019536,0,0,1.3019536,39.582906,238.73392)"
- x="0"
- y="0"
- xlink:href="#use913"
- id="use966"
- width="100%"
- height="100%"
- inkscape:label=".status textContent=.time"
- style="stroke-width:1.53615308" />
- <use
- inkscape:label=".status textContent=.text"
- height="100%"
- width="100%"
- id="use1832"
- xlink:href="#use913"
- y="0"
- x="0"
- transform="matrix(2,0,0,2,85.95394,349.02524)" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M 972.0318,65.34292 H 2780.6604"
- id="path2238"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- inkscape:label="# separation line" />
- </g>
- <use
- inkscape:label="[1]"
- transform="translate(0,-62.914773)"
- height="100%"
- width="100%"
- id="use5200"
- xlink:href="#g1384"
- y="0"
- x="0" />
- <use
- inkscape:label="[2]"
- x="0"
- y="0"
- xlink:href="#g1384"
- id="use5202"
- width="100%"
- height="100%"
- transform="translate(0,-125.82955)" />
- <use
- inkscape:label="[3]"
- transform="translate(0,-188.74432)"
- height="100%"
- width="100%"
- id="use5204"
- xlink:href="#g1384"
- y="0"
- x="0" />
- <use
- x="0"
- y="0"
- xlink:href="#g1384"
- id="use2176"
- width="100%"
- height="100%"
- transform="translate(0,-251.65909)"
- inkscape:label="[4]" />
- <use
- inkscape:label="[5]"
- transform="translate(0,-314.57387)"
- height="100%"
- width="100%"
- id="use2178"
- xlink:href="#g1384"
- y="0"
- x="0" />
- <use
- x="0"
- y="0"
- xlink:href="#g1384"
- id="use2180"
- width="100%"
- height="100%"
- transform="translate(0,-377.48864)"
- inkscape:label="[6]" />
- </g>
- </g>
- <g
- id="g1332"
- inkscape:label="polygons"
- transform="translate(-1556.6506,114.93627)">
- <path
- inkscape:transform-center-y="2.9995242"
- inkscape:transform-center-x="0.14620371"
- d="m 1081.9632,-246.81598 -27.9274,5.51725 -27.9273,5.51724 9.1856,-26.94439 9.1856,-26.94439 18.7417,21.42715 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="1.3757507"
- sodipodi:arg1="0.32855317"
- sodipodi:r2="16.43548"
- sodipodi:r1="32.87096"
- sodipodi:cy="-257.42258"
- sodipodi:cx="1050.8505"
- sodipodi:sides="3"
- id="path1298"
- style="fill:#8fbc8f;fill-opacity:1;stroke:#ff0000"
- sodipodi:type="star"
- inkscape:label="three" />
- <path
- sodipodi:type="star"
- style="fill:#ff8c00;fill-opacity:1;stroke:#ff0000"
- id="path1308"
- sodipodi:sides="4"
- sodipodi:cx="1110.8505"
- sodipodi:cy="-257.42258"
- sodipodi:r1="32.87096"
- sodipodi:r2="16.43548"
- sodipodi:arg1="0.32855317"
- sodipodi:arg2="1.1139513"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 1141.9632,-246.81598 -23.8627,4.1434 -17.8566,16.3627 -4.1434,-23.8627 -16.3627,-17.8566 23.8627,-4.1434 17.8566,-16.3627 4.1434,23.8627 z"
- inkscape:transform-center-x="0.14620371"
- inkscape:transform-center-y="2.9995242"
- inkscape:label="four" />
- <path
- inkscape:transform-center-y="2.9995242"
- inkscape:transform-center-x="0.14620371"
- d="m 1201.9632,-246.81598 -21.6446,2.82766 -9.9413,19.4333 -9.3778,-19.7114 -21.5541,-3.44949 15.8487,-15.00997 -3.3799,-21.5652 19.1728,10.43473 19.4653,-9.87854 -3.9993,21.45898 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="0.9568717"
- sodipodi:arg1="0.32855317"
- sodipodi:r2="16.43548"
- sodipodi:r1="32.87096"
- sodipodi:cy="-257.42258"
- sodipodi:cx="1170.8505"
- sodipodi:sides="5"
- id="path1310"
- style="fill:#bc8f8f;fill-opacity:1;stroke:#ff0000"
- sodipodi:type="star"
- inkscape:label="five" />
- <path
- sodipodi:type="star"
- style="fill:#f0f8ff;fill-opacity:1;stroke:#ff0000"
- id="path1312"
- sodipodi:sides="6"
- sodipodi:cx="1230.8505"
- sodipodi:cy="-257.42258"
- sodipodi:r1="32.87096"
- sodipodi:r2="16.43548"
- sodipodi:arg1="0.32855317"
- sodipodi:arg2="0.85215195"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 1261.9632,-246.81598 -20.2922,1.76437 -4.4498,19.87672 -11.674,-16.69134 -19.4387,6.08474 8.6181,-18.45571 -14.9888,-13.79198 20.2921,-1.76436 4.4498,-19.87673 11.6741,16.69134 19.4386,-6.08473 -8.6181,18.4557 z"
- inkscape:transform-center-x="0.14620371"
- inkscape:transform-center-y="2.9995242"
- inkscape:label="six" />
- </g>
- <g
- inkscape:label="HMI:List"
- id="g1311"
- transform="translate(-1396.6506,94.93627)">
- <use
- x="0"
- y="0"
- xlink:href="#path1298"
- inkscape:transform-center-x="0.14620371"
- inkscape:transform-center-y="2.9995242"
- id="use1293"
- width="100%"
- height="100%"
- transform="translate(-69.76703,100)"
- style="display:inline"
- inkscape:label="ack" />
- <use
- x="0"
- y="0"
- xlink:href="#path1308"
- inkscape:transform-center-x="0.14620371"
- inkscape:transform-center-y="2.9995242"
- id="use1295"
- width="100%"
- height="100%"
- transform="translate(-126.48474,100)"
- inkscape:label="alarm" />
- <use
- x="0"
- y="0"
- xlink:href="#path1310"
- inkscape:transform-center-x="0.14620371"
- inkscape:transform-center-y="2.9995242"
- id="use1297"
- width="100%"
- height="100%"
- transform="translate(-186.33351,100)"
- inkscape:label="active" />
- <use
- x="0"
- y="0"
- xlink:href="#path1312"
- inkscape:transform-center-x="0.14620371"
- inkscape:transform-center-y="2.9995242"
- id="use1299"
- width="100%"
- height="100%"
- transform="translate(-246.4848,100)"
- inkscape:label="disabled" />
- </g>
- <g
- transform="matrix(0.33436432,0,0,0.33436432,-584.21063,278.8185)"
- inkscape:label="HMI:Input@/ALARMNOTIFY"
- id="g5222"
- style="stroke-width:0.75594342">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text5208"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan5206"
- x="136.32812"
- y="218.24219"
- style="stroke-width:0.75594342px">8888</tspan></text>
- <path
- transform="scale(1,-1)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path5212"
- sodipodi:sides="3"
- sodipodi:cx="608.70374"
- sodipodi:cy="-209.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 660.51409,-179.34718 -103.62071,0 51.81036,-89.73817 z"
- inkscape:transform-center-y="14.956362"
- inkscape:label="-1" />
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect5214"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:label="+1"
- inkscape:transform-center-y="-14.95636"
- d="m 660.51409,142.08535 -103.62071,0 51.81036,-89.738163 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="112.17263"
- sodipodi:cx="608.70374"
- sodipodi:sides="3"
- id="path5218"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- </g>
- <g
- id="g1766"
- inkscape:label="HMI:Slider@.position@.range@.alarmVisible">
- <g
- transform="matrix(0.620824,0,0,0.5,-963.61047,260.72872)"
- id="g1752"
- inkscape:label="HMI:Input@.position">
- <path
- inkscape:label="+1"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.55573034px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m 1175.2115,143.25263 34.1278,56.73732 h -68.2556 z"
- id="path1266"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
- <path
- inkscape:label="-1"
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path1268"
- d="m 1175.2115,851.99803 34.1278,-54.90445 h -68.2556 z"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.51411843px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- </g>
- <path
- style="opacity:0;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.00058591px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- d="M -234.01102,648.56465 V 371.89445"
- id="path1772"
- inkscape:connector-curvature="0"
- inkscape:label="range" />
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0.30952382;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.03627348px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1264-3"
- width="42.374725"
- height="276.64423"
- x="-255.19838"
- y="371.91068"
- rx="7.6034913"
- ry="6.8822322"
- inkscape:label="background" />
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff6600;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.11429262px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect1264"
- width="42.374725"
- height="82.841492"
- x="-255.19838"
- y="565.71338"
- rx="7.6034913"
- ry="7"
- inkscape:label="handle" />
- </g>
- <g
- id="g893"
- inkscape:label="textstyles"
- transform="translate(-1566.6506,56.936266)">
- <text
- inkscape:label="red"
- id="text1382-7"
- y="-171.54395"
- x="1298.9102"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- y="-171.54395"
- x="1298.9102"
- id="tspan1380-5"
- sodipodi:role="line"
- style="stroke-width:0.5">value</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="1298.9102"
- y="-191.54395"
- id="text875"
- inkscape:label="black"><tspan
- style="fill:#000000;stroke-width:0.5"
- sodipodi:role="line"
- id="tspan873"
- x="1298.9102"
- y="-191.54395">value</tspan></text>
- <text
- inkscape:label="green"
- id="text879"
- y="-211.54395"
- x="1298.9102"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#00ff00;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- y="-211.54395"
- x="1298.9102"
- id="tspan877"
- sodipodi:role="line"
- style="fill:#00ff00;stroke-width:0.5">value</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="1298.9102"
- y="-231.54395"
- id="text883"
- inkscape:label="gray"><tspan
- style="fill:#999999;stroke-width:0.5"
- sodipodi:role="line"
- id="tspan881"
- x="1298.9102"
- y="-231.54395">value</tspan></text>
- </g>
- <g
- id="g907"
- inkscape:label="HMI:TextStyleList"
- transform="translate(-990.65059,102.93627)">
- <use
- x="0"
- y="0"
- xlink:href="#text879"
- id="use913"
- width="100%"
- height="100%"
- transform="translate(-573,60.999998)"
- inkscape:label="active" />
- <use
- x="0"
- y="0"
- xlink:href="#text875"
- id="use911"
- width="100%"
- height="100%"
- transform="translate(-573,40.999998)"
- inkscape:label="ack" />
- <use
- x="0"
- y="0"
- xlink:href="#text1382-7"
- id="use909"
- width="100%"
- height="100%"
- transform="translate(-573,20.999998)"
- inkscape:label="alarm" />
- <use
- x="0"
- y="0"
- xlink:href="#text883"
- id="use915"
- width="100%"
- height="100%"
- transform="translate(-573,80.999998)"
- inkscape:label="disabled" />
- </g>
- <g
- transform="matrix(0.33436432,0,0,0.33436432,-1048.7703,278.8185)"
- inkscape:label="HMI:Input@.range"
- id="g5222-3"
- style="stroke-width:0.75594342">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text5208-6"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan5206-7"
- x="136.32812"
- y="218.24219"
- style="stroke-width:0.75594342px">8888</tspan></text>
- <path
- transform="scale(1,-1)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path5212-5"
- sodipodi:sides="3"
- sodipodi:cx="620.66675"
- sodipodi:cy="-209.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 672.4771,-179.34718 -103.62071,0 51.81036,-89.73817 z"
- inkscape:transform-center-y="14.956362"
- inkscape:label="-1" />
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect5214-3"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:label="+1"
- inkscape:transform-center-y="-14.95636"
- d="m 672.4771,142.08535 -103.62071,0 51.81036,-89.738163 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="112.17263"
- sodipodi:cx="620.66675"
- sodipodi:sides="3"
- id="path5218-5"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- </g>
- <g
- transform="matrix(0.33436432,0,0,0.33436432,-816.49047,278.8185)"
- inkscape:label="HMI:Input@.position"
- id="g5222-6"
- style="stroke-width:0.75594342">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text5208-2"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan5206-9"
- x="136.32812"
- y="218.24219"
- style="stroke-width:0.75594342px">8888</tspan></text>
- <path
- transform="scale(1,-1)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path5212-1"
- sodipodi:sides="3"
- sodipodi:cx="608.70374"
- sodipodi:cy="-209.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 660.51409,-179.34718 -103.62071,0 51.81036,-89.73817 z"
- inkscape:transform-center-y="14.956362"
- inkscape:label="-1" />
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect5214-2"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:label="+1"
- inkscape:transform-center-y="-14.95636"
- d="m 660.51409,142.08535 -103.62071,0 51.81036,-89.738163 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="112.17263"
- sodipodi:cx="608.70374"
- sodipodi:sides="3"
- id="path5218-7"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="-935.5838"
- y="291.8042"
- id="text887"><tspan
- sodipodi:role="line"
- id="tspan885"
- x="-935.5838"
- y="291.8042"
- style="fill:#ffffff;stroke-width:1px">range</tspan></text>
- <text
- id="text891"
- y="291.8042"
- x="-702.87115"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- style="fill:#ffffff;stroke-width:1px"
- y="291.8042"
- x="-702.87115"
- id="tspan889"
- sodipodi:role="line">position</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="-471.33417"
- y="291.8042"
- id="text895"><tspan
- sodipodi:role="line"
- id="tspan893"
- x="-471.33417"
- y="291.8042"
- style="fill:#ffffff;stroke-width:1px">notify</tspan></text>
- <g
- style="stroke-width:2"
- inkscape:label="HMI:Input@/ALARMTEXT"
- id="g1442-3"
- transform="matrix(0.5,0,0,0.5,-915.0529,113.05833)">
- <rect
- inkscape:label="edit"
- onclick=""
- y="77.265099"
- x="-648.04266"
- height="179.83517"
- width="1195.5988"
- id="rect1400-5"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#cacaca;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- ry="36.786537" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#0e0e0e;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="545.95312"
- y="218.24219"
- id="text1398-6"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1396-7"
- x="545.95312"
- y="218.24219"
- style="text-align:end;text-anchor:end;fill:#0e0e0e;fill-opacity:1;stroke-width:2px">8888</tspan></text>
- </g>
- <g
- style="stroke-width:1.04184687"
- inkscape:label="HMI:Input@/SENDALARM"
- id="g953"
- transform="translate(-1386.3329,-450.57041)">
- <g
- id="g1839"
- inkscape:label="+1">
- <g
- id="g945"
- inkscape:label="bg"
- style="stroke-width:1.04184687">
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5.20923424;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect943"
- width="245.44583"
- height="95.723877"
- x="971.96545"
- y="594.82263"
- ry="23.177595"
- inkscape:label="button"
- rx="26.820074" />
- </g>
- <g
- id="g951"
- inkscape:label="text"
- style="stroke-width:1.04184687">
- <text
- inkscape:label="setting_jmp"
- id="text949"
- y="656.98151"
- x="1090.7626"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.04184675px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04184675px"
- y="656.98151"
- x="1090.7626"
- id="tspan947"
- sodipodi:role="line">trigger</tspan></text>
- </g>
- </g>
- </g>
- <g
- style="stroke-width:2"
- inkscape:label="HMI:Input@/ALARMSTATUS"
- id="g1887"
- transform="matrix(0.28590269,0,0,0.28590269,-631.94615,129.07897)">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:148.39013672px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.99999988px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="329.13501"
- y="214.01605"
- id="text1843"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan1841"
- x="329.13501"
- y="214.01605"
- style="text-align:center;text-anchor:middle;stroke-width:1.99999988px">8888</tspan></text>
- <g
- style="stroke-width:1.09375393"
- id="g1853"
- inkscape:label="="ack""
- transform="matrix(1.8285648,0,0,1.8285648,-936.17681,115.40643)">
- <path
- inkscape:connector-curvature="0"
- id="path1847"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1851"
- y="112.62867"
- x="738.57678"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.54687697px"
- y="112.62867"
- x="738.57678"
- id="tspan1849"
- sodipodi:role="line">ack</tspan></text>
- </g>
- <g
- style="stroke-width:1.09375393"
- id="g1861"
- inkscape:label="="disabled""
- transform="matrix(1.8285648,0,0,1.8285648,-1012.4359,109.57379)">
- <path
- inkscape:connector-curvature="0"
- id="path1847-7"
- d="m 738.52607,148.37593 -80.6293,0.60214 -0.6021,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="656.177"
- y="115.81841"
- id="text1859"><tspan
- sodipodi:role="line"
- id="tspan1857"
- x="656.177"
- y="115.81841"
- style="stroke-width:0.54687697px">disabled</tspan></text>
- </g>
- <g
- style="stroke-width:1.09375393"
- id="g1869"
- inkscape:label="="active""
- transform="matrix(1.8285648,0,0,1.8285648,-998.18055,84.666267)">
- <path
- inkscape:connector-curvature="0"
- id="path1847-5"
- d="m 630.35651,161.99728 -80.6293,0.60214 -0.6021,-80.629287 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1867"
- y="129.43976"
- x="559.26227"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.54687697px"
- y="129.43976"
- x="559.26227"
- id="tspan1865"
- sodipodi:role="line">active</tspan></text>
- </g>
- <g
- style="stroke-width:1.09375393"
- id="g1877"
- inkscape:label="="alarm""
- transform="matrix(1.8285648,0,0,1.8285648,-1114.212,118.29284)">
- <path
- inkscape:connector-curvature="0"
- id="path1847-3"
- d="m 994.91832,143.60768 -80.62931,0.60214 -0.6021,-80.629285 80.62931,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.46877003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text1875"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.54687697px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.54687697px"
- y="111.05016"
- x="925.82605"
- id="tspan1873"
- sodipodi:role="line">alarm</tspan></text>
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- x="-926.47461"
- y="134.36742"
- id="text2019-9"><tspan
- sodipodi:role="line"
- id="tspan2017-2"
- x="-926.47461"
- y="134.36742"
- style="fill:#ffffff;stroke-width:1px">Alarm Text</tspan></text>
- <text
- id="text2174"
- y="134.36742"
- x="-546.47461"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- style="fill:#ffffff;stroke-width:1px"
- y="134.36742"
- x="-546.47461"
- id="tspan2172"
- sodipodi:role="line">Status</tspan></text>
- <g
- transform="matrix(0.57180538,0,0,0.57180538,326.35945,-231.48695)"
- inkscape:label="HMI:Jump:AlarmPage"
- id="g2198">
- <g
- inkscape:label="button"
- id="g2190">
- <rect
- inkscape:label="button"
- ry="35.579063"
- y="594.82263"
- x="971.96545"
- height="95.723877"
- width="245.44583"
- id="rect2188"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- rx="35.579063" />
- </g>
- <g
- inkscape:label="text"
- id="g2196">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="656.98151"
- id="text2194"
- inkscape:label="setting_jmp"><tspan
- sodipodi:role="line"
- id="tspan2192"
- x="1090.7626"
- y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Alarms</tspan></text>
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:45.74443054px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.28590268px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="628.18188"
- y="242.50345"
- id="text889"
- inkscape:label="HMI:Display@/PUMP0/FLOATING"><tspan
- sodipodi:role="line"
- id="tspan887"
- x="628.18188"
- y="242.50345"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
- <g
- style="stroke-width:0.75594342"
- id="g900"
- inkscape:label="HMI:Input@.filter"
- transform="matrix(0.33436432,0,0,0.33436432,-1288.7703,278.8185)">
- <text
- inkscape:label="value"
- id="text892"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75594342px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:0.75594342px"
- y="218.24219"
- x="136.32812"
- id="tspan890"
- sodipodi:role="line">8888</tspan></text>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.77971721;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect896"
- width="615.05096"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- </g>
- <text
- id="text904"
- y="291.8042"
- x="-1175.5837"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.45700645px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;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"
- xml:space="preserve"><tspan
- style="fill:#ffffff;stroke-width:1px"
- y="291.8042"
- x="-1175.5837"
- id="tspan902"
- sodipodi:role="line">filter</tspan></text>
- <g
- id="g909"
- inkscape:label="HMI:VarInit:""@.filter" />
- <g
- transform="matrix(0.14295135,0,0,0.14295135,449.21833,37.615184)"
- id="g4646"
- inkscape:label="HMI:Input@paff"
- style="stroke-width:4">
- <text
- inkscape:label="value"
- id="text4602"
- y="218.24219"
- x="136.32812"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:4px"
- y="218.24219"
- x="136.32812"
- id="tspan4600"
- sodipodi:role="line">8888</tspan></text>
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect4604"
- width="407.7037"
- height="128"
- x="139.85185"
- y="95.40741"
- onclick=""
- inkscape:label="edit" />
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="+"dhu""
- id="g4612"
- style="stroke-width:4">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- inkscape:transform-center-y="-14.956361"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- id="path4606"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="733.58197"
- y="111.05016"
- id="text4610"><tspan
- sodipodi:role="line"
- id="tspan4608"
- x="733.58197"
- y="111.05016"
- style="stroke-width:2px">dhu</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="plop""
- id="g4620"
- style="stroke-width:4">
- <path
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path4614"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-184.98808"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.6154501e-05"
- inkscape:transform-center-x="14.956371" />
- <text
- id="text4618"
- y="111.05016"
- x="633.09552"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="633.09552"
- id="tspan4616"
- sodipodi:role="line">plop</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhoo""
- id="g4628"
- style="stroke-width:4">
- <path
- inkscape:transform-center-y="-5.9989963e-06"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="-216.2599"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path4622"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="rotate(-90,746.45698,-44.543641)"
- inkscape:transform-center-x="14.956364" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="537.25018"
- y="111.05016"
- id="text4626"><tspan
- sodipodi:role="line"
- id="tspan4624"
- x="537.25018"
- y="111.05016"
- style="stroke-width:2px">mhoo</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="yodl""
- id="g4636"
- style="stroke-width:4">
- <path
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path4630"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="105.17262"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:transform-center-y="-5.5023185e-06"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-x="-14.956365" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="925.82605"
- y="111.05016"
- id="text4634"><tspan
- sodipodi:role="line"
- id="tspan4632"
- x="925.82605"
- y="111.05016"
- style="stroke-width:2px">yodl</tspan></text>
- </g>
- <g
- transform="translate(-416.52022,170.47452)"
- inkscape:label="="mhe""
- id="g4644"
- style="stroke-width:4">
- <path
- inkscape:transform-center-y="-3.3040441e-05"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="136.44444"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path4638"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- inkscape:transform-center-x="-14.956349" />
- <text
- id="text4642"
- y="111.05016"
- x="842.71497"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="842.71497"
- id="tspan4640"
- sodipodi:role="line">mhe</tspan></text>
- </g>
- </g>
- <g
- style="stroke-width:4"
- inkscape:label="HMI:Input@.piff"
- id="g4694"
- transform="matrix(0.14295135,0,0,0.14295135,449.21833,97.61518)">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:160px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="136.32812"
- y="218.24219"
- id="text4650"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan4648"
- x="136.32812"
- y="218.24219"
- style="stroke-width:4px">8888</tspan></text>
- <rect
- inkscape:label="edit"
- onclick=""
- y="95.40741"
- x="139.85185"
- height="128"
- width="407.7037"
- id="rect4652"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:0;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <g
- style="stroke-width:4"
- id="g4660"
- inkscape:label="+"dhu""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:connector-curvature="0"
- id="path4654"
- d="m 797.19546,145.18619 -80.62929,0.60214 -0.60215,-80.629288 80.6293,-0.60214 z"
- inkscape:transform-center-y="-14.956361"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <text
- id="text4658"
- y="111.05016"
- x="733.58197"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="733.58197"
- id="tspan4656"
- sodipodi:role="line">dhu</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g4668"
- inkscape:label="="plop""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956371"
- inkscape:transform-center-y="-3.6154501e-05"
- d="m 622.6459,-170.03172 -51.81035,0 25.90517,-44.86908 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="14.956361"
- sodipodi:r1="29.912722"
- sodipodi:cy="-184.98808"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path4662"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star"
- transform="matrix(0,-2.0000001,1.9999999,0,1034.195,1298.6541)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="633.09552"
- y="111.05016"
- id="text4666"><tspan
- sodipodi:role="line"
- id="tspan4664"
- x="633.09552"
- y="111.05016"
- style="stroke-width:2px">plop</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g4676"
- inkscape:label="="mhoo""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="14.956364"
- transform="rotate(-90,746.45698,-44.543641)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path4670"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="-216.2599"
- sodipodi:r1="59.825443"
- sodipodi:r2="29.912722"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 648.55108,-186.34718 -103.62071,0 51.81035,-89.73817 z"
- inkscape:transform-center-y="-5.9989963e-06" />
- <text
- id="text4674"
- y="111.05016"
- x="537.25018"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="537.25018"
- id="tspan4672"
- sodipodi:role="line">mhoo</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g4684"
- inkscape:label="="yodl""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956365"
- transform="matrix(0,-1,-1,0,1043.9134,701.91334)"
- inkscape:transform-center-y="-5.5023185e-06"
- d="m 648.55108,135.08534 -103.62071,0 51.81035,-89.738161 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="true"
- sodipodi:arg2="1.5707963"
- sodipodi:arg1="0.52359878"
- sodipodi:r2="29.912722"
- sodipodi:r1="59.825443"
- sodipodi:cy="105.17262"
- sodipodi:cx="596.74072"
- sodipodi:sides="3"
- id="path4678"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- sodipodi:type="star" />
- <text
- id="text4682"
- y="111.05016"
- x="925.82605"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="stroke-width:2px"
- y="111.05016"
- x="925.82605"
- id="tspan4680"
- sodipodi:role="line">yodl</tspan></text>
- </g>
- <g
- style="stroke-width:4"
- id="g4692"
- inkscape:label="="mhe""
- transform="translate(-416.52022,170.47452)">
- <path
- inkscape:transform-center-x="-14.956349"
- transform="matrix(0,-2.0000001,-1.9999999,0,1122.1514,1298.6541)"
- sodipodi:type="star"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path4686"
- sodipodi:sides="3"
- sodipodi:cx="596.74072"
- sodipodi:cy="136.44444"
- sodipodi:r1="29.912722"
- sodipodi:r2="14.956361"
- sodipodi:arg1="0.52359878"
- sodipodi:arg2="1.5707963"
- inkscape:flatsided="true"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 622.6459,151.4008 -51.81035,0 25.90517,-44.86908 z"
- inkscape:transform-center-y="-3.3040441e-05" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="842.71497"
- y="111.05016"
- id="text4690"><tspan
- sodipodi:role="line"
- id="tspan4688"
- x="842.71497"
- y="111.05016"
- style="stroke-width:2px">mhe</tspan></text>
- </g>
- </g>
- <g
- id="g7994"
- inkscape:label="Gray Page Template">
- <rect
- y="-800"
- x="0"
- height="720"
- width="1280"
- id="rect4270"
- style="color:#000000;fill:#4d4d4d" />
- <g
- id="g4282"
- inkscape:label="HMI:Jump:Home"
- transform="translate(-10.6526,-2134.1633)">
- <g
- id="g4274"
- inkscape:label="button">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#ff6600;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="m 1217.4113,1410.4016 -22,24.5657 c -10.7925,12.0511 6.1317,35.5791 -13.5791,35.5791 h -174.2877 c -19.71078,0 -2.7866,-23.528 -13.57905,-35.5791 l -22,-24.5657 127.74845,-48.4334 z"
- id="path4272"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cssssccc" />
- </g>
- <g
- id="g4280"
- inkscape:label="text">
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1090.7626"
- y="1436.9814"
- id="text4278"
- inkscape:label="home_jmp"><tspan
- sodipodi:role="line"
- id="tspan4276"
- x="1090.7626"
- y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
- </g>
- </g>
- </g>
- <g
- id="g3435"
- inkscape:label="Meter Page"
- transform="translate(2680,780)">
- <use
- x="0"
- y="0"
- xlink:href="#g9808"
- id="use9820"
- width="100%"
- height="100%"
- transform="translate(0,-780)"
- inkscape:label="HMI:Page:Meters" />
- <g
- id="g7998"
- transform="matrix(2.1611542,0,0,2.1611542,1429.2874,1051.3886)"
- inkscape:label="HMI:Meter@/PUMP0/SLOTH">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3ee800;stroke-width:1.38814712;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#marker19820);marker-end:url(#marker25117);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path7978"
- sodipodi:type="arc"
- sodipodi:cx="128.02208"
- sodipodi:cy="2.2017097"
- sodipodi:rx="64.411957"
- sodipodi:ry="64.411957"
- sodipodi:start="3.1415927"
- sodipodi:end="4.712389"
- d="M 63.610123,2.2017068 A 64.411957,64.411957 0 0 1 128.02208,-62.210247"
- sodipodi:open="true"
- inkscape:label="range" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:0.92543143;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-start:url(#DotM);marker-end:url(#marker26099)"
- d="M 130.96206,4.0725977 79.111776,-41.363223"
- id="path7980"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- inkscape:label="needle" />
- <text
- inkscape:label="min"
- id="text7984"
- y="4.9187088"
- x="49.132977"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px"
- y="4.9187088"
- x="49.132977"
- id="tspan7982"
- sodipodi:role="line">0</tspan></text>
- <text
- inkscape:label="max"
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="127.48073"
- y="-68.889908"
- id="text7988"><tspan
- sodipodi:role="line"
- id="tspan7986"
- x="127.48073"
- y="-68.889908"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px">10000</tspan></text>
- <text
- inkscape:label="value"
- id="text7992"
- y="-52.465355"
- x="67.258514"
- style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- id="tspan7990"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="-52.465355"
- x="67.258514"
- sodipodi:role="line">[value]</tspan></text>
- </g>
- <g
- inkscape:label="HMI:Meter@/PUMP0/SLOTH"
- transform="matrix(4.1320069,0,0,4.1320069,1099.2525,1427.5173)"
- id="g8050">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3ee800;stroke-width:0.72603947;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:url(#marker28436);marker-end:url(#marker28710);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- d="M 113.38908,2.2017068 V -62.210247"
- id="path8030"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- inkscape:label="range" />
- <path
- inkscape:label="needle"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path8032"
- d="M 113.38908,4.0725977 V -42.849195"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ff6600;stroke-width:0.48402631;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:15.49905491;stroke-opacity:1;marker-start:url(#marker27514);marker-end:url(#marker27764)" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="115.07632"
- y="11.762599"
- id="text8036"
- inkscape:label="min"><tspan
- sodipodi:role="line"
- id="tspan8034"
- x="115.07632"
- y="11.762599"
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
- <text
- id="text8040"
- y="-64.195457"
- x="113.27539"
- style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"
- inkscape:label="max"><tspan
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
- y="-64.195457"
- x="113.27539"
- id="tspan8038"
- sodipodi:role="line">10000</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:5.29166651px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.13229166px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="128.20073"
- y="-42.97702"
- id="text8044"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- x="128.20073"
- y="-42.97702"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.13229166px"
- id="tspan8042">[value]</tspan></text>
- </g>
- <g
- transform="translate(228.04545,983.55108)"
- inkscape:label="HMI:Meter:20:80@/PUMP0/SLOTH"
- id="g12171"
- style="stroke-width:0.19249482">
- <text
- inkscape:label="value"
- clip-path="none"
- style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Univers LT CYR 55';-inkscape-font-specification:UniversLTCYR-55Roman;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#4f4c4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06790788"
- id="text30068"
- x="2087.8633"
- y="189.43953">
- <tspan
- x="2087.8633"
- sodipodi:role="line"
- id="tspan30066"
- style="font-size:10.66666698px;text-align:center;text-anchor:middle;stroke-width:0.06790788"
- y="189.43953">5,150</tspan>
- </text>
- <use
- x="0"
- y="0"
- xlink:href="#g817"
- id="use1727-4"
- width="100%"
- height="100%"
- transform="translate(127.87468,-983.55108)"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#00adef;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- </g>
- <g
- inkscape:label="meter_template"
- transform="matrix(10.390029,0,0,10.38975,-19578.073,-843.55094)"
- id="g817"
- style="stroke-width:0.19249482">
- <path
- inkscape:connector-curvature="0"
- id="path12105"
- d="M 2072.956,223.66129 V 195.4613"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#7b7979;stroke-width:1.92494833;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- inkscape:label="outline"
- sodipodi:nodetypes="cc" />
- <path
- style="fill:none;stroke:#e9e9e9;stroke-width:1.53995872;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="M 2072.956,223.66129 V 195.4613"
- id="path12107"
- inkscape:connector-curvature="0"
- inkscape:label="range"
- sodipodi:nodetypes="cc" />
- <path
- style="stroke-width:1.53995872;stroke-miterlimit:4;stroke-dasharray:none"
- inkscape:label="needle"
- d="M 2072.956,223.66129 V 209.9227"
- id="path12109"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- </g>
- <g
- transform="translate(138.03504,983.55108)"
- style="stroke-width:0.19249482"
- id="g8181"
- inkscape:label="HMI:Meter:20:80@/PUMP0/SLOTH">
- <text
- y="189.43953"
- x="2087.8633"
- id="text8177"
- style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Univers LT CYR 55';-inkscape-font-specification:UniversLTCYR-55Roman;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#4f4c4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06790788"
- clip-path="none"
- inkscape:label="value">
- <tspan
- y="189.43953"
- style="font-size:10.66666698px;text-align:center;text-anchor:middle;stroke-width:0.06790788"
- id="tspan8175"
- sodipodi:role="line"
- x="2087.8633">5,150</tspan>
- </text>
- <use
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#efd200;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- transform="translate(127.87468,-983.55108)"
- height="100%"
- width="100%"
- id="use8179"
- xlink:href="#g817"
- y="0"
- x="0" />
- </g>
- <g
- transform="translate(183.04025,983.55108)"
- inkscape:label="HMI:Meter:20:80@/PUMP0/SLOTH"
- id="g8189"
- style="stroke-width:0.19249482">
- <text
- inkscape:label="value"
- clip-path="none"
- style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Univers LT CYR 55';-inkscape-font-specification:UniversLTCYR-55Roman;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#4f4c4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06790788"
- id="text8185"
- x="2087.8633"
- y="189.43953">
- <tspan
- x="2087.8633"
- sodipodi:role="line"
- id="tspan8183"
- style="font-size:10.66666698px;text-align:center;text-anchor:middle;stroke-width:0.06790788"
- y="189.43953">5,150</tspan>
- </text>
- <use
- x="0"
- y="0"
- xlink:href="#g817"
- id="use8187"
- width="100%"
- height="100%"
- transform="translate(127.87468,-983.55108)"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ef0000;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- </g>
- <g
- transform="translate(273.05066,983.55108)"
- style="stroke-width:0.19249482"
- id="g8197"
- inkscape:label="HMI:Meter:20:80@/PUMP0/SLOTH">
- <text
- y="189.43953"
- x="2087.8633"
- id="text8193"
- style="font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.66666698px;font-family:'Univers LT CYR 55';-inkscape-font-specification:UniversLTCYR-55Roman;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:#4f4c4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.06790788"
- clip-path="none"
- inkscape:label="value">
- <tspan
- y="189.43953"
- style="font-size:10.66666698px;text-align:center;text-anchor:middle;stroke-width:0.06790788"
- id="tspan8191"
- sodipodi:role="line"
- x="2087.8633">5,150</tspan>
- </text>
- <use
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.192;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- transform="translate(127.87468,-983.55108)"
- height="100%"
- width="100%"
- id="use8195"
- xlink:href="#g817"
- y="0"
- x="0" />
- </g>
- <text
- id="text8201"
- y="830.39062"
- x="1512.8077"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- xml:space="preserve"><tspan
- y="830.39062"
- x="1512.8077"
- id="tspan8199"
- sodipodi:role="line">HMI:Meter:[min:max]@path</tspan></text>
- <path
- inkscape:connector-curvature="0"
- id="path8203"
- d="m 2012.6196,1364.7036 h 150.322"
- style="fill:none;stroke:#000000;stroke-width:3.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)" />
- <text
- id="text8753"
- y="1309.4535"
- x="2020.9539"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- id="tspan8755"
- y="1309.4535"
- x="2020.9539"
- sodipodi:role="line">clone +</tspan><tspan
- style="stroke-width:0.5"
- id="tspan8765"
- y="1334.4535"
- x="2020.9539"
- sodipodi:role="line">stroke color</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="1764.9539"
- y="1203.4535"
- id="text11347"><tspan
- id="tspan11354"
- sodipodi:role="line"
- x="1764.9539"
- y="1203.4535"
- style="font-size:16px;stroke-width:0.5">template </tspan><tspan
- id="tspan26649"
- sodipodi:role="line"
- x="1764.9539"
- y="1223.4535"
- style="font-size:16px;stroke-width:0.5">(usually out of page)</tspan><tspan
- id="tspan11356"
- sodipodi:role="line"
- x="1764.9539"
- y="1243.4535"
- style="font-size:16px;stroke-width:0.5">needle has undefined</tspan><tspan
- id="tspan11358"
- sodipodi:role="line"
- x="1764.9539"
- y="1263.4535"
- style="font-size:16px;stroke-width:0.5">stroke paint</tspan></text>
- <g
- inkscape:label="VoltmeterAndAmmeter"
- id="g18566"
- transform="matrix(0.1142708,0,0,0.1142708,2084.8332,915.30993)">
- <g
- id="g24836">
- <rect
- x="815.72998"
- y="-352.34"
- width="2055.1001"
- height="2055.1001"
- ry="129.3"
- rx="129.3"
- style="fill:#000000"
- id="rect5399" />
- <rect
- x="862.09003"
- y="-305.98001"
- width="1962.4"
- height="1962.4"
- ry="90.727997"
- rx="90.727997"
- style="fill:#333333"
- id="rect5401" />
- <rect
- x="888.34998"
- y="-279.72"
- width="1909.9"
- height="1909.9"
- ry="70.525002"
- rx="70.525002"
- style="fill:#000000"
- id="rect5403" />
- <rect
- x="2621.8999"
- y="802.65002"
- width="97.857002"
- height="45"
- ry="22.5"
- rx="22.5"
- style="fill:#333333"
- id="rect5405" />
- <path
- d="m 1140.5,-149.32 c -67.467,0 -121.78,54.312 -121.78,121.78 v 1405.5 c 0,67.467 54.312,121.78 121.78,121.78 h 680.32 c 29.662,0 47.115,-4.0298 64.849,-21.729 l 755.79,-754.27 c 23.851,-23.803 26.352,-40.896 26.352,-72.473 v -678.83 c 0,-67.467 -54.312,-121.78 -121.78,-121.78 z"
- inkscape:connector-curvature="0"
- style="fill:#333333"
- sodipodi:nodetypes="sssssssssss"
- id="path5407" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#000000"
- d="M 2038.4,1279.8 2476.97,851.23 H 2032.68 Z"
- id="path5409" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#e6e6e6"
- d="m 2205.5,1048.4 -48.571,-54.286 33.571,-33.571 54.286,54.286"
- id="path5413" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#cccccc"
- sodipodi:nodetypes="ccccccccccc"
- d="m 2114.8,1205.5 -37.143,-36.429 11.428,-12.857 30.714,6.4286 54.286,-54.286 c -6.7697,-14.828 -2.7536,-22.791 11.429,-24.286 -18.934,-68.674 49.856,-114.43 102.86,-90 l 60.714,-60 -12.143,-30 11.429,-10 41.428,35"
- id="path5415" />
- <path
- d="m 1156,-131.14 c -65.98,0 -119.09,53.114 -119.09,119.09 v 1374.5 c 0,65.979 53.114,119.09 119.09,119.09 h 665.31 c 29.008,0 39.174,-3.9241 56.5,-21.25 l 746.03,-746.03 c 23.302,-23.302 25.781,-31.589 25.781,-62.469 v -663.88 c 0,-65.979 -53.114,-119.09 -119.09,-119.09 h -1374.5 z m 1096.6,1000.2 h 189.31 l -387.34,382.16 v -178.94 c 0,-107.21 90.807,-203.22 198.03,-203.22 z"
- inkscape:connector-curvature="0"
- style="fill:#e1e1d1"
- id="path5417" />
- <path
- transform="matrix(1.037,0,0,1.037,1984.9,-1799.2)"
- d="m -823.78,1579.8 c -65.979,0 -119.09,53.114 -119.09,119.09 v 1374.5 c 0,51.168 31.947,94.61 77.062,111.53 -1.8213,-8.3056 -2.7812,-16.944 -2.7812,-25.813 v -1374.5 c 0,-65.979 53.114,-119.09 119.09,-119.09 h 1374.5 c 14.812,0 28.972,2.6957 42.031,7.5938 -11.729,-53.488 -59.201,-93.312 -116.31,-93.312 h -1374.5 z"
- inkscape:connector-curvature="0"
- style="opacity:0.85773998;fill:#000000;filter:url(#filter5708)"
- id="path5647" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2252.1,-20.888 a 3.5004,3.5004 0 0 0 -3.0938,3.5312 v 120 a 3.5004,3.5004 0 1 0 7,0 v -120 A 3.5004,3.5004 0 0 0 2252.1,-20.888 Z"
- id="path5419" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1190.6,836.17 a 3.5004,3.5004 0 0 0 -0.4062,6.9375 l 117.28,25.312 a 3.5004,3.5004 0 1 0 1.4688,-6.8438 l -117.28,-25.312 a 3.5004,3.5004 0 0 0 -1.0625,-0.094 z"
- id="path5421" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1441.2,342.92 a 3.5004,3.5004 0 0 0 -2.0625,6.1562 l 89.594,79.781 a 3.5004,3.5004 0 1 0 4.6562,-5.2188 l -89.594,-79.812 a 3.5004,3.5004 0 0 0 -2.5938,-0.9062 z"
- id="path5423" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1876.6,46.143 a 3.5004,3.5004 0 0 0 -3.0313,4.75 l 41.5,112.59 a 3.5004,3.5004 0 1 0 6.5625,-2.4063 l -41.5,-112.59 A 3.5004,3.5004 0 0 0 1876.6,46.1429 Z"
- id="path5425" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2192.8,-19.263 a 3.5004,3.5004 0 0 0 -3.25,3.75 l 3.0312,55.312 a 3.5050187,3.5050187 0 1 0 7,-0.375 L 2196.55,-15.92 a 3.5004,3.5004 0 0 0 -3.75,-3.3437 z"
- id="path5427" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2114.4,-12.107 a 3.5004,3.5004 0 0 0 -3.3125,4 l 7.0313,54.969 a 3.5137,3.5137 0 1 0 6.9687,-0.9063 l -7.0625,-54.937 a 3.5004,3.5004 0 0 0 -3.625,-3.125 z"
- id="path5429" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2042.9,-0.48153 a 3.5004,3.5004 0 0 0 -3.4063,4.2188 l 10.688,54.375 a 3.5025499,3.5025499 0 1 0 6.875,-1.3438 l -10.7,-54.374 a 3.5004,3.5004 0 0 0 -3.4687,-2.875 z"
- id="path5431" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1967,17.237 a 3.5004,3.5004 0 0 0 -3.0625,4.4687 l 14.531,53.438 a 3.5096235,3.5096235 0 1 0 6.7812,-1.8125 l -14.562,-53.469 a 3.5004,3.5004 0 0 0 -3.6875,-2.625 z"
- id="path5433" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1791.7,81.612 a 3.5004,3.5004 0 0 0 -2.9687,5.0312 l 23.5,50.188 a 3.5004,3.5004 0 1 0 6.3125,-2.9687 l -23.469,-50.188 a 3.5004,3.5004 0 0 0 -3.375,-2.0625 z"
- id="path5435" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1681.8,141.02 a 3.5004,3.5004 0 0 0 -2.7188,5.375 l 29.094,47.156 a 3.508,3.508 0 1 0 5.9687,-3.6875 l -29.125,-47.125 a 3.5004,3.5004 0 0 0 -3.2187,-1.7188 z"
- id="path5437" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1589.5,204.77 a 3.5004,3.5004 0 0 0 -2.5,5.6563 l 33.812,43.906 a 3.5096324,3.5096324 0 1 0 5.5625,-4.2812 l -33.812,-43.906 a 3.5004,3.5004 0 0 0 -3.0625,-1.375 z"
- id="path5439" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1515.5,267.24 a 3.5004,3.5004 0 0 0 -2.3125,5.9062 l 37.562,40.688 a 3.5053138,3.5053138 0 1 0 5.1562,-4.75 l -37.594,-40.688 a 3.5004,3.5004 0 0 0 -2.8125,-1.1562 z"
- id="path5441" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1376.1,423.46 a 3.5004,3.5004 0 0 0 -1.8437,6.3438 l 44.688,32.75 a 3.5004,3.5004 0 1 0 4.125,-5.6563 l -44.688,-32.719 a 3.5004,3.5004 0 0 0 -2.2813,-0.7188 z"
- id="path5443" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1308,528.58 a 3.5004,3.5004 0 0 0 -1.4375,6.5625 l 48.156,27.375 a 3.5059,3.5059 0 1 0 3.4687,-6.0937 l -48.156,-27.375 a 3.5004,3.5004 0 0 0 -2.0313,-0.4688 z"
- id="path5445" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1257.6,628.96 a 3.5004,3.5004 0 0 0 -1.0937,6.7188 l 50.719,22.25 a 3.5004,3.5004 0 1 0 2.8125,-6.4063 l -50.719,-22.25 A 3.5004,3.5004 0 0 0 1257.6,628.96 Z"
- id="path5447" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1213.6,747.39 a 3.5004,3.5004 0 0 0 -0.6875,6.8438 l 52.969,16.219 a 3.5004,3.5004 0 1 0 2.0625,-6.6875 l -52.969,-16.219 A 3.5004,3.5004 0 0 0 1213.6,747.39 Z"
- id="path5449" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1175.9,920.21 a 3.5004,3.5004 0 0 0 -0.2187,6.9688 l 54.906,7.4062 a 3.5004,3.5004 0 1 0 0.9375,-6.9375 l -54.906,-7.4062 a 3.5004,3.5004 0 0 0 -0.7188,-0.031 z m 79.625,10.75 a 3.5004,3.5004 0 0 0 -0.2187,6.9688 l 4.4687,0.5937 a 3.5004,3.5004 0 1 0 0.9375,-6.9375 l -4.4687,-0.5937 a 3.5004,3.5004 0 0 0 -0.7188,-0.031 z"
- id="path5451" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1583.2,440.49 a 4.0004,4.0004 0 0 0 -2.9063,1.3437 l -14.625,16.688 a 4.0004,4.0004 0 1 0 6,5.2813 l 7.625,-8.6875 v 76.25 a 4.0004,4.0004 0 1 0 8,0 v -86.875 a 4.0004,4.0004 0 0 0 -4.0937,-4 z"
- id="path5453" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1634.8,440.49 c -15.018,0 -27.219,12.2 -27.219,27.219 v 40.406 c 0,15.018 12.201,27.25 27.219,27.25 15.018,0 27.25,-12.232 27.25,-27.25 v -40.406 c 0,-15.018 -12.232,-27.219 -27.25,-27.219 z m 0,8 c 10.724,0 19.25,8.4942 19.25,19.219 v 40.406 c 0,10.724 -8.5255,19.25 -19.25,19.25 -10.725,0 -19.219,-8.5255 -19.219,-19.25 v -40.406 c 0,-10.724 8.4942,-19.219 19.219,-19.219 z"
- id="path5455" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1707.1,440.49 c -15.018,0 -27.219,12.2 -27.219,27.219 v 40.406 c 0,15.018 12.201,27.25 27.219,27.25 15.018,0 27.25,-12.232 27.25,-27.25 v -40.406 c 0,-15.018 -12.232,-27.219 -27.25,-27.219 z m 0,8 c 10.725,0 19.25,8.4942 19.25,19.219 v 40.406 c 0,10.724 -8.5254,19.25 -19.25,19.25 -10.724,0 -19.219,-8.5255 -19.219,-19.25 v -40.406 c 0,-10.724 8.4942,-19.219 19.219,-19.219 z"
- id="path5457" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2261.9,156.64 c -15.018,0 -27.25,12.201 -27.25,27.219 v 40.406 c 0,15.018 12.232,27.25 27.25,27.25 15.018,0 27.219,-12.232 27.219,-27.25 v -40.406 c 0,-15.018 -12.2,-27.219 -27.219,-27.219 z m 0,8 c 10.724,0 19.219,8.4942 19.219,19.219 v 40.406 c 0,10.725 -8.4942,19.25 -19.219,19.25 -10.7248,0 -19.25,-8.5254 -19.25,-19.25 v -40.406 c 0,-10.725 8.5254,-19.219 19.25,-19.219 z"
- id="path5459" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2334.1,156.64 c -15.018,0 -27.25,12.201 -27.25,27.219 v 40.406 c 0,15.018 12.232,27.25 27.25,27.25 15.018,0 27.219,-12.232 27.219,-27.25 v -40.406 c 0,-15.018 -12.201,-27.219 -27.219,-27.219 z m 0,8 c 10.725,0 19.219,8.4942 19.219,19.219 v 40.406 c 0,10.725 -8.4942,19.25 -19.219,19.25 -10.724,0 -19.25,-8.5254 -19.25,-19.25 v -40.406 c 0,-10.725 8.5255,-19.219 19.25,-19.219 z"
- id="path5461" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2183.5,156.61 c -14.558,0 -26.594,11.436 -26.594,25.656 a 4.0004,4.0004 0 1 0 8,0 c 0,-9.7079 8.1784,-17.656 18.594,-17.656 10.415,0 18.625,7.9483 18.625,17.656 0,3.4188 -0.3012,6.2394 -1.9688,9.125 -1.6675,2.8857 -4.8983,6.1281 -11.656,9.5625 -15.36,7.8058 -30.328,23.228 -32.812,46.125 a 4.0004,4.0004 0 0 0 3.9687,4.4375 h 45.969 a 4.0004,4.0004 0 1 0 0,-8 h -41.219 c 3.4596,-17.376 15.261,-29.122 27.688,-35.438 7.6556,-3.8905 12.332,-8.1255 14.969,-12.688 2.6363,-4.5619 3.0625,-9.1977 3.0625,-13.125 0,-14.22 -12.067,-25.656 -26.625,-25.656 z"
- id="path5463" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1860,235.42 a 4.0004,4.0004 0 0 0 -2.9062,1.3437 l -14.625,16.688 a 4.0004,4.0004 0 1 0 6,5.2813 l 7.6562,-8.7188 v 76.281 a 4.0004,4.0004 0 1 0 8,0 v -86.875 a 4.0004,4.0004 0 0 0 -4.125,-4 z"
- id="path5465" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1983.8,235.42 c -15.018,0 -27.219,12.2 -27.219,27.219 v 40.406 c 0,15.018 12.201,27.25 27.219,27.25 15.018,0 27.25,-12.232 27.25,-27.25 v -40.406 c 0,-15.018 -12.232,-27.219 -27.25,-27.219 z m 0,8 c 10.724,0 19.25,8.4942 19.25,19.219 v 40.406 c 0,10.724 -8.5255,19.25 -19.25,19.25 -10.725,0 -19.219,-8.5255 -19.219,-19.25 v -40.406 c 0,-10.724 8.4942,-19.219 19.219,-19.219 z"
- id="path5467" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1889.9,235.39 a 4.0004,4.0004 0 0 0 -4,4 v 37.25 a 4.0004,4.0004 0 0 0 7.375,2.125 c 2.999,-4.7533 11.204,-8.0625 18.344,-8.0625 10.688,0 19.25,8.6481 19.25,19.625 v 12.344 c 0,10.977 -8.5616,19.625 -19.25,19.625 -7.2062,0 -15.114,-4.3265 -18.219,-9.875 a 4.0081,4.0081 0 1 0 -7,3.9062 c 4.876,8.7155 15.069,13.969 25.219,13.969 15.054,0 27.25,-12.426 27.25,-27.625 v -12.344 c 0,-15.199 -12.196,-27.625 -27.25,-27.625 -5.9926,0 -12.456,1.4612 -17.719,4.6875 v -24 h 35.406 a 4.0004,4.0004 0 1 0 0,-8 H 1889.9 Z"
- id="path5469" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1470.7,824.33 c -15.018,0 -27.219,12.232 -27.219,27.25 v 40.406 c 0,15.018 12.201,27.219 27.219,27.219 15.018,0 27.25,-12.201 27.25,-27.219 V 851.58 c 0,-15.018 -12.232,-27.25 -27.25,-27.25 z m 0,8 c 10.725,0 19.25,8.5255 19.25,19.25 v 40.406 c 0,10.724 -8.5254,19.219 -19.25,19.219 -10.724,0 -19.219,-8.4942 -19.219,-19.219 V 851.58 c 0,-10.724 8.4942,-19.25 19.219,-19.25 z"
- id="path5471" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1376.3,824.33 a 4.0004,4.0004 0 0 0 -3.5938,4 v 37.219 a 4.0004,4.0004 0 0 0 7.375,2.1562 c 2.999,-4.7533 11.204,-8.0625 18.344,-8.0625 10.688,0 19.25,8.6481 19.25,19.625 v 12.312 c 0,10.977 -8.5616,19.625 -19.25,19.625 -7.2063,0 -15.114,-4.3265 -18.219,-9.875 a 4.0081,4.0081 0 1 0 -7,3.9063 c 4.8761,8.7155 15.069,13.969 25.219,13.969 15.054,0 27.25,-12.426 27.25,-27.625 v -12.312 c 0,-15.199 -12.196,-27.625 -27.25,-27.625 -5.9927,0 -12.456,1.4612 -17.719,4.6875 v -24 h 35.406 a 4.0004,4.0004 0 1 0 0,-8 h -39.406 a 4.0004,4.0004 0 0 0 -0.4062,0 z"
- id="path5473" />
- <path
- d="m 1284.7,72.831 -1.1875,5.5313 -30.312,141.13 h 13.719 l 7,-31.844 h 46.156 l 8.5312,31.844 h 13.531 l -36.938,-141.47 -1.375,-5.1875 h -5.375 -8.0938 -5.6562 z m 10.031,20.062 21.594,80.75 h -39.344 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5475" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1146.3,900.96 c -8.4837,0 -15.375,6.8914 -15.375,15.375 v 22.844 c 0,8.4836 6.8913,15.375 15.375,15.375 8.4836,0 15.406,-6.8914 15.406,-15.375 v -22.844 c 0,-8.4836 -6.9226,-15.375 -15.406,-15.375 z m 0,4.5 c 6.0685,0 10.906,4.8065 10.906,10.875 v 22.844 c 0,6.0685 -4.8377,10.875 -10.906,10.875 -6.0685,0 -10.875,-4.8065 -10.875,-10.875 v -22.844 c 0,-6.0685 4.8065,-10.875 10.875,-10.875 z"
- id="path5477" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1115.6,900.96 a 2.2502,2.2502 0 0 0 -1.5938,1.0313 l -22.156,34.875 a 2.2502,2.2502 0 0 0 1.9062,3.4375 h 19.875 v 12 a 2.2502,2.2502 0 1 0 4.5,0 v -12 h 1.3438 a 2.2502,2.2502 0 1 0 0,-4.5 h -1.3438 v -32.594 a 2.2502,2.2502 0 0 0 -2.5312,-2.25 z m -1.9688,9.9688 v 24.875 h -15.781 z"
- id="path5479" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1284.9,1200.5 a 2.5002,2.5002 0 0 0 -1.8125,0.8438 l -7.8125,8.9062 a 2.5018,2.5018 0 1 0 3.75,3.3125 l 3.4375,-3.9062 v 39.781 a 2.5002,2.5002 0 1 0 5,0 v -46.438 a 2.5002,2.5002 0 0 0 -2.5625,-2.5 z"
- id="path5481" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1306.7,1200.5 a 2.5002,2.5002 0 0 0 -2.25,2.5 v 19.906 a 2.5002,2.5002 0 0 0 4.625,1.3125 c 1.5017,-2.3802 5.7817,-4.125 9.5,-4.125 5.5171,0 9.9062,4.4471 9.9062,10.125 v 6.5937 c 0,5.6779 -4.3891,10.125 -9.9062,10.125 -3.7197,0 -7.858,-2.2704 -9.4375,-5.0937 a 2.5041,2.5041 0 1 0 -4.375,2.4375 c 2.6869,4.8026 8.253,7.6562 13.812,7.6562 8.2458,0 14.906,-6.8081 14.906,-15.125 v -6.5937 c 0,-8.3169 -6.6604,-15.125 -14.906,-15.125 -3.0809,0 -6.3424,0.7822 -9.125,2.3437 v -11.938 h 18.562 a 2.5002,2.5002 0 1 0 0,-5 h -21.062 a 2.5002,2.5002 0 0 0 -0.25,0 z"
- id="path5483" />
- <path
- d="m 1297.5,1245.5 c -2.2316,0 -4.0625,1.8309 -4.0625,4.0625 0,1.973 1.4112,3.5834 3.2812,3.9375 -0.352,1.6422 -0.8243,3.5675 -1.625,6.4063 3.379,-3.3497 5.078,-6.1448 6.0625,-8.6875 0.013,-0.033 0.05,-0.061 0.062,-0.094 v -0.031 c 0.1971,-0.476 0.3125,-0.9841 0.3125,-1.5313 0,-2.2316 -1.7996,-4.0625 -4.0312,-4.0625 z"
- inkscape:connector-curvature="0"
- style="fill:#000000"
- id="path5485" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1197.6,1211.8 c -5.4507,0.026 -10.966,1.9221 -16,6.6562 a 2.5092298,2.5092298 0 1 0 3.4375,3.6563 c 5.6656,-5.3286 10.954,-6.1333 16.938,-4.875 5.9835,1.2583 12.504,4.8898 19.125,8.7187 6.6209,3.8289 13.346,7.8504 20.312,9.5313 6.9667,1.6808 14.393,0.7108 20.875,-5.2813 a 2.5100068,2.5100068 0 1 0 -3.4063,-3.6875 c -5.3695,4.9637 -10.436,5.5429 -16.312,4.125 -5.8769,-1.4179 -12.328,-5.1594 -18.969,-9 -6.6411,-3.8405 -13.471,-7.7833 -20.594,-9.2812 -1.7807,-0.3745 -3.5893,-0.5714 -5.4062,-0.5625 z"
- id="path5487" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1365.1,1188.7 a 2.5002,2.5002 0 0 0 -2.4688,2.5313 v 55.594 a 2.5002,2.5002 0 1 0 5,0 v -55.594 A 2.5002,2.5002 0 0 0 1365.1,1188.7 Z"
- id="path5489" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1406.1,1187 a 2.5002,2.5002 0 0 0 -0.6562,0.1563 l -54,19.156 a 2.5002,2.5002 0 0 0 0,4.7188 l 18.5,6.5 -18.5,6.5625 a 2.5002,2.5002 0 0 0 0,4.7187 l 18.469,6.5313 -18.469,6.5312 a 2.5002,2.5002 0 0 0 0,4.7188 l 54,19.156 a 2.5002,2.5002 0 1 0 1.6875,-4.6875 l -47.375,-16.812 18.469,-6.5312 a 2.5002,2.5002 0 0 0 0,-4.7188 l -18.469,-6.5625 18.469,-6.5625 a 2.5002,2.5002 0 0 0 0,-4.6875 l -18.469,-6.5312 47.375,-16.781 a 2.5002,2.5002 0 0 0 -1.0313,-4.875 z"
- id="path5491" />
- <circle
- r="6.5068183"
- cy="330.90106"
- cx="-574.59137"
- transform="matrix(0.59248,0,0,0.59248,1746.3,993.55)"
- style="fill:#000000"
- id="path5493" />
- <circle
- r="6.5068183"
- cy="330.90106"
- cx="-574.59137"
- transform="matrix(0.59248,0,0,0.59248,1746.3,1067.2)"
- style="fill:#000000"
- id="path5495" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1467.3,1185.7 a 2.5002,2.5002 0 0 0 -1.784,1.1002 l -14.719,21.974 -25.423,7.2256 a 2.5002,2.5002 0 0 0 -1.2785,3.9547 l 16.354,20.784 -0.9515,26.434 a 2.5002,2.5002 0 0 0 3.36,2.4085 l 24.799,-9.0988 24.828,9.0691 a 2.5002,2.5002 0 0 0 3.36,-2.4382 l -1.011,-26.404 16.295,-20.814 a 2.5002,2.5002 0 0 0 -1.2786,-3.9547 l -25.423,-7.2255 -14.748,-21.914 a 2.5002,2.5002 0 0 0 -2.3788,-1.1002 z m 0.2974,6.9877 13.202,19.595 a 2.5002,2.5002 0 0 0 1.3975,1.011 l 22.717,6.4524 -14.57,18.584 a 2.5002,2.5002 0 0 0 -0.5352,1.6354 l 0.892,23.609 -22.182,-8.0878 a 2.5002,2.5002 0 0 0 -1.7247,0 l -22.182,8.1473 0.8623,-23.639 a 2.5002,2.5002 0 0 0 -0.5352,-1.6354 l -14.57,-18.554 22.688,-6.4822 a 2.5002,2.5002 0 0 0 1.3976,-1.0109 l 13.143,-19.625 z"
- id="path5497" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1467.3,1217.5 c -4.8518,0 -8.8125,3.9608 -8.8125,8.8125 a 2.1387,2.1387 0 1 0 4.25,0 c 0,-2.5403 2.0222,-4.5312 4.5625,-4.5312 2.5403,0 4.5625,1.9909 4.5625,4.5312 0,0.6956 -0.176,1.0804 -0.9063,1.9688 -0.7302,0.8884 -1.9841,2.0898 -3.4062,3.8125 l -9.3438,11.312 a 2.1387,2.1387 0 0 0 1.6563,3.5 h 15.406 a 2.14065,2.14065 0 0 0 0,-4.2813 h -10.875 l 6.4375,-7.8125 c 1.2475,-1.5111 2.4037,-2.5927 3.4063,-3.8125 1.0026,-1.2198 1.9062,-2.8108 1.9062,-4.6875 0,-4.8517 -3.992,-8.8125 -8.8437,-8.8125 z"
- id="path5499" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1522.5,1207.9 a 2.5002,2.5002 0 0 0 -2.5,2.5 v 39.656 a 2.5002,2.5002 0 1 0 5,0 V 1212.9 h 14.156 a 2.5002,2.5002 0 1 0 0,-5 z"
- id="path5501" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1522.5,1224.9 a 2.503123,2.503123 0 1 0 0.25,5 h 8.5937 c 4.954,0 8.8438,3.8897 8.8438,8.8437 0,4.954 -3.8898,8.875 -8.8438,8.875 h -8.5937 a 2.5002,2.5002 0 1 0 0,5 h 8.5937 c 7.6376,0 13.844,-6.2375 13.844,-13.875 0,-7.6375 -6.2062,-13.844 -13.844,-13.844 h -8.5937 a 2.5002,2.5002 0 0 0 -0.25,0 z"
- id="path5503" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1574.5,1194.1 a 2.1387,2.1387 0 0 0 -2.125,2.1875 v 68.688 a 2.1406,2.1406 0 0 0 4.2812,0 v -68.688 A 2.1387,2.1387 0 0 0 1574.5,1194.1 Z"
- id="path5505" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1545.4,1263 a 2.503123,2.503123 0 1 0 0.25,5 h 57.594 a 2.5002,2.5002 0 1 0 0,-5 h -57.594 a 2.5002,2.5002 0 0 0 -0.25,0 z"
- id="path5507" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1283.8,1300 a 2.2502,2.2502 0 0 0 -2.0313,2.25 v 26.875 a 2.2502,2.2502 0 1 0 4.5,0 V 1304.5 h 8.375 a 2.2502,2.2502 0 1 0 0,-4.5 h -10.625 a 2.2502,2.2502 0 0 0 -0.2187,0 z"
- id="path5509" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1308.4,1300 c -5.8944,0 -10.719,4.8243 -10.719,10.719 v 9.9688 c 0,5.8944 4.8243,10.688 10.719,10.688 5.8945,0 10.719,-4.7931 10.719,-10.688 v -9.9688 c 0,-5.8944 -4.8243,-10.719 -10.719,-10.719 z m 0,4.5 c 3.4793,0 6.2188,2.7394 6.2188,6.2187 v 9.9688 c 0,3.4792 -2.7395,6.1875 -6.2188,6.1875 -3.4792,0 -6.2187,-2.7083 -6.2187,-6.1875 v -9.9688 c 0,-3.4793 2.7395,-6.2187 6.2187,-6.2187 z"
- id="path5511" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1330.6,1300 c -5.8944,0 -10.719,4.8243 -10.719,10.719 v 9.9688 c 0,5.8944 4.8244,10.688 10.719,10.688 4.9632,0 9.1791,-3.3836 10.375,-8 a 2.2502,2.2502 0 1 0 -4.3438,-1.125 c -0.6916,2.6699 -3.1016,4.625 -6.0312,4.625 -3.4793,0 -6.2188,-2.7083 -6.2188,-6.1875 v -9.9688 c 0,-3.4793 2.7395,-6.2187 6.2188,-6.2187 2.9269,0 5.3058,1.9588 6,4.625 a 2.2587,2.2587 0 1 0 4.375,-1.125 c -1.2003,-4.61 -5.4164,-8 -10.375,-8 z"
- id="path5513" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1351.7,1300 a 2.2502,2.2502 0 0 0 -2,2.2813 v 26.875 a 2.2502,2.2502 0 1 0 4.5,0 v -26.875 A 2.2502,2.2502 0 0 0 1351.7,1300 Z"
- id="path5515" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1344.9,1300 a 2.2527,2.2527 0 0 0 0.2188,4.5 h 13.812 a 2.2502,2.2502 0 1 0 0,-4.5 h -13.812 a 2.2502,2.2502 0 0 0 -0.2188,0 z"
- id="path5517" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1385.8,1300 c -4.4239,0 -8.0625,3.6386 -8.0625,8.0625 0,4.4239 3.6386,8.0625 8.0625,8.0625 4.4239,0 8.0625,-3.6386 8.0625,-8.0625 0,-4.4239 -3.6386,-8.0625 -8.0625,-8.0625 z m 0,4.5 c 1.9919,0 3.5625,1.5706 3.5625,3.5625 0,1.9919 -1.5706,3.5625 -3.5625,3.5625 -1.9919,0 -3.5625,-1.5706 -3.5625,-3.5625 0,-1.9919 1.5706,-3.5625 3.5625,-3.5625 z"
- id="path5519" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1385.8,1311.5 c -5.4699,0 -9.9456,4.4758 -9.9456,9.9457 0,5.4699 4.4757,9.9456 9.9456,9.9456 5.4699,0 9.9457,-4.4757 9.9457,-9.9456 0,-5.4699 -4.4758,-9.9457 -9.9457,-9.9457 z m 0,4.4756 c 3.0379,0 5.4701,2.4321 5.4701,5.4701 0,3.0379 -2.4322,5.4701 -5.4701,5.4701 -3.0379,0 -5.4701,-2.4322 -5.4701,-5.4701 0,-3.038 2.4322,-5.4701 5.4701,-5.4701 z"
- id="path5521" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1400.2,1300 a 2.2535,2.2535 0 1 0 0.25,4.5 h 7.9063 c -3.3387,6.572 -6.0518,14.717 -8.3438,24.094 a 2.2511,2.2511 0 1 0 4.375,1.0625 c 2.6399,-10.8 5.7905,-19.938 9.5938,-26.25 a 2.2502,2.2502 0 0 0 -1.9375,-3.4062 h -11.594 a 2.2502,2.2502 0 0 0 -0.25,0 z"
- id="path5523" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1429.1,1300 a 2.2502,2.2502 0 0 0 -1.75,0.9062 l -4.6875,6.25 a 2.2502,2.2502 0 1 0 3.5937,2.6875 l 0.6563,-0.875 v 20.156 a 2.2502,2.2502 0 1 0 4.5,0 v -26.875 a 2.2502,2.2502 0 0 0 -2.3125,-2.25 z"
- id="path5525" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1444.9,1300 a 2.2502,2.2502 0 0 0 -1.7187,0.9062 l -4.6875,6.25 a 2.2502,2.2502 0 1 0 3.5937,2.6875 l 0.625,-0.8437 v 20.125 a 2.2502,2.2502 0 1 0 4.5,0 V 1302.25 A 2.2502,2.2502 0 0 0 1444.9,1300 Z"
- id="path5527" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1502.4,1300 c -5.8944,0 -10.719,4.8243 -10.719,10.719 v 9.9688 c 0,5.8944 4.8243,10.688 10.719,10.688 5.8945,0 10.719,-4.7931 10.719,-10.688 v -9.9688 c 0,-5.8944 -4.8243,-10.719 -10.719,-10.719 z m 0,4.5 c 3.4793,0 6.2188,2.7394 6.2188,6.2187 v 9.9688 c 0,3.4792 -2.7395,6.1875 -6.2188,6.1875 -3.4792,0 -6.2187,-2.7083 -6.2187,-6.1875 v -9.9688 c 0,-3.4793 2.7395,-6.2187 6.2187,-6.2187 z"
- id="path5529" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1480.7,1311.5 c -5.4699,0 -9.9456,4.4758 -9.9456,9.9457 0,5.4699 4.4757,9.9456 9.9456,9.9456 5.4699,0 9.9457,-4.4757 9.9457,-9.9456 0,-5.4699 -4.4758,-9.9457 -9.9457,-9.9457 z m 0,4.4756 c 3.038,0 5.4701,2.4321 5.4701,5.4701 0,3.0379 -2.4321,5.4701 -5.4701,5.4701 -3.0379,0 -5.4701,-2.4322 -5.4701,-5.4701 0,-3.038 2.4322,-5.4701 5.4701,-5.4701 z"
- id="path5531" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1480.6,1300 c -5.4699,0 -9.9375,4.4676 -9.9375,9.9375 v 11.5 a 2.2502,2.2502 0 1 0 4.5,0 v -11.5 c 0,-3.038 2.3996,-5.4375 5.4375,-5.4375 2.1957,0 4.1748,1.2907 5.0312,3.3125 a 2.2548464,2.2548464 0 1 0 4.1563,-1.75 C 1488.2311,1302.3882 1484.5902,1300 1480.6,1300 Z"
- id="path5533" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 1453.1,1312.7 a 2.2527,2.2527 0 1 0 0.2187,4.5 h 11.625 a 2.2502,2.2502 0 1 0 0,-4.5 h -11.625 a 2.2502,2.2502 0 0 0 -0.2187,0 z"
- id="path5535" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2411,246.77 c -6.7857,0 -12.69,3.8407 -15.594,9.5 a 2.5002,2.5002 0 1 0 4.4375,2.2813 c 2.0712,-4.0372 6.2544,-6.7813 11.156,-6.7813 6.9826,0 12.531,5.5486 12.531,12.531 v 21.344 c 0,6.9827 -5.5486,12.531 -12.531,12.531 -4.4774,0 -8.3428,-2.2744 -10.562,-5.75 a 2.5010463,2.5010463 0 0 0 -4.2188,2.6875 c 3.1089,4.8679 8.5832,8.0625 14.781,8.0625 9.6662,0 17.531,-7.8651 17.531,-17.531 v -21.344 c 0,-9.6662 -7.865,-17.531 -17.531,-17.531 z"
- id="path5537" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2488,246.77 c -9.6662,0 -17.5,7.8651 -17.5,17.531 v 21.344 c 0,9.6662 7.8338,17.531 17.5,17.531 9.6662,0 17.531,-7.8651 17.531,-17.531 v -21.344 c 0,-9.6662 -7.865,-17.531 -17.531,-17.531 z m 0,5 c 6.9826,0 12.531,5.5486 12.531,12.531 v 21.344 c 0,6.9827 -5.5486,12.531 -12.531,12.531 -6.9827,0 -12.5,-5.5486 -12.5,-12.531 v -21.344 c 0,-6.9827 5.5173,-12.531 12.5,-12.531 z"
- id="path5539" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2436.6,246.77 a 2.503123,2.503123 0 1 0 0.25,5 h 18.156 l -12.375,17.5 a 2.5002,2.5002 0 0 0 2.3438,3.9375 c 5.7215,-0.6861 9.0208,0.5421 11.188,2.4375 2.1667,1.8954 3.3312,4.7379 3.7812,7.7188 0.4713,3.1214 -0.2841,6.6266 -1.9062,9.4062 -1.6221,2.7796 -4.0115,4.745 -6.7188,5.25 -4.4749,0.8348 -10.174,-1.6848 -12.25,-5.8437 a 2.5016,2.5016 0 1 0 -4.4687,2.25 c 3.2375,6.4873 10.824,9.7687 17.625,8.5 4.4334,-0.8271 7.9332,-3.8692 10.125,-7.625 2.1918,-3.7558 3.1945,-8.2945 2.5312,-12.688 -0.5668,-3.7544 -2.0648,-7.7958 -5.4062,-10.719 -2.4107,-2.1088 -5.7373,-3.477 -9.9063,-3.7812 l 12.312,-17.406 a 2.5002,2.5002 0 0 0 -2.0625,-3.9375 h -22.969 a 2.5002,2.5002 0 0 0 -0.25,0 z"
- id="path5541" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2411.9,272.49 a 2.503123,2.503123 0 1 0 0.25,5 h 13.125 a 2.5002,2.5002 0 1 0 0,-5 h -13.125 a 2.5002,2.5002 0 0 0 -0.25,0 z"
- id="path5543" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#cc9168"
- d="m 2394,654.11 a 3.5004,3.5004 0 0 0 -3,1.9062 l -22,41.875 -75.406,87.469 a 3.5014,3.5014 0 1 0 5.3125,4.5625 l 75.688,-87.844 a 3.5004,3.5004 0 0 0 0.4687,-0.6562 l 22.125,-42.156 a 3.5004,3.5004 0 0 0 -3.1875,-5.1562 z"
- id="path5545" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#ffffff"
- d="m 2296,773.83 c -7.7494,0 -14.125,6.3444 -14.125,14.094 0,7.7494 6.3756,14.125 14.125,14.125 7.7494,0 14.094,-6.3756 14.094,-14.125 a 3.5004,3.5004 0 1 0 -7,0 c 0,3.9663 -3.1274,7.125 -7.0938,7.125 -3.9663,0 -7.125,-3.1587 -7.125,-7.125 0,-3.9664 3.1587,-7.0938 7.125,-7.0938 h 0.2813 a 3.5035,3.5035 0 1 0 0.3125,-7 c -0.1998,-0.01 -0.3938,0 -0.5938,0 z"
- id="path5547" />
- <circle
- r="54.285713"
- cy="-220.49496"
- cx="461.42856"
- transform="translate(1979.8,863.15)"
- style="fill:#b3b3b3"
- id="path5549" />
- <circle
- r="54.285713"
- cy="-220.49496"
- cx="461.42856"
- transform="matrix(0.78601,0,0,0.78601,2078.5,815.96)"
- style="fill:#808080"
- id="path5551" />
- <path
- d="m 2434.9,600.96 c -20.3,3.0394 -35.875,20.541 -35.875,41.688 0,21.147 15.575,38.679 35.875,41.719 v -83.406 z m 12.625,0.031 v 83.344 c 20.284,-3.0534 35.844,-20.552 35.844,-41.688 0,-21.135 -15.56,-38.603 -35.844,-41.656 z"
- inkscape:connector-curvature="0"
- style="fill:#cccccc"
- id="path5553" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#cc9168"
- sodipodi:nodetypes="cccccscccsc"
- d="m 1978.1,1124 c -1.0098,0.01 -2.0071,0.4765 -2.6563,1.25 l -75.719,87.844 c -0.1719,0.2111 -0.3191,0.4423 -0.4375,0.6875 l -34.121,26.143 c -0.8508,1.6281 -0.1436,3.8835 1.4844,4.7344 1.6281,0.8508 3.8836,0.1437 4.7344,-1.4844 l 33.902,-25.768 75.469,-87.594 c 0.8866,-1.0076 1.1136,-2.5465 0.5558,-3.7671 -0.5578,-1.2207 -1.87,-2.0563 -3.212,-2.0454 z"
- id="path5555" />
- <circle
- r="54.285713"
- cy="-220.49496"
- cx="461.42856"
- transform="rotate(180,1147.25,526.05)"
- style="fill:#c5c5bf"
- id="path5557" />
- <circle
- r="54.285713"
- cy="-220.49496"
- cx="461.42856"
- transform="matrix(-0.78601,0,0,-0.78601,2195.8,1099.2)"
- style="fill:#808080"
- id="path5559" />
- <path
- d="m 1839.4,1314.3 c 20.3,-3.0393 35.875,-20.541 35.875,-41.688 0,-21.147 -15.575,-38.679 -35.875,-41.719 v 83.406 z m -12.625,-0.031 v -83.344 c -20.284,3.0534 -35.844,20.552 -35.844,41.688 0,21.135 15.56,38.603 35.844,41.656 z"
- inkscape:connector-curvature="0"
- style="fill:#cccccc"
- id="path5561" />
- </g>
- <g
- id="g21670"
- transform="matrix(18.912567,0,0,18.912567,-81.555744,1119.9665)"
- inkscape:label="HMI:Meter@/PUMP0/SLOTH">
- <path
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.38814712;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="path21666"
- sodipodi:type="arc"
- sodipodi:cx="124.32036"
- sodipodi:cy="-2.4254472"
- sodipodi:rx="54.660004"
- sodipodi:ry="54.024006"
- sodipodi:start="3.1424064"
- sodipodi:end="4.7101543"
- d="M 69.660373,-2.4694091 A 54.660004,54.024006 0 0 1 124.19821,-56.449318"
- sodipodi:open="true"
- inkscape:label="range" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.92543143;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-start:url(#marker21674);marker-end:url(#marker22799)"
- d="M 123.16695,-3.4226979 70.419817,-10.83537"
- id="path21668"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc"
- inkscape:label="needle" />
- </g>
- <g
- id="g29186">
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2378.5,363.18 2.4664,1.2855 71.607,37.323 2.4387,1.2711 2.4386,-1.2711 71.607,-37.323 2.4664,-1.2855 -2.4387,-1.2711 -71.607,-37.323 -2.4663,-1.2855 -2.4664,1.2855 -71.607,37.323 z m 9.81,0 66.702,-34.766 66.73,34.78 -66.702,34.766 z"
- id="path5567" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2441.6,345.71 -2.2813,1.375 -11.406,6.9688 -0.7188,0.4375 v 0.8437 4.4688 h 3 v -3.625 l 8.4063,-5.125 v 9.5312 l -3.5938,3.8125 -0.9375,1.0313 0.9375,1.0312 3.5938,3.8125 v 9.5313 l -8.4063,-5.125 v -3.625 h -3 v 4.4687 0.8438 l 0.7188,0.4375 11.406,6.9687 2.2813,1.375 v -2.6562 -12.812 -0.5938 l -0.4063,-0.4375 -3.0312,-3.2187 3.0312,-3.25 0.4063,-0.4375 v -0.5938 -12.781 -2.6563 z"
- id="path5569" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2448,339.42 v 48.594 h 3 V 339.42 Z m 11.062,0 v 48.594 h 3 V 339.42 Z"
- id="path5571" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2459.1,351.33 -11.062,24.469 2.7187,1.2187 11.094,-24.469 -2.75,-1.2188 z"
- id="path5573" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2467.6,342.36 v 2.625 37.5 h 3 v -34.906 l 8,4.5938 v 22.969 h 3 v -23.812 -0.875 l -0.75,-0.4375 -11,-6.3437 -2.25,-1.3125 z"
- id="path5575" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2457.8,434.39 c -4.2082,0 -7.5312,3.6568 -7.5312,8 a 1.5002,1.5002 0 1 0 3,0 c 0,-2.8367 2.068,-5 4.5312,-5 2.4633,0 4.5313,2.1633 4.5313,5 0,1.0173 -0.081,1.842 -0.5,2.6563 -0.4189,0.8142 -1.2183,1.7195 -2.9688,2.7187 -4.2189,2.4083 -8.2687,7.1391 -8.9375,14.062 a 1.5002,1.5002 0 0 0 1.5,1.625 h 12.281 a 1.5002,1.5002 0 1 0 0,-3 H 2453.3 c 1.0027,-4.9299 3.9358,-8.3089 7.0625,-10.094 2.1001,-1.1988 3.4255,-2.517 4.1563,-3.9375 0.7308,-1.4205 0.8125,-2.8442 0.8125,-4.0313 0,-4.3432 -3.3231,-8 -7.5313,-8 z"
- id="path5577" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2403.5,434.42 a 1.5002,1.5002 0 0 0 -0.9375,0.5 l -4.2813,5 a 1.5067,1.5067 0 0 0 2.2813,1.9687 l 1.625,-1.9062 v 21.969 a 1.5002,1.5002 0 1 0 3,0 v -26.031 a 1.5002,1.5002 0 0 0 -1.6875,-1.5 z"
- id="path5579" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2477.6,434.42 a 1.5002,1.5002 0 0 0 -1.2188,1.5 v 11.156 a 1.5002,1.5002 0 0 0 2.7813,0.8125 c 0.8305,-1.2895 3.2566,-2.2812 5.375,-2.2812 3.1378,0 5.625,2.446 5.625,5.5625 v 3.7187 c 0,3.1165 -2.4872,5.5625 -5.625,5.5625 -2.1156,0 -4.4635,-1.271 -5.3438,-2.8125 a 1.5002,1.5002 0 1 0 -2.5937,1.5 c 1.5623,2.7359 4.7405,4.3125 7.9375,4.3125 4.7417,0 8.625,-3.8296 8.625,-8.5625 v -3.7187 c 0,-4.7329 -3.8833,-8.5625 -8.625,-8.5625 -1.7417,0 -3.5689,0.4289 -5.1563,1.2812 v -6.4687 h 10.562 a 1.5002,1.5002 0 1 0 0,-3 h -12.062 a 1.5002,1.5002 0 0 0 -0.2812,0 z"
- id="path5581" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2516,434.42 a 1.5002,1.5002 0 0 0 -1.0625,0.625 l -12.656,18.5 a 1.5002,1.5002 0 0 0 1.2187,2.3437 h 11.188 v 6.0625 a 1.5002,1.5002 0 1 0 3,0 v -6.0625 h 0.5313 a 1.5002,1.5002 0 1 0 0,-3 h -0.5313 v -16.969 a 1.5002,1.5002 0 0 0 -1.6875,-1.5 z m -1.3125,6.3125 v 12.156 h -8.3125 z"
- id="path5583" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2373.5,434.42 a 1.5002,1.5002 0 0 0 -1.1875,1.5 v 11.156 a 1.5002,1.5002 0 0 0 2.75,0.8125 c 0.8305,-1.2895 3.2879,-2.2812 5.4063,-2.2812 3.1378,0 5.5937,2.446 5.5937,5.5625 v 3.7187 c 0,3.1165 -2.4559,5.5625 -5.5937,5.5625 -2.1156,0 -4.4948,-1.271 -5.375,-2.8125 a 1.5002,1.5002 0 1 0 -2.5938,1.5 c 1.5624,2.7359 4.7718,4.3125 7.9688,4.3125 4.7417,0 8.5937,-3.8296 8.5937,-8.5625 v -3.7187 c 0,-4.7329 -3.852,-8.5625 -8.5937,-8.5625 -1.7311,0 -3.5751,0.4086 -5.1563,1.25 v -6.4375 h 10.562 a 1.5002,1.5002 0 1 0 0,-3 h -12.062 a 1.5002,1.5002 0 0 0 -0.3125,0 z"
- id="path5585" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2429.5,434.42 a 1.5002,1.5002 0 0 0 -0.9375,0.5 l -4.2812,5 a 1.5067,1.5067 0 1 0 2.2812,1.9687 l 1.625,-1.9062 v 21.969 a 1.5002,1.5002 0 1 0 3,0 v -26.031 a 1.5002,1.5002 0 0 0 -1.6875,-1.5 z"
- id="path5587" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2412.3,490.67 a 1.5002,1.5002 0 0 0 -1.1875,0.625 l -4.4688,6.0625 a 1.5002,1.5002 0 1 0 2.4063,1.7812 l 1.7812,-2.4062 v 21.5 a 1.5002,1.5002 0 1 0 3,0 v -26.062 a 1.5002,1.5002 0 0 0 -1.5312,-1.5 z"
- id="path5589" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2450,501.82 c -4.9217,0 -8.9329,4.0208 -8.9329,8.9543 0,4.9335 4.0112,8.9543 8.9329,8.9543 4.9217,0 8.9329,-4.0208 8.9329,-8.9543 0,-4.9335 -4.0112,-8.9543 -8.9329,-8.9543 z m 0,3.0115 c 3.3023,0 5.9285,2.6326 5.9285,5.9428 0,3.3103 -2.6262,5.983 -5.9285,5.983 -3.3023,0 -5.9285,-2.6727 -5.9285,-5.983 0,-3.3102 2.6262,-5.9428 5.9285,-5.9428 z"
- id="path5591" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2450,490.67 c -4.9246,0 -8.9375,4.0381 -8.9375,8.9687 v 11.125 a 1.5002,1.5002 0 1 0 3,0 v -11.125 c 0,-3.3131 2.6382,-5.9687 5.9375,-5.9687 2.3902,0 4.5664,1.4467 5.5,3.6562 a 1.5002,1.5002 0 1 0 2.75,-1.1875 c -1.3985,-3.3097 -4.6605,-5.4687 -8.25,-5.4687 z"
- id="path5593" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2427.1,508.61 c 4.9217,0 8.9329,-4.0208 8.9329,-8.9543 0,-4.9335 -4.0112,-8.9544 -8.9329,-8.9544 -4.9217,0 -8.9329,4.0209 -8.9329,8.9544 0,4.9335 4.0112,8.9543 8.9329,8.9543 z m 0,-3.0115 c -3.3023,0 -5.9285,-2.6326 -5.9285,-5.9428 0,-3.3103 2.6262,-5.983 5.9285,-5.983 3.3023,0 5.9285,2.6727 5.9285,5.983 0,3.3102 -2.6262,5.9428 -5.9285,5.9428 z"
- id="path5595" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2434.6,498.11 a 1.5002,1.5002 0 0 0 -1.5,1.5312 v 11.125 c 0,3.3132 -2.6381,5.9688 -5.9375,5.9688 -2.3902,0 -4.5351,-1.4155 -5.4688,-3.625 a 1.506,1.506 0 1 0 -2.7812,1.1562 c 1.3986,3.3097 4.6606,5.4688 8.25,5.4688 4.9246,0 8.9375,-4.0382 8.9375,-8.9688 v -11.125 a 1.5002,1.5002 0 0 0 -1.5,-1.5312 z"
- id="path5597" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2465.8,490.49 a 1.5002,1.5002 0 0 0 -1.375,1.5 v 11.156 a 1.5002,1.5002 0 0 0 2.7813,0.8125 c 0.8305,-1.2895 3.2566,-2.2812 5.375,-2.2812 3.1378,0 5.625,2.4772 5.625,5.5937 v 3.6875 c 0,3.1165 -2.4872,5.5938 -5.625,5.5938 -2.1156,0 -4.4635,-1.3023 -5.3438,-2.8438 a 1.5002,1.5002 0 1 0 -2.5937,1.5 c 1.5623,2.7359 4.7405,4.3438 7.9375,4.3438 4.7417,0 8.625,-3.8609 8.625,-8.5938 v -3.6875 c 0,-4.7328 -3.8833,-8.5937 -8.625,-8.5937 -1.7417,0 -3.5689,0.4289 -5.1563,1.2812 v -6.4687 h 10.562 a 1.5002,1.5002 0 1 0 0,-3 h -12.062 a 1.5002,1.5002 0 0 0 -0.125,0 z"
- id="path5599" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2497.9,494.74 a 1.5002,1.5002 0 0 0 -1.3437,1.5 v 18.562 a 1.5002,1.5002 0 1 0 3,0 V 497.74 h 7.7812 a 1.5002,1.5002 0 1 0 0,-3 h -9.2812 a 1.5002,1.5002 0 0 0 -0.1563,0 z"
- id="path5601" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2315.9,-15.107 a 1.5081161,1.5081161 0 1 0 0.3125,3 h 20.469 a 1.5002,1.5002 0 1 0 0,-3 h -20.469 a 1.5002,1.5002 0 0 0 -0.3125,0 z"
- id="path5603" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2326.4,-15.294 a 2.5002,2.5002 0 0 0 -2.4687,2.5313 v 36.125 a 2.5002,2.5002 0 1 0 5,0 v -36.125 A 2.5002,2.5002 0 0 0 2326.4,-15.294 Z"
- id="path5605" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2346.2,-15.107 a 1.5066,1.5066 0 0 0 0.2813,3 h 20.5 a 1.5002,1.5002 0 1 0 0,-3 h -20.5 a 1.5002,1.5002 0 0 0 -0.2813,0 z"
- id="path5607" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2356.7,-15.294 a 2.5002,2.5002 0 0 0 -2.4687,2.5313 v 36.125 a 2.5002,2.5002 0 1 0 5,0 v -36.125 A 2.5002,2.5002 0 0 0 2356.7,-15.294 Z"
- id="path5609" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2384.4,-22.33 c -4.0185,0 -7.3125,3.2939 -7.3125,7.3125 0,4.0185 3.294,7.3125 7.3125,7.3125 4.0185,0 7.3125,-3.294 7.3125,-7.3125 0,-4.0186 -3.294,-7.3125 -7.3125,-7.3125 z m 0,3 c 2.3972,0 4.3125,1.9152 4.3125,4.3125 0,2.3972 -1.9153,4.3125 -4.3125,4.3125 -2.3972,0 -4.3125,-1.9153 -4.3125,-4.3125 0,-2.3973 1.9153,-4.3125 4.3125,-4.3125 z"
- id="path5611" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2384.4,-10.587 c -4.0185,0 -7.3125,3.2939 -7.3125,7.3125 0,4.0185 3.294,7.3125 7.3125,7.3125 4.0185,0 7.3125,-3.294 7.3125,-7.3125 0,-4.0186 -3.294,-7.3125 -7.3125,-7.3125 z m 0,3 c 2.3972,0 4.3125,1.9153 4.3125,4.3125 0,2.3972 -1.9153,4.3125 -4.3125,4.3125 -2.3972,0 -4.3125,-1.9153 -4.3125,-4.3125 0,-2.3972 1.9153,-4.3125 4.3125,-4.3125 z"
- id="path5613" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2402.6,-22.825 c -4.0276,0 -7.3125,3.2848 -7.3125,7.3125 v 11.719 c 0,4.0276 3.2849,7.3438 7.3125,7.3438 4.0277,0 7.3125,-3.3162 7.3125,-7.3438 v -11.719 c 0,-4.0277 -3.2848,-7.3125 -7.3125,-7.3125 z m 0,3 c 2.4176,0 4.3125,1.8949 4.3125,4.3125 v 11.719 c 0,2.4175 -1.8949,4.3438 -4.3125,4.3438 -2.4175,0 -4.3125,-1.9263 -4.3125,-4.3438 v -11.719 c 0,-2.4176 1.895,-4.3125 4.3125,-4.3125 z"
- id="path5615" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2420.7,-22.825 c -4.0276,0 -7.3125,3.2848 -7.3125,7.3125 v 11.719 c 0,4.0276 3.2849,7.3438 7.3125,7.3438 4.0277,0 7.3125,-3.3162 7.3125,-7.3438 v -11.719 c 0,-4.0277 -3.2848,-7.3125 -7.3125,-7.3125 z m 0,3 c 2.4176,0 4.3125,1.8949 4.3125,4.3125 v 11.719 c 0,2.4175 -1.8949,4.3438 -4.3125,4.3438 -2.4175,0 -4.3125,-1.9263 -4.3125,-4.3438 v -11.719 c 0,-2.4176 1.895,-4.3125 4.3125,-4.3125 z"
- id="path5617" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2376.6,8.3623 a 1.5020318,1.5020318 0 1 0 0.1562,3 h 52.25 a 1.5002,1.5002 0 1 0 0,-3 h -52.25 a 1.5002,1.5002 0 0 0 -0.1562,0 z"
- id="path5619" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 2397.8,13.925 a 1.5002,1.5002 0 0 0 -1.3438,1.5 v 10.281 a 1.5002,1.5002 0 0 0 1.5,1.5 h 6.2188 c 2.3448,0 4.3125,2.145 4.3125,4.5625 0,2.4175 -1.895,4.3125 -4.3125,4.3125 h -6.4375 a 1.5002,1.5002 0 1 0 0,3 h 6.4375 c 4.0276,0 7.3125,-3.2849 7.3125,-7.3125 0,-4.0276 -3.2122,-7.5625 -7.3125,-7.5625 h -4.7188 v -7.2812 h 10.188 a 1.5002,1.5002 0 1 0 0,-3 h -11.688 a 1.5002,1.5002 0 0 0 -0.1562,0 z"
- id="path5621" />
- <path
- d="m 1156,-131.14 c -65.98,0 -119.09,53.114 -119.09,119.09 v 1374.5 c 0,65.979 53.114,119.09 119.09,119.09 h 665.31 c 29.008,0 39.174,-3.9241 56.5,-21.25 l 746.03,-746.03 c 23.302,-23.302 25.781,-31.589 25.781,-62.469 v -663.88 c 0,-65.979 -53.114,-119.09 -119.09,-119.09 z"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient7109)"
- sodipodi:nodetypes="sssssssssss"
- id="path5623" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#ffffff"
- d="m 1978.3,1141.4 c 7.7494,0 14.125,-6.3443 14.125,-14.094 0,-7.7494 -6.3756,-14.125 -14.125,-14.125 -7.7494,0 -14.094,6.3756 -14.094,14.125 a 3.5004,3.5004 0 1 0 7,0 c 0,-3.9663 3.1275,-7.125 7.0938,-7.125 3.9663,0 7.125,3.1587 7.125,7.125 0,3.9663 -3.1587,7.0937 -7.125,7.0937 h -0.2813 a 3.5035,3.5035 0 1 0 -0.3125,7 c 0.1999,0.01 0.3938,0 0.5938,0 z"
- id="path5625" />
- <rect
- x="2425.5"
- y="1014.8"
- width="294.29001"
- height="45"
- ry="22.5"
- rx="22.5"
- style="fill:#333333"
- id="rect5629" />
- <path
- d="m 2430.3,1122.6 c -65.126,0 -119.22,47.238 -129.91,109.31 h -70.969 c -12.465,0 -22.5,10.035 -22.5,22.5 0,12.465 10.035,22.5 22.5,22.5 h 70.969 c 10.674,62.089 64.77,109.34 129.91,109.34 65.138,0 119.23,-47.252 129.91,-109.34 h 137.06 c 12.465,0 22.5,-10.035 22.5,-22.5 0,-12.465 -10.035,-22.5 -22.5,-22.5 h -137.06 c -10.694,-62.106 -64.814,-109.31 -129.91,-109.31 z"
- inkscape:connector-curvature="0"
- style="fill:#333333"
- id="path5631" />
- <path
- sodipodi:start="0"
- sodipodi:end="6.2776887"
- sodipodi:cx="2430.3047"
- sodipodi:cy="1254.4414"
- sodipodi:open="true"
- d="m 2519.1982,1254.4414 a 88.893486,88.893486 0 0 1 -88.7714,88.8934 88.893486,88.893486 0 0 1 -89.0153,-88.6491 88.893486,88.893486 0 0 1 88.5267,-89.137 88.893486,88.893486 0 0 1 89.2586,88.4041"
- sodipodi:type="arc"
- style="fill:#000000;stroke-width:0.67433"
- sodipodi:ry="88.893486"
- sodipodi:rx="88.893486"
- id="path5633" />
- <path
- d="m 2430.3,1175.6 c -43.516,0 -78.781,35.266 -78.781,78.781 0,7.6897 1.1023,15.13 3.1563,22.156 l 145.66,-58.188 c -13.09,-25.386 -39.524,-42.75 -70.031,-42.75 z m 75.625,56.656 -145.69,58.188 c 13.086,25.38 39.541,42.75 70.062,42.75 43.516,0 78.781,-35.297 78.781,-78.812 v -0.4063 c -0.041,-7.535 -1.1424,-14.828 -3.1562,-21.719 z"
- inkscape:connector-curvature="0"
- style="fill:#333333"
- id="path5635" />
- <rect
- x="2009.8"
- y="1431.9"
- width="710"
- height="45"
- ry="22.5"
- rx="22.5"
- style="fill:#333333"
- id="rect5637" />
- </g>
- <g
- id="g29149">
- <rect
- x="-1430.8"
- y="-352.34"
- width="2055.1001"
- height="2055.1001"
- ry="129.3"
- rx="129.3"
- style="fill:#000000"
- id="rect3007" />
- <rect
- x="-1384.5"
- y="-305.98001"
- width="1962.4"
- height="1962.4"
- ry="90.727997"
- rx="90.727997"
- style="fill:#333333"
- id="rect3777" />
- <rect
- x="-1358.2"
- y="-279.72"
- width="1909.9"
- height="1909.9"
- ry="70.525002"
- rx="70.525002"
- style="fill:#000000"
- id="rect3779" />
- <rect
- x="375.37"
- y="802.65002"
- width="97.857002"
- height="45"
- ry="22.5"
- rx="22.5"
- style="fill:#333333"
- id="rect3788" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#333333"
- sodipodi:nodetypes="sssssssssss"
- d="m -1106.1,-149.32 c -67.467,0 -121.78,54.312 -121.78,121.78 v 1405.5 c 0,67.467 54.312,121.78 121.78,121.78 h 680.32 c 29.662,0 47.115,-4.0297 64.849,-21.729 l 755.83,-754.34 c 23.851,-23.803 26.352,-40.896 26.352,-72.473 v -678.83 c 0,-67.467 -54.312,-121.78 -121.78,-121.78 z"
- id="path3796" />
- <path
- d="M -208.21,1279.8 230.36,851.23 h -444.29 z"
- inkscape:connector-curvature="0"
- style="fill:#000000"
- id="path5147" />
- <path
- d="m -41.063,1048.4 -48.571,-54.286 33.571,-33.571 54.286,54.286"
- inkscape:connector-curvature="0"
- style="fill:#e6e6e6"
- id="path4263" />
- <path
- d="m -131.78,1205.5 -37.143,-36.429 11.429,-12.857 30.714,6.4286 54.286,-54.286 c -6.7698,-14.828 -2.7537,-22.791 11.428,-24.286 -18.934,-68.674 49.856,-114.43 102.86,-90 l 60.714,-60 -12.143,-30 11.429,-10 41.428,35"
- inkscape:connector-curvature="0"
- style="fill:#cccccc"
- sodipodi:nodetypes="ccccccccccc"
- id="path4265" />
- <path
- d="m -1090.6,-131.14 c -65.98,0 -119.09,53.114 -119.09,119.09 v 1374.5 c 0,65.98 53.114,119.09 119.09,119.09 h 665.31 c 29.008,0 39.174,-3.9241 56.5,-21.25 l 746.08,-745.9 c 23.302,-23.302 25.781,-31.589 25.781,-62.469 v -663.88 c 0,-65.98 -53.114,-119.09 -119.09,-119.09 h -1374.5 z M 6.1,869.06 h 189.31 l -387.34,382.16 v -178.94 c 0,-107.21 90.807,-203.22 198.03,-203.22 z"
- inkscape:connector-curvature="0"
- style="fill:#e1e1d1"
- id="rect3781" />
- <path
- inkscape:connector-curvature="0"
- transform="matrix(1.037,0,0,1.037,-262.68,-1806.5)"
- style="opacity:0.85773998;fill:#000000;filter:url(#filter5708)"
- d="m -823.78,1579.8 c -65.979,0 -119.09,53.114 -119.09,119.09 v 1374.5 c 0,51.168 31.947,94.61 77.062,111.53 -1.8213,-8.3056 -2.7812,-16.944 -2.7812,-25.813 v -1374.5 c 0,-65.979 53.114,-119.09 119.09,-119.09 h 1374.5 c 14.812,0 28.972,2.6957 42.031,7.5938 -11.729,-53.488 -59.201,-93.312 -116.31,-93.312 h -1374.5 z"
- id="path5854" />
- <path
- d="m -897.19,202.71 -1.1875,-5.5312 -30.281,-141.12 h 13.687 l 27.813,126.53 33.875,-126.53 h 13.531 l -36.906,141.47 -1.4063,5.1875 h -5.375 -8.0625 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- sodipodi:nodetypes="cccccccccccc"
- id="path4143" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="1.2277805"
- inkscape:transform-center-x="1026.1266"
- d="m -1081.2,1066.7 a 3.5004,3.5004 0 0 0 1.0743,6.8659 l 119.98,-0.1356 a 3.5004,3.5004 0 1 0 -0.016,-6.9996 l -119.98,0.1356 a 3.5004,3.5004 0 0 0 -1.0582,0.1337 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path3927" />
- <path
- sodipodi:nodetypes="csccsccccssccscccs"
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-84.5624"
- inkscape:transform-center-x="999.99804"
- d="m -1076.7,973.88 c -1.7172,0.1873 -3.152,1.8167 -3.1203,3.5439 0.032,1.7271 1.5251,3.3029 3.248,3.4271 l 127.18,10.755 c 1.8326,0.1672 3.6502,-1.3563 3.8058,-3.1899 0.1556,-1.8336 -1.3794,-3.6416 -3.2139,-3.7856 l -127.18,-10.755 c -0.2391,-0.023 -0.4806,-0.022 -0.7194,0 z m 160,13.54 c -1.7213,-0.1455 -3.152,1.8167 -3.1203,3.5439 0.032,1.7271 1.5251,3.3029 3.248,3.4271 l 4.4928,0.3709 c 1.8325,0.1671 3.6502,-1.3564 3.8057,-3.1899 0.1556,-1.8336 -1.3794,-3.6416 -3.2139,-3.7856 l -4.4927,-0.3709 c -0.2391,-0.023 -0.4806,-0.022 -0.7194,0 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path3959" />
- <path
- d="m -516.79,412.2 c -15.018,0 -27.219,12.201 -27.219,27.219 v 40.406 c 0,15.018 12.201,27.25 27.219,27.25 15.018,0 27.25,-12.232 27.25,-27.25 v -40.406 c 0,-15.018 -12.232,-27.219 -27.25,-27.219 z m 0,8 c 10.725,0 19.25,8.4942 19.25,19.219 v 40.406 c 0,10.725 -8.5254,19.25 -19.25,19.25 -10.724,0 -19.219,-8.5254 -19.219,-19.25 v -40.406 c 0,-10.725 8.4942,-19.219 19.219,-19.219 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect4112" />
- <path
- d="m -444.57,412.2 c -15.018,0 -27.219,12.201 -27.219,27.219 v 40.406 c 0,15.018 12.201,27.25 27.219,27.25 15.018,0 27.25,-12.232 27.25,-27.25 v -40.406 c 0,-15.018 -12.232,-27.219 -27.25,-27.219 z m 0,8 c 10.724,0 19.25,8.4942 19.25,19.219 v 40.406 c 0,10.725 -8.5255,19.25 -19.25,19.25 -10.725,0 -19.219,-8.5254 -19.219,-19.25 v -40.406 c 0,-10.725 8.4942,-19.219 19.219,-19.219 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect4114" />
- <path
- d="m -689.77,649.6 c -15.018,0 -27.25,12.201 -27.25,27.219 v 40.406 c 0,15.018 12.232,27.25 27.25,27.25 15.018,0 27.219,-12.232 27.219,-27.25 v -40.406 c 0,-15.018 -12.201,-27.219 -27.219,-27.219 z m 0,8 c 10.725,0 19.219,8.4942 19.219,19.219 v 40.406 c 0,10.725 -8.4942,19.25 -19.219,19.25 -10.724,0 -19.25,-8.5254 -19.25,-19.25 v -40.406 c 0,-10.725 8.5255,-19.219 19.25,-19.219 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect4116" />
- <path
- d="m -617.55,649.6 c -15.018,0 -27.25,12.201 -27.25,27.219 v 40.406 c 0,15.018 12.232,27.25 27.25,27.25 15.018,0 27.219,-12.232 27.219,-27.25 v -40.406 c 0,-15.018 -12.201,-27.219 -27.219,-27.219 z m 0,8 c 10.724,0 19.219,8.4942 19.219,19.219 v 40.406 c 0,10.725 -8.4942,19.25 -19.219,19.25 -10.7248,0 -19.25,-8.5254 -19.25,-19.25 v -40.406 c 0,-10.725 8.5254,-19.219 19.25,-19.219 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect4118" />
- <path
- d="m -768.21,649.57 c -14.558,0 -26.594,11.436 -26.594,25.656 a 4.0004,4.0004 0 1 0 8,0 c 0,-9.7079 8.1783,-17.656 18.594,-17.656 10.415,0 18.625,7.9483 18.625,17.656 0,3.4188 -0.3012,6.2393 -1.9687,9.125 -1.6676,2.8857 -4.8983,6.1281 -11.656,9.5625 -15.36,7.8058 -30.328,23.228 -32.812,46.125 a 4.0004,4.0004 0 0 0 3.9688,4.4375 h 45.969 a 4.0004,4.0004 0 1 0 0,-8 h -41.219 c 3.4595,-17.376 15.261,-29.122 27.688,-35.438 7.6555,-3.8905 12.332,-8.1255 14.969,-12.688 2.6363,-4.5619 3.0625,-9.1977 3.0625,-13.125 0,-14.22 -12.067,-25.656 -26.625,-25.656 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4122" />
- <path
- d="m -8.1876,197.04 c -15.018,0 -27.219,12.201 -27.219,27.219 v 40.406 c 0,15.018 12.201,27.25 27.219,27.25 15.018,0 27.25,-12.232 27.25,-27.25 v -40.406 c 0,-15.018 -12.232,-27.219 -27.25,-27.219 z m 0,8 c 10.725,0 19.25,8.4942 19.25,19.219 v 40.406 c 0,10.725 -8.5254,19.25 -19.25,19.25 -10.724,0 -19.219,-8.5254 -19.219,-19.25 v -40.406 c 0,-10.725 8.4942,-19.219 19.219,-19.219 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect4130" />
- <path
- d="m -102.13,197.01 a 4.0004,4.0004 0 0 0 -4,4 v 37.25 a 4.0004,4.0004 0 0 0 7.375,2.125 c 2.9991,-4.7533 11.204,-8.0625 18.344,-8.0625 10.688,0 19.25,8.648 19.25,19.625 v 12.344 c 0,10.977 -8.5616,19.625 -19.25,19.625 -7.2063,0 -15.115,-4.3265 -18.219,-9.875 a 4.0081,4.0081 0 1 0 -7,3.9063 c 4.8761,8.7154 15.069,13.969 25.219,13.969 15.054,0 27.25,-12.426 27.25,-27.625 v -12.344 c 0,-15.2 -12.196,-27.625 -27.25,-27.625 -5.9927,0 -12.456,1.4611 -17.719,4.6875 v -24 h 35.406 a 4.0004,4.0004 0 1 0 0,-8 h -39.406 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4132" />
- <path
- d="m -984.92,1208.6 a 2.5002,2.5002 0 0 0 -1.8125,0.8437 l -7.8125,8.9063 a 2.5018,2.5018 0 1 0 3.75,3.3125 l 3.4375,-3.9063 v 39.781 a 2.5002,2.5002 0 1 0 5,0 v -46.438 a 2.5002,2.5002 0 0 0 -2.5625,-2.5 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4159" />
- <path
- d="m -963.1,1208.6 a 2.5002,2.5002 0 0 0 -2.25,2.5 v 19.906 a 2.5002,2.5002 0 0 0 4.625,1.3125 c 1.5017,-2.3801 5.7817,-4.125 9.5,-4.125 5.5171,0 9.9062,4.4472 9.9062,10.125 v 6.5938 c 0,5.6778 -4.3891,10.125 -9.9062,10.125 -3.7197,0 -7.858,-2.2704 -9.4375,-5.0938 a 2.5041,2.5041 0 1 0 -4.375,2.4375 c 2.6869,4.8027 8.253,7.6563 13.812,7.6563 8.2458,0 14.906,-6.8081 14.906,-15.125 v -6.5938 c 0,-8.3168 -6.6604,-15.125 -14.906,-15.125 -3.0809,0 -6.3424,0.7823 -9.125,2.3438 v -11.938 h 18.562 a 2.5002,2.5002 0 1 0 0,-5 h -21.062 a 2.5002,2.5002 0 0 0 -0.25,0 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4161" />
- <path
- d="m -972.35,1253.6 c -2.2316,0 -4.0625,1.8309 -4.0625,4.0625 0,1.973 1.4112,3.5833 3.2812,3.9375 -0.352,1.6422 -0.8243,3.5675 -1.625,6.4062 3.379,-3.3496 5.078,-6.1447 6.0625,-8.6875 0.013,-0.033 0.05,-0.061 0.062,-0.094 v -0.031 c 0.1971,-0.4759 0.3125,-0.984 0.3125,-1.5312 0,-2.2316 -1.7996,-4.0625 -4.0312,-4.0625 z"
- inkscape:connector-curvature="0"
- style="fill:#000000"
- id="path4165" />
- <path
- d="m -1077.3,1219.9 c -5.4507,0.026 -10.966,1.9221 -16,6.6563 a 2.5092,2.5092 0 1 0 3.4375,3.6562 c 5.6657,-5.3285 10.954,-6.1333 16.938,-4.875 5.9835,1.2583 12.504,4.8899 19.125,8.7188 6.6209,3.8289 13.346,7.8504 20.312,9.5312 6.9668,1.6809 14.393,0.7108 20.875,-5.2812 a 2.51,2.51 0 1 0 -3.4062,-3.6875 c -5.3695,4.9636 -10.436,5.5429 -16.312,4.125 -5.8769,-1.4179 -12.328,-5.1595 -18.969,-9 -6.6411,-3.8406 -13.471,-7.7833 -20.594,-9.2813 -1.7808,-0.3745 -3.5894,-0.5713 -5.4063,-0.5625 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4170" />
- <path
- d="m -852.33,1185.2 c -1.653,0 -3.0458,1.0383 -3.5937,2.5 l -34.656,12.281 v -9.2812 a 2.5002,2.5002 0 0 0 -2.5312,-2.5313 2.5002,2.5002 0 0 0 -2.4688,2.5313 v 11.062 l -11.219,3.9687 a 2.5002,2.5002 0 0 0 0,4.7188 l 11.219,3.9375 v 5.1562 l -11.219,3.9688 a 2.5002,2.5002 0 0 0 0,4.7187 l 11.219,3.9688 v 5.125 l -11.219,3.9687 a 2.5002,2.5002 0 0 0 0,4.7188 l 50.875,18.031 c 0.5479,1.4617 1.9407,2.5313 3.5937,2.5313 2.1292,0 3.8438,-1.7459 3.8438,-3.875 0,-2.1292 -1.7146,-3.8438 -3.8438,-3.8438 -0.698,0 -1.3415,0.2068 -1.9062,0.5313 l -36.344,-12.906 a 2.5002,2.5002 0 0 0 0,-0.1875 v -5.4062 l 10.562,-3.75 a 2.5002,2.5002 0 0 0 0,-4.7188 l -10.562,-3.75 v -5.625 l 10.562,-3.75 a 2.5002,2.5002 0 0 0 0,-4.6875 l -10.562,-3.75 v -5.5937 l 36.344,-12.875 c 0.5647,0.3244 1.2082,0.5312 1.9062,0.5312 2.1292,0 3.8438,-1.7458 3.8438,-3.875 0,-2.1291 -1.7146,-3.8437 -3.8438,-3.8437 z m -43.25,21.844 v 2.0625 l -2.9062,-1.0312 z m 5,9.0938 2.2813,0.8125 -2.2813,0.8125 z m -5,8.6875 v 2.0625 l -2.9062,-1.0313 z m 5,9.1562 2.25,0.7813 -2.25,0.7812 z m -5,8.6563 v 2.0625 l -2.9062,-1.0313 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4172" />
- <path
- d="m -788.35,1184.2 a 2.5002,2.5002 0 0 0 -1.7841,1.1002 l -14.719,21.974 -25.423,7.2255 a 2.5002,2.5002 0 0 0 -1.2786,3.9547 l 16.354,20.784 -0.9515,26.434 a 2.5002,2.5002 0 0 0 3.36,2.4085 l 24.799,-9.0988 24.828,9.069 a 2.5002,2.5002 0 0 0 3.3601,-2.4382 l -1.011,-26.404 16.295,-20.814 a 2.5002,2.5002 0 0 0 -1.2786,-3.9547 l -25.423,-7.2255 -14.748,-21.914 a 2.5002,2.5002 0 0 0 -2.3788,-1.1002 z m 0.2973,6.9877 13.202,19.595 a 2.5002,2.5002 0 0 0 1.3976,1.011 l 22.717,6.4524 -14.57,18.584 a 2.5002,2.5002 0 0 0 -0.5353,1.6354 l 0.8921,23.609 -22.182,-8.0879 a 2.5002,2.5002 0 0 0 -1.7246,0 l -22.182,8.1473 0.8623,-23.639 a 2.5002,2.5002 0 0 0 -0.5352,-1.6354 l -14.57,-18.554 22.688,-6.4821 a 2.5002,2.5002 0 0 0 1.3975,-1.011 l 13.143,-19.625 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4195" />
- <path
- d="m -788.4,1216 c -4.8517,0 -8.8125,3.9608 -8.8125,8.8125 a 2.1387,2.1387 0 1 0 4.25,0 c 0,-2.5403 2.0222,-4.5312 4.5625,-4.5312 2.5403,0 4.5625,1.9909 4.5625,4.5312 0,0.6956 -0.176,1.0804 -0.9062,1.9688 -0.7302,0.8884 -1.9841,2.0898 -3.4063,3.8125 l -9.3437,11.312 a 2.1387,2.1387 0 0 0 1.6562,3.5 h 15.406 a 2.14065,2.14065 0 0 0 0,-4.2813 h -10.875 l 6.4375,-7.8125 c 1.2474,-1.511 2.4036,-2.5926 3.4062,-3.8125 1.0026,-1.2198 1.9063,-2.8108 1.9063,-4.6875 0,-4.8517 -3.992,-8.8125 -8.8438,-8.8125 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4201" />
- <path
- d="m -719.32,1204.4 a 2.5002,2.5002 0 0 0 -2.25,2.5 v 39.656 a 2.5002,2.5002 0 0 0 2.75,2.5 h 0.031 8.5625 c 7.6375,0 13.844,-6.2375 13.844,-13.875 0,-7.6376 -6.2062,-13.844 -13.844,-13.844 h -6.3438 v -11.938 h 14.156 a 2.5002,2.5002 0 1 0 0,-5 h -16.656 a 2.5002,2.5002 0 0 0 -0.25,0 z m 2.75,21.938 h 6.3437 c 4.954,0 8.8438,3.8897 8.8438,8.8438 0,4.954 -3.8898,8.875 -8.8438,8.875 h -6.3437 v -17.719 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4204" />
- <path
- d="m -667.07,1189.1 a 2.1387,2.1387 0 0 0 -2.125,2.1875 v 68.688 a 2.1406,2.1406 0 0 0 4.2812,0 v -68.688 A 2.1387,2.1387 0 0 0 -667.07,1189.1 Z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4213" />
- <path
- d="m -696.1,1257.9 a 2.503123,2.503123 0 1 0 0.25,5 h 57.594 a 2.5002,2.5002 0 1 0 0,-5 h -57.594 a 2.5002,2.5002 0 0 0 -0.25,0 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4215" />
- <path
- d="m -997.61,1301.5 a 2.7908,2.7908 0 0 0 -2.5192,2.7905 v 33.331 a 2.7908,2.7908 0 1 0 5.5809,0 v -30.54 h 10.387 a 2.7908,2.7908 0 1 0 0,-5.581 h -13.177 a 2.7908,2.7908 0 0 0 -0.2713,0 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4217" />
- <path
- d="m -967.11,1301.5 c -7.3104,0 -13.294,5.9832 -13.294,13.294 v 12.363 c 0,7.3104 5.9832,13.255 13.294,13.255 7.3104,0 13.294,-5.9445 13.294,-13.255 v -12.363 c 0,-7.3104 -5.9832,-13.294 -13.294,-13.294 z m 0,5.581 c 4.3151,0 7.7126,3.3975 7.7126,7.7126 v 12.363 c 0,4.3151 -3.3975,7.6739 -7.7126,7.6739 -4.315,0 -7.7126,-3.3588 -7.7126,-7.6739 v -12.363 c 0,-4.3151 3.3976,-7.7126 7.7126,-7.7126 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect4219" />
- <path
- d="m -939.56,1301.5 c -7.3103,0 -13.294,5.9832 -13.294,13.294 v 12.363 c 0,7.3104 5.9833,13.255 13.294,13.255 6.1555,0 11.384,-4.1964 12.867,-9.9218 a 2.7908,2.7908 0 1 0 -5.3872,-1.3952 c -0.8578,3.3113 -3.8467,5.736 -7.4801,5.736 -4.315,0 -7.7126,-3.3588 -7.7126,-7.6739 v -12.363 c 0,-4.3151 3.3976,-7.7126 7.7126,-7.7126 3.63,0 6.5804,2.4293 7.4414,5.736 a 2.8012164,2.8012164 0 1 0 5.4259,-1.3953 c -1.4886,-5.7173 -6.7175,-9.9217 -12.867,-9.9217 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect4221" />
- <path
- d="m -913.39,1301.5 a 2.7908,2.7908 0 0 0 -2.4804,2.8293 v 33.331 a 2.7908,2.7908 0 1 0 5.581,0 v -33.331 A 2.7908,2.7908 0 0 0 -913.39,1301.5 Z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4224" />
- <path
- d="m -921.92,1301.5 a 2.7938,2.7938 0 1 0 0.2713,5.581 h 17.131 a 2.7908,2.7908 0 1 0 0,-5.581 h -17.131 a 2.7908,2.7908 0 0 0 -0.2713,0 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4226" />
- <path
- d="m -871.11,1301.5 c -5.4866,0 -9.9993,4.5127 -9.9993,9.9993 0,5.4866 4.5127,9.9993 9.9993,9.9993 5.4865,0 9.9992,-4.5127 9.9992,-9.9993 0,-5.4866 -4.5127,-9.9993 -9.9992,-9.9993 z m 0,5.581 c 2.4704,0 4.4183,1.9479 4.4183,4.4183 0,2.4704 -1.9479,4.4183 -4.4183,4.4183 -2.4704,0 -4.4183,-1.9479 -4.4183,-4.4183 0,-2.4704 1.9479,-4.4183 4.4183,-4.4183 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4232" />
- <path
- d="m -871.11,1315.8 c -6.7839,0 -12.335,5.5509 -12.335,12.335 0,6.7839 5.5509,12.335 12.335,12.335 6.7839,0 12.335,-5.5509 12.335,-12.335 0,-6.7839 -5.5509,-12.335 -12.335,-12.335 z m 0,5.5506 c 3.7677,0 6.7841,3.0165 6.7841,6.7842 0,3.7677 -3.0164,6.7841 -6.7841,6.7841 -3.7677,0 -6.7842,-3.0164 -6.7842,-6.7841 0,-3.7677 3.0165,-6.7842 6.7842,-6.7842 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4234" />
- <path
- d="m -853.24,1301.5 a 2.7948015,2.7948015 0 1 0 0.31,5.581 h 9.8055 c -4.1407,8.1507 -7.5055,18.252 -10.348,29.882 a 2.7918179,2.7918179 0 0 0 5.4259,1.3178 c 3.274,-13.394 7.1815,-24.728 11.898,-32.556 a 2.7908,2.7908 0 0 0 -2.403,-4.2245 h -14.379 a 2.7908,2.7908 0 0 0 -0.31,0 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4236" />
- <path
- d="m -817.47,1301.5 a 2.7908,2.7908 0 0 0 -2.1704,1.1239 l -5.8135,7.7514 a 2.7908,2.7908 0 1 0 4.457,3.3331 l 0.8139,-1.0852 v 24.998 a 2.7908,2.7908 0 1 0 5.581,0 v -33.331 a 2.7908,2.7908 0 0 0 -2.868,-2.7905 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4240" />
- <path
- d="m -797.9,1301.5 a 2.7908,2.7908 0 0 0 -2.1316,1.1239 l -5.8136,7.7514 a 2.7908,2.7908 0 1 0 4.4571,3.3331 l 0.7751,-1.0464 v 24.959 a 2.7908,2.7908 0 1 0 5.581,0 v -33.331 a 2.7908,2.7908 0 0 0 -2.868,-2.7905 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4250" />
- <path
- d="m -726.59,1301.5 c -7.3104,0 -13.294,5.9832 -13.294,13.294 v 12.363 c 0,7.3104 5.9832,13.255 13.294,13.255 7.3104,0 13.294,-5.9445 13.294,-13.255 v -12.363 c 0,-7.3104 -5.9832,-13.294 -13.294,-13.294 z m 0,5.581 c 4.3151,0 7.7127,3.3975 7.7127,7.7126 v 12.363 c 0,4.3151 -3.3976,7.6739 -7.7127,7.6739 -4.315,0 -7.7126,-3.3588 -7.7126,-7.6739 v -12.363 c 0,-4.3151 3.3976,-7.7126 7.7126,-7.7126 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect4252" />
- <path
- d="m -753.51,1315.8 c -6.7839,0 -12.335,5.5509 -12.335,12.335 0,6.7839 5.5509,12.335 12.335,12.335 6.7839,0 12.335,-5.5509 12.335,-12.335 0,-6.7839 -5.5509,-12.335 -12.335,-12.335 z m 0,5.5506 c 3.7677,0 6.7841,3.0165 6.7841,6.7842 0,3.7677 -3.0164,6.7841 -6.7841,6.7841 -3.7677,0 -6.7842,-3.0164 -6.7842,-6.7841 0,-3.7677 3.0165,-6.7842 6.7842,-6.7842 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4254" />
- <path
- d="m -753.52,1301.5 c -6.7839,0 -12.325,5.5408 -12.325,12.325 v 14.262 a 2.7908,2.7908 0 1 0 5.581,0 v -14.262 c 0,-3.7677 2.976,-6.7437 6.7437,-6.7437 2.7232,0 5.1777,1.6007 6.2399,4.1082 a 2.7965,2.7965 0 1 0 5.1546,-2.1704 c -1.9302,-4.5568 -6.4457,-7.5188 -11.394,-7.5188 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4258" />
- <path
- d="m -787.63,1317.3 a 2.7938,2.7938 0 1 0 0.2713,5.581 h 14.418 a 2.7908,2.7908 0 1 0 0,-5.581 h -14.418 a 2.7908,2.7908 0 0 0 -0.2713,0 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4261" />
- <path
- d="m 144.24,272.53 c -6.7856,0 -12.69,3.8407 -15.594,9.5 a 2.5002,2.5002 0 1 0 4.4375,2.2812 c 2.0712,-4.0371 6.2544,-6.7812 11.156,-6.7812 6.9827,0 12.531,5.5486 12.531,12.531 v 21.344 c 0,6.9826 -5.5486,12.531 -12.531,12.531 -4.4773,0 -8.3427,-2.2743 -10.562,-5.75 a 2.5010041,2.5010041 0 1 0 -4.2187,2.6875 c 3.1089,4.8679 8.5832,8.0625 14.781,8.0625 9.6662,0 17.531,-7.8651 17.531,-17.531 v -21.344 c 0,-9.6662 -7.8651,-17.531 -17.531,-17.531 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect4271" />
- <path
- d="m 221.24,272.53 c -9.6661,0 -17.5,7.865 -17.5,17.531 v 21.344 c 0,9.6661 7.8339,17.531 17.5,17.531 9.6662,0 17.531,-7.8651 17.531,-17.531 v -21.344 c 0,-9.6662 -7.8651,-17.531 -17.531,-17.531 z m 0,5 c 6.9827,0 12.531,5.5485 12.531,12.531 v 21.344 c 0,6.9826 -5.5486,12.531 -12.531,12.531 -6.9826,0 -12.5,-5.5486 -12.5,-12.531 v -21.344 c 0,-6.9827 5.5174,-12.531 12.5,-12.531 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect4273" />
- <path
- d="m 169.86,272.53 a 2.503123,2.503123 0 1 0 0.25,5 h 18.156 l -12.375,17.5 a 2.5002,2.5002 0 0 0 2.3437,3.9375 c 5.7215,-0.6862 9.0208,0.5421 11.188,2.4375 2.1668,1.8954 3.3312,4.7379 3.7813,7.7187 0.4713,3.1214 -0.2842,6.6267 -1.9063,9.4063 -1.622,2.7795 -4.0115,4.7449 -6.7187,5.25 -4.475,0.8347 -10.174,-1.6848 -12.25,-5.8438 a 2.5016331,2.5016331 0 1 0 -4.4688,2.25 c 3.2375,6.4873 10.824,9.7687 17.625,8.5 4.4334,-0.827 7.9333,-3.8692 10.125,-7.625 2.1918,-3.7558 3.1946,-8.2945 2.5313,-12.688 -0.5669,-3.7543 -2.0648,-7.7957 -5.4063,-10.719 -2.4107,-2.1089 -5.7373,-3.4771 -9.9062,-3.7813 l 12.312,-17.406 a 2.5002,2.5002 0 0 0 -2.0625,-3.9375 h -22.969 a 2.5002,2.5002 0 0 0 -0.25,0 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4275" />
- <path
- d="m 145.11,298.25 a 2.503123,2.503123 0 1 0 0.25,5 h 13.125 a 2.5002,2.5002 0 1 0 0,-5 H 145.36 a 2.5002,2.5002 0 0 0 -0.25,0 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4281" />
- <path
- d="m 147.41,654.11 a 3.5004,3.5004 0 0 0 -3,1.9063 l -22,41.875 -75.406,87.469 a 3.5014,3.5014 0 1 0 5.3125,4.5625 l 75.688,-87.844 a 3.5004,3.5004 0 0 0 0.4687,-0.6563 l 22.125,-42.156 a 3.5004,3.5004 0 0 0 -3.1875,-5.1563 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#cc9168"
- id="path4285" />
- <path
- d="m 49.41,773.83 c -7.7494,0 -14.125,6.3443 -14.125,14.094 0,7.7494 6.3756,14.125 14.125,14.125 7.7494,0 14.094,-6.3756 14.094,-14.125 a 3.5004,3.5004 0 1 0 -7,0 c 0,3.9663 -3.1274,7.125 -7.0938,7.125 -3.9663,0 -7.125,-3.1587 -7.125,-7.125 0,-3.9663 3.1587,-7.0937 7.125,-7.0937 h 0.2813 a 3.5035,3.5035 0 1 0 0.3125,-7 c -0.1998,-0.01 -0.3938,0 -0.5938,0 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#ffffff"
- id="path4287" />
- <circle
- r="54.285713"
- cy="642.65503"
- cx="194.64856"
- style="fill:#b3b3b3"
- id="path4283" />
- <circle
- r="42.669113"
- cy="642.64874"
- cx="194.65746"
- style="fill:#808080;stroke-width:0.78601003"
- id="path4294" />
- <path
- d="m 188.35,600.96 c -20.3,3.0393 -35.875,20.541 -35.875,41.688 0,21.147 15.575,38.679 35.875,41.719 v -83.406 z m 12.625,0.031 v 83.344 c 20.284,-3.0534 35.844,-20.552 35.844,-41.688 0,-21.135 -15.56,-38.603 -35.844,-41.656 z"
- inkscape:connector-curvature="0"
- style="fill:#cccccc"
- id="path4289" />
- <path
- d="m -268.5,1124 c -1.0098,0.01 -2.0071,0.4765 -2.6563,1.25 l -75.719,87.844 c -0.1719,0.2111 -0.3191,0.4424 -0.4375,0.6875 l -34.12,26.143 c -0.8509,1.628 -0.1437,3.8835 1.4843,4.7343 1.6281,0.8509 3.8836,0.1437 4.7344,-1.4843 l 33.902,-25.768 75.469,-87.594 c 0.8866,-1.0076 1.1136,-2.5465 0.5558,-3.7672 -0.5578,-1.2207 -1.87,-2.0562 -3.212,-2.0453 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#cc9168"
- sodipodi:nodetypes="cccccscccsc"
- id="path4296" />
- <circle
- r="54.285713"
- cy="-1272.595"
- cx="413.50156"
- transform="scale(-1)"
- style="fill:#c5c5bf"
- id="path4300-2" />
- <circle
- r="42.669113"
- cy="-1272.5112"
- cx="413.50345"
- transform="scale(-1)"
- style="fill:#808080;stroke-width:0.78601003"
- id="path4302" />
- <path
- inkscape:connector-curvature="0"
- style="fill:#cccccc"
- d="m -407.2,1314.3 c 20.3,-3.0394 35.875,-20.541 35.875,-41.688 0,-21.147 -15.575,-38.679 -35.875,-41.719 v 83.406 z m -12.625,-0.031 v -83.344 c -20.284,3.0534 -35.844,20.552 -35.844,41.688 0,21.135 15.56,38.603 35.844,41.656 z"
- id="path4304" />
- </g>
- <g
- inkscape:label="HMI:Meter@/PUMP0/SLOTH"
- transform="matrix(18.912567,0,0,18.912567,-2339.3501,1119.9665)"
- id="g19348">
- <path
- inkscape:label="range"
- sodipodi:open="true"
- d="M 69.660373,-2.4694091 A 54.660004,54.024006 0 0 1 124.19821,-56.449318"
- sodipodi:end="4.7101543"
- sodipodi:start="3.1424064"
- sodipodi:ry="54.024006"
- sodipodi:rx="54.660004"
- sodipodi:cy="-2.4254472"
- sodipodi:cx="124.32036"
- sodipodi:type="arc"
- id="path19332"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.38814712;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <path
- inkscape:label="needle"
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path19334"
- d="M 123.16695,-3.4226979 70.419817,-6.3833915"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.92543143;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:29.63333321;stroke-opacity:1;marker-start:url(#marker20566-2);marker-end:url(#marker23223)" />
- </g>
- <g
- id="g24628">
- <path
- d="m 111.68,388.94 2.4663,1.2855 71.607,37.323 2.4386,1.2711 2.4387,-1.2711 71.607,-37.323 2.4663,-1.2855 -2.4386,-1.271 -71.607,-37.323 -2.4664,-1.2855 -2.4663,1.2855 -71.607,37.323 z m 9.81,0 66.702,-34.766 66.73,34.78 -66.702,34.766 -66.73,-34.781 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect4358" />
- <path
- d="m 174.86,371.46 -2.2812,1.375 -11.406,6.9687 -0.7187,0.4375 v 0.8438 4.4687 h 3 v -3.625 l 8.4062,-5.125 v 9.5313 l -3.5937,3.8125 -0.9375,1.0312 0.9375,1.0313 3.5937,3.8125 v 9.5312 l -8.4062,-5.125 v -3.625 h -3 v 4.4688 0.8437 l 0.7187,0.4375 11.406,6.9688 2.2812,1.375 v -2.6563 -12.812 -0.5937 l -0.4062,-0.4375 -3.0313,-3.2188 3.0313,-3.25 0.4062,-0.4375 v -0.5937 -12.781 -2.6562 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4362" />
- <path
- d="m 181.18,365.18 v 48.594 h 3 V 365.18 Z m 11.062,0 v 48.594 h 3 V 365.18 Z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4366" />
- <path
- d="m 192.36,377.09 -11.062,24.469 2.7188,1.2188 11.094,-24.469 -2.75,-1.2187 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4369" />
- <path
- d="m 200.8,368.12 v 2.625 37.5 h 3 v -34.906 l 8,4.5937 v 22.969 h 3 v -23.812 -0.875 l -0.75,-0.4375 -11,-6.3438 -2.25,-1.3125 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4371" />
- <path
- d="m 141.52,456.11 c -4.2082,0 -7.5312,3.6567 -7.5312,8 a 1.5002,1.5002 0 1 0 3,0 c 0,-2.8368 2.0679,-5 4.5312,-5 2.4633,0 4.5313,2.1632 4.5313,5 0,1.0172 -0.081,1.842 -0.5,2.6562 -0.419,0.8143 -1.2183,1.7196 -2.9688,2.7188 -4.2189,2.4083 -8.2687,7.139 -8.9375,14.062 a 1.5002,1.5002 0 0 0 1.5,1.625 h 12.281 a 1.5002,1.5002 0 1 0 0,-3 H 137.02 c 1.0026,-4.93 3.9357,-8.3089 7.0625,-10.094 2.1,-1.1987 3.4254,-2.517 4.1563,-3.9375 0.7308,-1.4205 0.8125,-2.8442 0.8125,-4.0312 0,-4.3433 -3.3231,-8 -7.5313,-8 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4373" />
- <path
- d="m 191.63,456.12 a 1.5002,1.5002 0 0 0 -1.0625,0.625 l -12.656,18.5 a 1.5002,1.5002 0 0 0 1.2188,2.3438 h 11.188 v 6.0625 a 1.5002,1.5002 0 1 0 3,0 v -6.0625 h 0.5312 a 1.5002,1.5002 0 1 0 0,-3 h -0.5312 v -16.969 a 1.5002,1.5002 0 0 0 -1.6875,-1.5 z m -1.3125,6.3125 v 12.156 h -8.3125 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4157-8" />
- <path
- d="m 260.25,456.14 a 1.5002,1.5002 0 0 0 -1.1875,1.5 v 11.156 a 1.5002,1.5002 0 0 0 2.75,0.8125 c 0.8305,-1.2895 3.2878,-2.2812 5.4062,-2.2812 3.1378,0 5.5938,2.446 5.5938,5.5625 v 3.7187 c 0,3.1165 -2.456,5.5625 -5.5938,5.5625 -2.1156,0 -4.4947,-1.271 -5.375,-2.8125 a 1.5002,1.5002 0 1 0 -2.5937,1.5 c 1.5623,2.7359 4.7718,4.3125 7.9687,4.3125 4.7418,0 8.5938,-3.8296 8.5938,-8.5625 v -3.7187 c 0,-4.7328 -3.852,-8.5625 -8.5938,-8.5625 -1.7311,0 -3.5751,0.4087 -5.1562,1.25 v -6.4375 h 10.562 a 1.5002,1.5002 0 1 0 0,-3 h -12.062 a 1.5002,1.5002 0 0 0 -0.3125,0 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4397" />
- <path
- d="m 139.49,518.96 a 1.5002,1.5002 0 0 0 -1.1875,0.625 l -4.4687,6.0625 a 1.5002,1.5002 0 1 0 2.4062,1.7812 l 1.7813,-2.4062 v 21.5 a 1.5002,1.5002 0 1 0 3,0 v -26.062 a 1.5002,1.5002 0 0 0 -1.5313,-1.5 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4250-1" />
- <path
- d="m 177.16,530.1 c -4.9217,0 -8.9328,4.0208 -8.9328,8.9543 0,4.9336 4.0111,8.9544 8.9328,8.9544 4.9217,0 8.9329,-4.0208 8.9329,-8.9544 0,-4.9335 -4.0112,-8.9543 -8.9329,-8.9543 z m 0,3.0116 c 3.3023,0 5.9286,2.6325 5.9286,5.9427 0,3.3103 -2.6263,5.983 -5.9286,5.983 -3.3023,0 -5.9285,-2.6727 -5.9285,-5.983 0,-3.3102 2.6262,-5.9427 5.9285,-5.9427 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4254-5" />
- <path
- d="m 177.15,518.96 c -4.9246,0 -8.9375,4.0381 -8.9375,8.9687 v 11.125 a 1.5002,1.5002 0 1 0 3,0 v -11.125 c 0,-3.3131 2.6381,-5.9687 5.9375,-5.9687 2.3902,0 4.5663,1.4467 5.5,3.6562 a 1.5002,1.5002 0 1 0 2.75,-1.1875 c -1.3986,-3.3097 -4.6606,-5.4687 -8.25,-5.4687 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4258-9" />
- <path
- d="m 154.3,536.89 c 4.9217,0 8.9328,-4.0208 8.9328,-8.9543 0,-4.9335 -4.0111,-8.9543 -8.9328,-8.9543 -4.9217,0 -8.9329,4.0208 -8.9329,8.9543 0,4.9335 4.0112,8.9543 8.9329,8.9543 z m 0,-3.0115 c -3.3024,0 -5.9286,-2.6326 -5.9286,-5.9428 0,-3.3103 2.6262,-5.9829 5.9286,-5.9829 3.3023,0 5.9285,2.6726 5.9285,5.9829 0,3.3102 -2.6262,5.9428 -5.9285,5.9428 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4446" />
- <path
- d="m 161.74,526.4 a 1.5002,1.5002 0 0 0 -1.5,1.5312 v 11.125 c 0,3.3132 -2.6381,5.9688 -5.9375,5.9688 -2.3902,0 -4.535,-1.4155 -5.4687,-3.625 a 1.5060236,1.5060236 0 1 0 -2.7813,1.1562 c 1.3986,3.3097 4.6606,5.4688 8.25,5.4688 4.9246,0 8.9375,-4.0382 8.9375,-8.9688 v -11.125 a 1.5002,1.5002 0 0 0 -1.5,-1.5312 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4448" />
- <path
- d="m 225.02,523.02 a 1.5002,1.5002 0 0 0 -1.3438,1.5 v 18.562 a 1.5002,1.5002 0 1 0 3,0 V 526.02 h 7.7813 a 1.5002,1.5002 0 1 0 0,-3 h -9.2813 a 1.5002,1.5002 0 0 0 -0.1562,0 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4458" />
- <path
- d="m -268.26,1141.4 c 7.7494,0 14.125,-6.3444 14.125,-14.094 0,-7.7494 -6.3756,-14.125 -14.125,-14.125 -7.7494,0 -14.094,6.3756 -14.094,14.125 a 3.5004,3.5004 0 1 0 7,0 c 0,-3.9663 3.1275,-7.125 7.0938,-7.125 3.9663,0 7.125,3.1587 7.125,7.125 0,3.9664 -3.1587,7.0938 -7.125,7.0938 h -0.2813 a 3.5035,3.5035 0 1 0 -0.3125,7 c 0.1999,0.01 0.3938,0 0.5938,0 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#ffffff"
- id="path4298" />
- <rect
- x="178.94"
- y="1014.8"
- width="294.29001"
- height="45"
- ry="22.5"
- rx="22.5"
- style="fill:#333333"
- id="rect3790" />
- <path
- d="m 183.75,1122.6 c -65.126,0 -119.22,47.238 -129.91,109.31 h -70.969 c -12.465,0 -22.5,10.035 -22.5,22.5 0,12.465 10.035,22.5 22.5,22.5 H 53.84 c 10.674,62.09 64.77,109.34 129.91,109.34 65.138,0 119.23,-47.252 129.91,-109.34 h 137.06 c 12.465,0 22.5,-10.035 22.5,-22.5 0,-12.465 -10.035,-22.5 -22.5,-22.5 H 313.66 c -10.69,-62.1 -64.81,-109.3 -129.91,-109.3 z"
- inkscape:connector-curvature="0"
- style="fill:#333333"
- id="rect3792" />
- <path
- sodipodi:start="0"
- sodipodi:end="6.2776887"
- sodipodi:cx="450.52805"
- sodipodi:cy="401.31888"
- transform="matrix(0.67433,0,0,0.67433,-120.05,983.82)"
- sodipodi:open="true"
- d="M 582.35295,401.31888 A 131.82491,131.82491 0 0 1 450.70919,533.14366 131.82491,131.82491 0 0 1 318.70364,401.68117 131.82491,131.82491 0 0 1 449.9846,269.49509 131.82491,131.82491 0 0 1 582.35096,400.59429"
- sodipodi:type="arc"
- style="fill:#000000"
- sodipodi:ry="131.82491"
- sodipodi:rx="131.82491"
- id="path3802" />
- <path
- d="m 183.75,1175.6 c -43.516,0 -78.781,35.266 -78.781,78.781 0,7.6898 1.1023,15.13 3.1563,22.156 l 145.66,-58.188 c -13.09,-25.386 -39.524,-42.75 -70.031,-42.75 z m 75.625,56.656 -145.69,58.188 c 13.086,25.38 39.541,42.75 70.062,42.75 43.516,0 78.781,-35.297 78.781,-78.812 v -0.4062 c -0.041,-7.535 -1.1424,-14.828 -3.1562,-21.719 z"
- inkscape:connector-curvature="0"
- style="fill:#333333"
- id="path3804" />
- <rect
- x="-236.78"
- y="1431.9"
- width="710"
- height="45"
- ry="22.5"
- rx="22.5"
- style="fill:#333333"
- id="rect3794" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m 64.543,197.04 c -15.018,0 -27.219,12.201 -27.219,27.219 v 40.406 c 0,15.018 12.2,27.25 27.219,27.25 15.018,0 27.25,-12.232 27.25,-27.25 v -40.406 c 0,-15.018 -12.232,-27.219 -27.25,-27.219 z m 0,8 c 10.725,0 19.25,8.4942 19.25,19.219 v 40.406 c 0,10.725 -8.5254,19.25 -19.25,19.25 -10.724,0 -19.219,-8.5254 -19.219,-19.25 v -40.406 c 0,-10.725 8.4942,-19.219 19.219,-19.219 z"
- id="path5724" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m -608.11,412.19 a 4.2093,4.2093 0 1 0 0.4204,8.408 h 30.531 l -20.81,29.428 a 4.2044,4.2044 0 0 0 3.9412,6.6213 c 9.6213,-1.1538 15.169,0.9116 18.813,4.0989 3.6435,3.1873 5.6017,7.9672 6.3585,12.98 0.7925,5.2489 -0.4779,11.143 -3.2056,15.818 -2.7276,4.6741 -6.7457,7.9791 -11.298,8.8283 -7.525,1.4038 -17.109,-2.8331 -20.6,-9.8268 a 4.2067,4.2067 0 0 0 -7.5146,3.7836 c 5.4441,10.909 18.201,16.427 29.638,14.294 7.4551,-1.3908 13.34,-6.5064 17.026,-12.822 3.6857,-6.3157 5.3719,-13.948 4.2565,-21.335 -0.9532,-6.3133 -3.4721,-13.109 -9.0911,-18.025 -4.0538,-3.5462 -9.6478,-5.8469 -16.658,-6.3585 l 20.705,-29.27 a 4.2044,4.2044 0 0 0 -3.4683,-6.6213 h -38.624 a 4.2044,4.2044 0 0 0 -0.4204,0 z"
- id="path5726" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m -304.56,229 c -15.021,0 -27.222,12.201 -27.222,27.222 v 40.446 c 0,15.021 12.201,27.222 27.222,27.222 15.021,0 27.277,-12.201 27.277,-27.222 V 256.222 C -277.283,241.201 -289.54,229 -304.56,229 Z m 0,7.9675 c 10.744,0 19.31,8.5101 19.31,19.255 v 40.446 c 0,10.744 -8.5654,19.255 -19.31,19.255 -10.744,0 -19.255,-8.5101 -19.255,-19.255 v -40.446 c 0,-10.744 8.5101,-19.255 19.255,-19.255 z"
- id="path5728" />
- <path
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- d="m -361.49,229.03 a 3.9804,3.9804 0 0 0 -2.8192,1.8242 l -39.192,61.69 a 3.9804,3.9804 0 0 0 3.3719,6.0806 h 35.157 v 21.227 a 3.9804,3.9804 0 1 0 7.96,0 v -21.227 h 2.377 a 3.9804,3.9804 0 1 0 0,-7.96 h -2.377 v -57.655 a 3.9804,3.9804 0 0 0 -4.4775,-3.98 z m -3.4825,17.634 v 44.001 h -27.916 z"
- id="path5730" />
- <path
- d="m -228.85,229 c -15.021,0 -27.222,12.201 -27.222,27.222 v 40.446 c 0,15.021 12.201,27.222 27.222,27.222 15.021,0 27.277,-12.201 27.277,-27.222 V 256.222 C -201.573,241.201 -213.83,229 -228.85,229 Z m 0,7.9675 c 10.744,0 19.31,8.5101 19.31,19.255 v 40.446 c 0,10.744 -8.5655,19.255 -19.31,19.255 -10.7445,0 -19.255,-8.5101 -19.255,-19.255 v -40.446 c 0,-10.744 8.5101,-19.255 19.255,-19.255 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5732" />
- <path
- d="m 191.83,520.42 h 14.362 l -11.391,26.091"
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
- id="path5734" />
- <path
- inkscape:connector-curvature="0"
- style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round"
- d="m 234.26,457.58 h 14.362 l -11.391,26.09"
- id="path5736" />
- <path
- d="m 214.66,456.08 c -4.7833,0 -8.6562,3.9041 -8.6562,8.6875 v 11.719 c 0,4.7834 3.8729,8.6875 8.6562,8.6875 4.7834,0 8.6875,-3.9041 8.6875,-8.6875 v -11.719 c 0,-4.7834 -3.9041,-8.6875 -8.6875,-8.6875 z m 0,3 c 3.1733,0 5.6875,2.5142 5.6875,5.6875 v 11.719 c 0,3.1733 -2.5142,5.6875 -5.6875,5.6875 -3.1732,0 -5.6562,-2.5142 -5.6562,-5.6875 v -11.719 c 0,-3.1733 2.483,-5.6875 5.6562,-5.6875 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect5738" />
- <path
- d="m 165.16,456.08 c -4.7833,0 -8.6562,3.9041 -8.6562,8.6875 v 11.719 c 0,4.7834 3.8729,8.6875 8.6562,8.6875 4.7834,0 8.6875,-3.9041 8.6875,-8.6875 v -11.719 c 0,-4.7834 -3.9041,-8.6875 -8.6875,-8.6875 z m 0,3 c 3.1733,0 5.6875,2.5142 5.6875,5.6875 v 11.719 c 0,3.1733 -2.5142,5.6875 -5.6875,5.6875 -3.1732,0 -5.6562,-2.5142 -5.6562,-5.6875 v -11.719 c 0,-3.1733 2.483,-5.6875 5.6562,-5.6875 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect5740" />
- <path
- d="m -1171.1,945.11 a 2.6676,2.6676 0 0 0 -2.1117,1.1113 l -7.9464,10.78 a 2.6676,2.6676 0 1 0 4.2788,3.1675 l 3.1675,-4.2789 v 38.232 a 2.6676,2.6676 0 1 0 5.3347,0 v -46.345 a 2.6676,2.6676 0 0 0 -2.7229,-2.6673 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path4250-1-3" />
- <path
- d="m -1144.4,945.12 c -8.5059,0 -15.448,6.8868 -15.448,15.393 v 20.894 c 0,8.5059 6.9424,15.393 15.448,15.393 8.5059,0 15.448,-6.8868 15.448,-15.393 v -20.894 c 0,-8.5059 -6.9424,-15.393 -15.448,-15.393 z m 0,5.3346 c 5.6428,0 10.114,4.4153 10.114,10.058 v 20.894 c 0,5.6428 -4.4708,10.058 -10.114,10.058 -5.6428,0 -10.114,-4.4153 -10.114,-10.058 v -20.894 c 0,-5.6428 4.4708,-10.058 10.114,-10.058 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect5738-5" />
- <path
- d="m -1107.5,944.76 c -8.5059,0 -15.448,6.8868 -15.448,15.393 v 20.894 c 0,8.5059 6.9424,15.393 15.448,15.393 8.5059,0 15.448,-6.8868 15.448,-15.393 v -20.894 c 0,-8.506 -6.9424,-15.393 -15.448,-15.393 z m 0,5.3347 c 5.6428,0 10.114,4.4153 10.114,10.058 v 20.894 c 0,5.6427 -4.4708,10.058 -10.114,10.058 -5.6428,0 -10.114,-4.4153 -10.114,-10.058 v -20.894 c 0,-5.6428 4.4708,-10.058 10.114,-10.058 z"
- inkscape:connector-curvature="0"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="rect5763" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-426.79377"
- inkscape:transform-center-x="933.15822"
- d="m -981.29,613.51 a 3.5004,3.5004 0 0 0 -1.8867,6.6884 l 109.11,49.911 a 3.5004,3.5004 0 1 0 2.9043,-6.3686 l -109.11,-49.911 A 3.5004,3.5004 0 0 0 -981.29,613.51 Z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5787" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-773.89442"
- inkscape:transform-center-x="673.81332"
- d="m -705.38,246.62 a 3.5004,3.5004 0 0 0 -4.4791,5.3134 l 78.781,90.494 a 3.5004,3.5004 0 1 0 5.2739,-4.6022 l -78.781,-90.494 A 3.5004,3.5004 0 0 0 -705.38,246.62 Z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5789" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-976.42875"
- inkscape:transform-center-x="315.47402"
- d="m -325.06,33.219 a 3.5004,3.5004 0 0 0 -6.2068,3.1256 l 36.88,114.17 a 3.5004,3.5004 0 1 0 6.6582,-2.1593 l -36.88,-114.18 a 3.5004,3.5004 0 0 0 -0.4514,-0.9664 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5791" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-1026.1273"
- inkscape:transform-center-x="-0.023585956"
- d="m 9.3597,-18.399 a 3.5004,3.5004 0 0 0 -6.8671,1.0659 l -0.011,119.98 a 3.5004,3.5004 0 1 0 6.9995,-0.01 l 0.011,-119.98 a 3.5004,3.5004 0 0 0 -0.1324,-1.0584 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5793" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-165.18705"
- inkscape:transform-center-x="1042.4061"
- d="m -1068.4,895.12 a 1.888,3.5004 9.0712 0 0 -0.5103,6.8713 l 63.927,10.069 a 1.888,3.5004 9.0712 1 0 1.0946,-6.9134 l -63.927,-10.069 a 1.888,3.5004 9.0712 0 0 -0.5847,0.042 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5795" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-249.64231"
- inkscape:transform-center-x="1025.4638"
- d="m -1050.7,808.09 a 1.888,3.5004 13.749 0 0 -1.0689,6.8068 l 62.893,15.249 a 1.888,3.5004 13.749 1 0 1.6548,-6.8011 l -62.893,-15.249 a 1.888,3.5004 13.749 0 0 -0.5862,-0.01 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5797" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-325.18917"
- inkscape:transform-center-x="1004.0664"
- d="m -1028.4,730.25 a 1.888,3.5004 18.012 0 0 -1.5721,6.7085 l 61.585,19.882 a 1.888,3.5004 18.012 1 0 2.1559,-6.6593 l -61.585,-19.882 a 1.888,3.5004 18.012 0 0 -0.5842,-0.049 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5799" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-388.82606"
- inkscape:transform-center-x="981.17869"
- d="m -1004.6,664.7 a 1.888,3.5004 21.684 0 0 -1.9984,6.5941 l 60.185,23.786 a 1.888,3.5004 21.684 1 0 2.5779,-6.5076 l -60.185,-23.786 a 1.888,3.5004 21.684 0 0 -0.5798,-0.087 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5801" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-531.33261"
- inkscape:transform-center-x="911.91157"
- d="m -932.71,517.97 a 1.888,3.5004 30.294 0 0 -2.9631,6.2206 l 55.946,32.528 a 1.888,3.5004 30.294 1 0 3.5231,-6.0483 l -55.946,-32.528 a 1.888,3.5004 30.294 0 0 -0.5603,-0.1725 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5803" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-616.96881"
- inkscape:transform-center-x="856.29817"
- d="m -875.09,429.84 a 1.888,3.5004 35.84 0 0 -3.5504,5.9051 l 52.541,37.782 a 1.888,3.5004 35.84 1 0 4.0911,-5.6795 l -52.541,-37.782 a 1.888,3.5004 35.84 0 0 -0.5409,-0.2259 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5805" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-694.89709"
- inkscape:transform-center-x="794.36465"
- d="m -810.98,349.68 a 1.888,3.5004 41.246 0 0 -4.0909,5.5444 l 48.748,42.564 a 1.888,3.5004 41.246 1 0 4.608,-5.2689 l -48.748,-42.564 a 1.888,3.5004 41.246 0 0 -0.5173,-0.2758 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5807" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-746.16601"
- inkscape:transform-center-x="746.41375"
- d="m -761.37,296.96 a 1.888,3.5004 45.057 0 0 -4.4504,5.2601 l 45.811,45.71 a 1.888,3.5004 45.057 1 0 4.948,-4.9509 l -45.811,-45.71 a 1.888,3.5004 45.057 0 0 -0.4978,-0.3096 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5809" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-846.16619"
- inkscape:transform-center-x="630.79324"
- d="m -641.83,194.21 a 1.888,3.5004 53.363 0 0 -5.1636,4.5621 l 38.727,51.849 a 1.888,3.5004 53.363 1 0 5.6113,-4.1842 l -38.727,-51.849 a 1.888,3.5004 53.363 0 0 -0.4478,-0.3782 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5811" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-902.21965"
- inkscape:transform-center-x="547.62857"
- d="m -555.89,136.67 a 1.888,3.5004 58.81 0 0 -5.5733,4.0513 l 33.631,55.29 a 1.888,3.5004 58.81 1 0 5.9832,-3.6326 l -33.631,-55.29 a 1.888,3.5004 58.81 0 0 -0.4099,-0.4191 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5813" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-946.46289"
- inkscape:transform-center-x="467.01752"
- d="m -472.63,91.3 a 1.888,3.5004 63.803 0 0 -5.9048,3.5509 l 28.69,58.008 a 1.888,3.5004 63.803 1 0 6.2766,-3.098 l -28.69,-58.007 a 1.888,3.5004 63.803 0 0 -0.3719,-0.4531 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5815" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-976.67475"
- inkscape:transform-center-x="400.00472"
- d="m -403.43,60.358 a 1.888,3.5004 67.795 0 0 -6.1376,3.1313 l 24.583,59.864 a 1.888,3.5004 67.795 1 0 6.4771,-2.6536 l -24.583,-59.864 a 1.888,3.5004 67.795 0 0 -0.3394,-0.4779 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5817" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-1027.0199"
- inkscape:transform-center-x="243.16165"
- d="m -241.53,8.9388 a 1.888,3.5004 76.746 0 0 -6.5501,2.138 l 14.969,62.96 a 1.888,3.5004 76.746 1 0 6.811,-1.6135 l -14.97,-62.961 a 1.888,3.5004 76.746 0 0 -0.2609,-0.5249 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5819" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-1040.3554"
- inkscape:transform-center-x="177.64633"
- d="m -173.93,-4.6054 a 1.888,3.5004 80.377 0 0 -6.6723,1.719 l 10.952,63.782 a 1.888,3.5004 80.377 1 0 6.8996,-1.179 l -10.952,-63.782 a 1.888,3.5004 80.377 0 0 -0.2272,-0.5404 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5821" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-1049.0131"
- inkscape:transform-center-x="116.05553"
- d="m -110.39,-13.338 a 1.888,3.5004 83.754 0 0 -6.762,1.323 l 7.1761,64.316 a 1.888,3.5004 83.754 1 0 6.9571,-0.7705 l -7.1762,-64.316 a 1.888,3.5004 83.754 0 0 -0.1949,-0.5529 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5823" />
- <path
- inkscape:connector-curvature="0"
- inkscape:transform-center-y="-1053.7903"
- inkscape:transform-center-x="58.509766"
- d="m -51.038,-18.083 a 1.888,3.5004 86.889 0 0 -6.8243,0.9512 l 3.6479,64.612 a 1.888,3.5004 86.889 1 0 6.9888,-0.3889 l -3.6479,-64.612 a 1.888,3.5004 86.889 0 0 -0.1645,-0.5627 z"
- style="color:#000000;text-indent:0;text-transform:none;fill:#000000"
- id="path5825" />
- <path
- d="m -1090.6,-131.14 c -65.98,0 -119.09,53.114 -119.09,119.09 v 1374.5 c 0,65.979 53.114,119.09 119.09,119.09 h 665.31 c 29.008,0 39.174,-3.9241 56.5,-21.25 l 746.08,-745.9 c 23.302,-23.302 25.781,-31.589 25.781,-62.469 v -663.88 c 0,-65.979 -53.114,-119.09 -119.09,-119.09 z"
- inkscape:connector-curvature="0"
- style="fill:url(#linearGradient10503)"
- sodipodi:nodetypes="sssssssssss"
- id="path6078" />
- </g>
- <text
- id="text24840"
- y="1795.9766"
- x="-534.04657"
- style="font-style:normal;font-weight:normal;font-size:81.67732239px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.18778539"
- xml:space="preserve"><tspan
- style="font-size:81.67732239px;stroke-width:2.18778539"
- y="1795.9766"
- x="-534.04657"
- id="tspan24838"
- sodipodi:role="line">https://openclipart.org/detail/205486/voltmeter-and-ammeter</tspan></text>
- </g>
- <path
- inkscape:connector-curvature="0"
- id="path26897"
- d="M 1529.3463,1129.8524 H 2700.4096"
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- <text
- id="text26946"
- y="913.46747"
- x="1723.4104"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- xml:space="preserve"><tspan
- style="stroke-width:0.25"
- y="913.46747"
- x="1723.4104"
- id="tspan26944"
- sodipodi:role="line">[max]</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- x="1523.4104"
- y="1073.4675"
- id="text26950"><tspan
- sodipodi:role="line"
- id="tspan26948"
- x="1523.4104"
- y="1073.4675"
- style="stroke-width:0.25">[min]</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- x="1583.4104"
- y="1173.4675"
- id="text26954"><tspan
- sodipodi:role="line"
- id="tspan26952"
- x="1583.4104"
- y="1173.4675"
- style="stroke-width:0.25">[max]</tspan></text>
- <text
- id="text26958"
- y="1485.4675"
- x="1577.4104"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- xml:space="preserve"><tspan
- style="stroke-width:0.25"
- y="1485.4675"
- x="1577.4104"
- id="tspan26956"
- sodipodi:role="line">[min]</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- x="1514.1893"
- y="852.01276"
- id="text27118"><tspan
- sodipodi:role="line"
- id="tspan27116"
- x="1514.1893"
- y="852.01276"
- style="stroke-width:0.25">Second point of "needle" labeled SVG path moves along "range" labeled SVG path according to value. </tspan><tspan
- id="tspan27124"
- sodipodi:role="line"
- x="1514.1893"
- y="864.51276"
- style="stroke-width:0.25">Value min and max range is either given as arguments or as "min" and "max" labeled SVG texts, or default to 0...100 if unspecified.</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.25"
- x="1703.4104"
- y="1047.4675"
- id="text32265"><tspan
- sodipodi:role="line"
- id="tspan32263"
- x="1703.4104"
- y="1047.4675"
- style="fill:#ff6600;fill-opacity:1;stroke-width:0.25">needle</tspan></text>
- <text
- id="text32303"
- y="1067.4675"
- x="1577.4104"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#3ee800;fill-opacity:1;stroke:none;stroke-width:0.25"
- xml:space="preserve"><tspan
- style="fill:#3ee800;fill-opacity:1;stroke-width:0.25"
- y="1067.4675"
- x="1577.4104"
- id="tspan32301"
- sodipodi:role="line">range</tspan></text>
- <text
- id="text32307"
- y="1307.4675"
- x="1575.4104"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:0.25"
- xml:space="preserve"><tspan
- style="fill:#ff6600;fill-opacity:1;stroke-width:0.25"
- y="1307.4675"
- x="1575.4104"
- id="tspan32305"
- sodipodi:role="line">needle</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#3ee800;fill-opacity:1;stroke:none;stroke-width:0.25"
- x="1575.4104"
- y="1207.4675"
- id="text32311"><tspan
- sodipodi:role="line"
- id="tspan32309"
- x="1575.4104"
- y="1207.4675"
- style="fill:#3ee800;fill-opacity:1;stroke-width:0.25">range</tspan></text>
- </g>
- <g
- id="g3125"
- inkscape:label="CircularBar Page"
- transform="translate(2679.4073,787.70547)">
- <use
- x="0"
- y="0"
- xlink:href="#g9813"
- id="use9837"
- width="100%"
- height="100%"
- transform="translate(0.5927,-787.70544)"
- inkscape:label="HMI:Page:CircularBar" />
- <g
- id="g3058">
- <g
- id="g31471">
- <circle
- id="path4349"
- style="fill:url(#linearGradient10071);stroke:url(#linearGradient4378);stroke-width:2.13336658"
- transform="scale(1,-1)"
- cx="1974.9573"
- cy="-1907.7942"
- r="125.20776" />
- <path
- transform="matrix(2.1333334,0,0,2.1333334,917.47072,723.36897)"
- id="path4276"
- style="fill:url(#radialGradient4372);stroke:url(#linearGradient4374);stroke-width:0.93251997"
- sodipodi:type="inkscape:offset"
- d="m 495.71875,499.5625 c -30.71038,0 -55.625,24.94721 -55.625,55.65625 0,30.70904 24.91462,55.65625 55.625,55.65625 30.71038,0 55.65625,-24.94587 55.65625,-55.65625 0,-30.71038 -24.94587,-55.65625 -55.65625,-55.65625 z m 0.5957,6.625 c 26.16416,-0.0377 49.91573,24.21255 48.50196,50.61719 a 1.906235,1.906235 0 0 0 -0.002,0.0312 c -0.96267,26.09835 -23.97335,48.63457 -50.44531,47.41601 a 1.906235,1.906235 0 0 0 -0.0703,-0.002 c -27.12401,-0.25004 -50.9578,-26.70889 -47.31641,-53.83984 a 1.906235,1.906235 0 0 0 0.008,-0.0703 c 2.26482,-23.38029 22.99305,-43.56741 46.70508,-44.05859 a 1.906235,1.906235 0 0 0 0.0781,-0.004 c 0.86395,-0.0528 1.71288,-0.0887 2.54101,-0.0898 z"
- inkscape:original="M 495.71875 501.46875 C 466.0389 501.46875 442 525.5389 442 555.21875 C 442 584.8986 466.0389 608.96875 495.71875 608.96875 C 525.3986 608.96875 549.46875 584.8986 549.46875 555.21875 C 549.46875 525.5389 525.3986 501.46875 495.71875 501.46875 z M 496.3125 504.28125 C 523.64396 504.24185 548.1961 529.3142 546.71875 556.90625 C 545.71652 584.07711 521.8754 607.42646 494.28125 606.15625 C 465.94032 605.89499 441.28655 578.52263 445.09375 550.15625 C 447.45524 525.77795 468.89562 504.8879 493.65625 504.375 C 494.5429 504.3208 495.43084 504.28245 496.3125 504.28125 z "
- inkscape:radius="1.9060444" />
- </g>
- <g
- style="fill:none;stroke-width:1.47405899"
- transform="matrix(0.53304115,0,0,0.53229017,1417.5153,1776.3135)"
- inkscape:label="HMI:CircularBar@/CIRCULARBAR"
- id="g30664">
- <text
- inkscape:label="value"
- id="text30652"
- y="272.72952"
- x="1045.2592"
- style="font-style:normal;font-weight:normal;font-size:70.65699005px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;opacity:1;fill-opacity:1;stroke:none;stroke-width:2.60381603px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill-opacity:1;stroke:none;stroke-width:2.60381603px;stroke-opacity:1"
- y="272.72952"
- x="1045.2592"
- id="tspan30650"
- sodipodi:role="line">65%</tspan></text>
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:url(#linearGradient31386);stroke-width:11.26410389;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120.22967529;stroke-opacity:1;marker:none"
- id="path30654"
- inkscape:label="path"
- sodipodi:type="arc"
- sodipodi:cx="1045.7766"
- sodipodi:cy="247.00946"
- sodipodi:rx="209.17709"
- sodipodi:ry="209.47221"
- sodipodi:start="2.268928"
- sodipodi:end="0.87266463"
- d="M 911.32017,407.47449 A 209.17709,209.47221 0 0 1 849.21444,175.36575 209.17709,209.47221 0 0 1 1045.7766,37.537247 209.17709,209.47221 0 0 1 1242.3388,175.36574 209.17709,209.47221 0 0 1 1180.2331,407.47449"
- sodipodi:open="true" />
- </g>
- <g
- id="g31467"
- inkscape:label="g31467"
- style="display:inline">
- <circle
- id="path4282"
- style="fill:url(#linearGradient4376);stroke-width:2.13333344"
- cx="1974.1705"
- cy="1908.6909"
- r="76.17897" />
- <use
- transform="matrix(0.53304115,0,0,0.53229017,1419.5153,1778.3135)"
- style="opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:4.00493336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- x="0"
- y="0"
- xlink:href="#text30652"
- id="use31590"
- width="100%"
- height="100%" />
- <use
- transform="matrix(0.53304115,0,0,0.53229017,1417.5153,1776.3135)"
- style="opacity:1;vector-effect:none;fill:#333333;fill-opacity:1;stroke:none;stroke-width:4.0050149;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- x="0"
- y="0"
- xlink:href="#text30652"
- id="use31592"
- width="100%"
- height="100%" />
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- x="1512.8077"
- y="1602.7185"
- id="text17535"><tspan
- sodipodi:role="line"
- id="tspan17533"
- x="1512.8077"
- y="1602.7185">HMI:CircularBar:[min:max]@path</tspan></text>
- <text
- id="text24840-3"
- y="2062.4612"
- x="2067.7786"
- style="font-style:normal;font-weight:normal;font-size:9.33333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.24999999"
- xml:space="preserve"><tspan
- style="font-size:9.33333302px;stroke-width:0.24999999"
- y="2062.4612"
- x="2067.7786"
- id="tspan24838-1"
- sodipodi:role="line">https://openclipart.org/detail/203239/gauges-vectorbased-superb-quality</tspan></text>
- <g
- style="stroke-width:1.47405899"
- transform="matrix(0.53304115,0,0,0.53229017,1094.7583,1794.01)"
- inkscape:label="HMI:CircularBar@/CIRCULARBAR"
- id="g1047">
- <text
- inkscape:label="value"
- transform="scale(0.91814752,1.0891496)"
- id="text1051"
- y="218.54041"
- x="1139.0072"
- style="font-style:normal;font-weight:normal;font-size:90.1384964px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000001;fill-opacity:1;stroke:none;stroke-width:3.32173681px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill:#000001;fill-opacity:1;stroke:none;stroke-width:3.32173681px;stroke-opacity:1"
- y="218.54041"
- x="1139.0072"
- id="tspan1049"
- sodipodi:role="line">[value]</tspan></text>
- <path
- sodipodi:open="true"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ff6600;stroke-width:3.75470138;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120.22967529;stroke-opacity:1;marker:none;marker-start:url(#marker30012);marker-end:url(#marker30310)"
- id="path1044-3"
- sodipodi:type="arc"
- sodipodi:cx="1045.7766"
- sodipodi:cy="247.00946"
- sodipodi:rx="180"
- sodipodi:ry="180"
- sodipodi:start="2.6179939"
- sodipodi:end="0.52359878"
- d="m 889.89204,337.00946 a 180,180 0 0 1 40.1828,-227.888 180,180 0 0 1 231.40356,0 180,180 0 0 1 40.1828,227.888"
- inkscape:label="path" />
- <text
- transform="scale(0.99929531,1.0007052)"
- inkscape:label="min"
- id="text7984-5"
- y="339.48706"
- x="925.46155"
- style="font-style:normal;font-weight:normal;font-size:42.93917084px;line-height:125%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.07347918px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- xml:space="preserve"><tspan
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:1.07347918px"
- y="339.48706"
- x="925.46155"
- id="tspan7982-0"
- sodipodi:role="line">0</tspan></text>
- <text
- transform="scale(0.9992953,1.0007052)"
- inkscape:label="max"
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:42.93917084px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff6600;fill-opacity:1;stroke:none;stroke-width:1.07347918px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="1155.7532"
- y="345.3743"
- id="text7988-3"><tspan
- sodipodi:role="line"
- id="tspan7986-6"
- x="1155.7532"
- y="345.3743"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.07347918px">100</tspan></text>
- </g>
- <text
- id="text26946-1"
- y="1986.7517"
- x="1708.0165"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- xml:space="preserve"><tspan
- style="stroke-width:0.25"
- y="1986.7517"
- x="1708.0165"
- id="tspan26944-0"
- sodipodi:role="line">[max]</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- x="1568.494"
- y="1986.853"
- id="text26950-6"><tspan
- sodipodi:role="line"
- id="tspan26948-3"
- x="1568.494"
- y="1986.853"
- style="stroke-width:0.25">[min]</tspan></text>
- <text
- id="text27130"
- y="1624.3407"
- x="1514.1893"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- xml:space="preserve"><tspan
- style="stroke-width:0.25"
- y="1624.3407"
- x="1514.1893"
- id="tspan27126"
- sodipodi:role="line">Inkscape's Arc labeled "path" End angle varies according to value. Arc cannot be closed yet, use wide stroke to fill.</tspan><tspan
- style="stroke-width:0.25"
- y="1636.8407"
- x="1514.1893"
- sodipodi:role="line"
- id="tspan27128">Value min and max range is either given as arguments or as "min" and "max" labeled SVG texts, or default to 0...100 if unspecified.</tspan></text>
- <g
- id="g3045">
- <g
- id="g4392"
- transform="matrix(2.1333334,0,0,2.1333334,1479.7343,1201.5674)">
- <circle
- id="path3982"
- style="fill:url(#radialGradient4401);stroke:url(#linearGradient4403)"
- transform="matrix(-0.93252,0,0,-0.93252,810.37,640.06)"
- cx="487.55014"
- cy="331.46683"
- r="57.629204" />
- <circle
- id="path4008"
- style="opacity:0.86721999;fill:#000000;filter:url(#filter4030)"
- transform="matrix(-0.66258,0,0,0.66258,678.79,115.47)"
- cx="487.55014"
- cy="331.46683"
- r="57.629204" />
- <circle
- id="path4002"
- style="fill:url(#radialGradient4405);stroke:url(#linearGradient4407);stroke-width:1.50929999"
- transform="matrix(-0.66258,0,0,0.66258,678.69,111.47)"
- cx="487.55014"
- cy="331.46683"
- r="57.629204" />
- </g>
- <g
- id="g31570"
- inkscape:label="HMI:CircularBar@/CIRCULARBAR"
- transform="matrix(0.53304115,0,0,0.53229017,1681.1611,1776.3135)"
- style="stroke-width:1.47405899">
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70.55891418px;line-height:1.27999997;font-family:Gautami;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:4.00493336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- x="1045.2592"
- y="272.72952"
- id="text31566"
- inkscape:label="value"><tspan
- sodipodi:role="line"
- id="tspan31564"
- x="1045.2592"
- y="272.72952"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70.55891418px;line-height:1.27999997;font-family:Gautami;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:4.00493336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1">65%</tspan></text>
- <path
- sodipodi:open="true"
- d="M 925.18787,390.92429 A 187.60278,187.86746 0 0 1 869.48766,182.75501 187.60278,187.86746 0 0 1 1045.7766,59.141998 187.60278,187.86746 0 0 1 1222.0656,182.755 187.60278,187.86746 0 0 1 1166.3654,390.92429"
- sodipodi:end="0.87266463"
- sodipodi:start="2.268928"
- sodipodi:ry="187.86746"
- sodipodi:rx="187.60278"
- sodipodi:cy="247.00946"
- sodipodi:cx="1045.7766"
- sodipodi:type="arc"
- inkscape:label="path"
- id="path31568"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:url(#linearGradient10485);stroke-width:18.77350616;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120.22967529;stroke-opacity:1;marker:none" />
- </g>
- <use
- transform="matrix(0.53304115,0,0,0.53229017,1681.1611,1776.3135)"
- x="0"
- y="0"
- xlink:href="#path31568"
- id="use31670"
- width="100%"
- height="100%"
- style="opacity:0.51399997;stroke-width:1.47405899;filter:url(#filter31680)" />
- </g>
- <g
- id="g3034">
- <g
- id="g3010">
- <circle
- id="path3836"
- style="fill:none;stroke:url(#linearGradient10487);stroke-width:4.26666689"
- transform="scale(-1)"
- cx="-2500.2302"
- cy="-1911.7058"
- r="122.94231" />
- <circle
- id="path3826"
- style="opacity:0.31950001;fill:none;stroke:url(#linearGradient10489);stroke-width:4.26666689"
- cx="2500.231"
- cy="1909.5803"
- r="122.94231" />
- <circle
- id="path3848"
- style="fill:url(#radialGradient10491);stroke-width:1.98937607"
- transform="scale(-1)"
- cx="-2500.4646"
- cy="-1911.9562"
- r="114.64616" />
- <ellipse
- ry="110.12065"
- rx="108.61215"
- id="path3850"
- style="opacity:0.46813001;fill:none;stroke:url(#linearGradient10493);stroke-width:3.19992709"
- transform="scale(-1)"
- cx="-2499.5879"
- cy="-1909.5483" />
- </g>
- <g
- style="fill:none;stroke-width:1.47405899"
- transform="matrix(0.53304115,0,0,0.53229017,1942.7889,1776.3135)"
- inkscape:label="HMI:CircularBar@/CIRCULARBAR"
- id="g2608">
- <text
- inkscape:label="value"
- id="text2604"
- y="272.72952"
- x="1045.2592"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70.55891418px;line-height:1.27999997;font-family:Gautami;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill-opacity:1"
- xml:space="preserve"><tspan
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70.55891418px;line-height:1.27999997;font-family:Gautami;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:center;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:middle;white-space:normal;shape-padding:0;vector-effect:none;fill-opacity:1"
- y="272.72952"
- x="1045.2592"
- id="tspan2602"
- sodipodi:role="line">65%</tspan></text>
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:url(#radialGradient10495);stroke-width:84.48078156;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120.22967529;stroke-opacity:1;marker:none"
- id="path2606"
- inkscape:label="path"
- sodipodi:type="arc"
- sodipodi:cx="1045.1316"
- sodipodi:cy="253.72691"
- sodipodi:rx="150.08221"
- sodipodi:ry="150.29396"
- sodipodi:start="2.6179939"
- sodipodi:end="0.52359878"
- d="m 915.15658,328.87389 a 150.08221,150.29396 0 0 1 33.50403,-190.27883 150.08221,150.29396 0 0 1 192.94199,0 150.08221,150.29396 0 0 1 33.504,190.27883"
- sodipodi:open="true" />
- </g>
- <g
- id="g3004">
- <ellipse
- id="path3917"
- style="opacity:0.58091;fill:url(#radialGradient10497);stroke-width:1.65561378"
- transform="scale(-1)"
- cx="-2500.0576"
- cy="-1910.7838"
- rx="95.035629"
- ry="95.789268" />
- <circle
- id="path3870"
- style="fill:#000000;stroke-width:2.13333344"
- cx="2499.887"
- cy="1911.3699"
- r="57.322792" />
- <ellipse
- ry="51.288994"
- rx="48.272099"
- id="path3872"
- style="fill:url(#radialGradient10499);stroke-width:1.85178936"
- cx="2497.2419"
- cy="1911.7377" />
- <path
- id="path3903"
- d="m 2496.7959,1849.8538 c -40.7424,0.2449 -70.9077,47.8848 -54.0672,85.0005 13.4447,35.2341 62.5494,50.2187 93.1328,26.8672 30.8438,-21.1872 34.7542,-71.9723 5.2668,-96.0661 -11.9226,-10.8086 -28.2112,-16.7872 -44.3328,-15.7999 z"
- style="opacity:0.63071002;fill:none;stroke:url(#linearGradient10501);stroke-width:3.20000005"
- inkscape:connector-curvature="0" />
- <use
- height="100%"
- width="100%"
- id="use2935"
- xlink:href="#text2604"
- y="0"
- x="0"
- style="opacity:0.81327999;vector-effect:none;fill:#666666;fill-opacity:1;stroke-width:1.87731254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- transform="matrix(0.53304115,0,0,0.53229017,1944.7889,1778.3135)" />
- <use
- height="100%"
- width="100%"
- id="use2937"
- xlink:href="#text2604"
- y="0"
- x="0"
- style="opacity:1;vector-effect:none;fill:#cccccc;fill-opacity:1;stroke-width:1.87731254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- transform="matrix(0.53304115,0,0,0.53229017,1942.7889,1776.3135)" />
- </g>
- </g>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="1905.4562"
- y="2520.5203"
- id="text3613"><tspan
- sodipodi:role="line"
- id="tspan3611"
- x="1905.4562"
- y="2538.2156"
- style="stroke-width:0.5" /></text>
- <g
- id="g6809"
- transform="translate(2680,780)"
- inkscape:label="Switch Page">
- <use
- x="0"
- y="0"
- xlink:href="#g9818"
- id="use9854"
- width="100%"
- height="100%"
- transform="translate(0,-779.99997)"
- inkscape:label="HMI:Page:Switch"
- style="display:inline"
- sodipodi:insensitive="true" />
- <text
- id="text30640"
- y="2390.3906"
- x="1512.8077"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
- xml:space="preserve"><tspan
- y="2390.3906"
- x="1512.8077"
- id="tspan30638"
- sodipodi:role="line">HMI:Switch@path</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#fffffb;fill-opacity:1;stroke:none;stroke-width:0.25"
- x="1514.1893"
- y="2412.0127"
- id="text30646"><tspan
- id="tspan30644"
- sodipodi:role="line"
- x="1514.1893"
- y="2412.0127"
- style="fill:#fffffb;fill-opacity:1;stroke-width:0.25">Display only childs of widget's element (a SVG group) who's label match value.</tspan></text>
- <path
- inkscape:connector-curvature="0"
- d="m 1705.0033,2700.5501 v -200 m 0,200 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -123.222,-40 h 123.222"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path3520" />
- <text
- id="text3539"
- y="2500.5203"
- x="1525.4562"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="2500.5203"
- x="1525.4562"
- id="tspan3537"
- sodipodi:role="line">HMI:Switch</tspan><tspan
- id="tspan3573"
- style="stroke-width:0.5"
- y="2525.5203"
- x="1525.4562"
- sodipodi:role="line">HMI_INT</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="1785.4562"
- y="2500.5203"
- id="text3543"><tspan
- sodipodi:role="line"
- id="tspan3541"
- x="1785.4562"
- y="2500.5203"
- style="stroke-width:0.5">1</tspan></text>
- <text
- id="text3547"
- y="2540.5203"
- x="1785.4562"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="2540.5203"
- x="1785.4562"
- id="tspan3545"
- sodipodi:role="line">2</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="1785.4562"
- y="2580.5203"
- id="text3551"><tspan
- id="tspan3553"
- sodipodi:role="line"
- x="1785.4562"
- y="2580.5203"
- style="stroke-width:0.5">3</tspan></text>
- <text
- id="text3559"
- y="2620.5203"
- x="1785.4562"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="2620.5203"
- x="1785.4562"
- sodipodi:role="line"
- id="tspan3557">42</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="1785.4562"
- y="2660.5203"
- id="text3563"><tspan
- id="tspan3565"
- sodipodi:role="line"
- x="1785.4562"
- y="2660.5203"
- style="stroke-width:0.5">4</tspan></text>
- <text
- id="text3571"
- y="2700.5203"
- x="1785.4562"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="2700.5203"
- x="1785.4562"
- sodipodi:role="line"
- id="tspan3569">5</tspan></text>
- <path
- id="path3575"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 1705.0033,3000.5501 v -200 m 0,200 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -123.222,-40 h 123.222"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="1525.4562"
- y="2800.5203"
- id="text3581"><tspan
- sodipodi:role="line"
- id="tspan3577"
- x="1525.4562"
- y="2800.5203"
- style="stroke-width:0.5">HMI:Switch</tspan><tspan
- sodipodi:role="line"
- x="1525.4562"
- y="2825.5203"
- style="stroke-width:0.5"
- id="tspan3579">HMI_STRING</tspan></text>
- <text
- id="text3585"
- y="2800.5203"
- x="1785.4562"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="2800.5203"
- x="1785.4562"
- id="tspan3583"
- sodipodi:role="line">"aa"</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="1785.4562"
- y="2840.5203"
- id="text3589"><tspan
- sodipodi:role="line"
- id="tspan3587"
- x="1785.4562"
- y="2840.5203"
- style="stroke-width:0.5">"abba"</tspan></text>
- <text
- id="text3593"
- y="2880.5203"
- x="1785.4562"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="2880.5203"
- x="1785.4562"
- sodipodi:role="line"
- id="tspan3591">"mhoo"</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="1785.4562"
- y="2920.5203"
- id="text3597"><tspan
- id="tspan3595"
- sodipodi:role="line"
- x="1785.4562"
- y="2920.5203"
- style="stroke-width:0.5">"ggg"</tspan></text>
- <text
- id="text3601"
- y="2960.5203"
- x="1785.4562"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="2960.5203"
- x="1785.4562"
- sodipodi:role="line"
- id="tspan3599">"wtf"</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="1785.4562"
- y="3000.5203"
- id="text3605"><tspan
- id="tspan3603"
- sodipodi:role="line"
- x="1785.4562"
- y="3000.5203"
- style="stroke-width:0.5">"xxx"</tspan></text>
- <path
- sodipodi:nodetypes="cccccccccccc"
- id="path3607"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 1825.0033,2700.5501 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222"
- inkscape:connector-curvature="0" />
- <path
- inkscape:connector-curvature="0"
- d="m 1865.0033,3000.5501 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path3609"
- sodipodi:nodetypes="cccccccccccc" />
- <g
- transform="translate(0,-20)"
- inkscape:label="HMI:Switch@/SWITCHINT"
- id="g3755">
- <path
- inkscape:label="3"
- sodipodi:type="star"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="path3635"
- sodipodi:sides="3"
- sodipodi:cx="1909.8937"
- sodipodi:cy="2602.8892"
- sodipodi:r1="12.249084"
- sodipodi:r2="6.1245413"
- sodipodi:arg1="0.1798535"
- sodipodi:arg2="1.2270511"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 1921.9452,2605.0803 -9.9875,3.5751 -9.9874,3.5751 1.8976,-10.4369 1.8976,-10.4369 8.0899,6.8618 z" />
- <path
- inkscape:label="42"
- d="m 1921.9452,2639.0803 -6.1245,-0.6483 5.6633,2.4201 -5.9594,-1.554 5.2393,3.2371 -5.6613,-2.4247 4.6984,3.9818 -5.2367,-3.2415 4.0525,4.6377 -4.6951,-3.9858 3.316,5.1898 -4.0486,-4.641 2.5054,5.6261 -3.3116,-5.1926 1.6389,5.9367 -2.5007,-5.6282 0.7358,6.1146 -1.634,-5.938 -0.1838,6.156 -0.7307,-6.1152 -1.0992,6.0598 0.1889,-6.1558 -1.9901,5.8283 1.1042,-6.0589 -2.8365,5.4666 1.9949,-5.8266 -3.6195,4.9828 2.841,-5.4643 -4.3218,4.3877 3.6237,-4.9798 -4.9274,3.6945 4.3254,-4.384 -5.4231,2.9188 4.9306,-3.6904 -5.7976,2.078 5.4255,-2.9144 -6.0425,1.1907 5.7993,-2.0731 -6.1525,0.2768 6.0435,-1.1857 -6.125,-0.6433 6.1527,-0.2717 -5.9607,-1.5489 6.1244,0.6483 -5.6632,-2.42 5.9594,1.5539 -5.2394,-3.2371 5.6613,2.4247 -4.6983,-3.9818 5.2366,3.2415 -4.0524,-4.6376 4.695,3.9857 -3.3159,-5.1898 4.0485,4.641 -2.5054,-5.6261 3.3117,5.1926 -1.639,-5.9366 2.5008,5.6281 -0.7358,-6.1146 1.634,5.938 0.1837,-6.156 0.7307,6.1152 1.0992,-6.0598 -0.1888,6.1558 1.99,-5.8283 -1.1042,6.0589 2.8365,-5.4666 -1.9949,5.8266 3.6196,-4.9827 -2.8411,5.4642 4.3218,-4.3877 -3.6237,4.9798 4.9275,-3.6945 -4.3254,4.3841 5.423,-2.9189 -4.9305,3.6904 5.7975,-2.078 -5.4255,2.9144 6.0425,-1.1907 -5.7992,2.0732 6.1524,-0.2768 -6.0435,1.1856 6.1251,0.6433 -6.1527,0.2717 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="0.25465333"
- sodipodi:arg1="0.1798535"
- sodipodi:r2="6.1245413"
- sodipodi:r1="12.249084"
- sodipodi:cy="2636.8892"
- sodipodi:cx="1909.8937"
- sodipodi:sides="42"
- id="path3637"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- sodipodi:type="star" />
- <path
- inkscape:label="4"
- sodipodi:type="star"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="path3639"
- sodipodi:sides="4"
- sodipodi:cx="1909.8937"
- sodipodi:cy="2676.8892"
- sodipodi:r1="12.249084"
- sodipodi:r2="6.1245413"
- sodipodi:arg1="0.1798535"
- sodipodi:arg2="0.96525166"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 1921.9452,2679.0803 -8.5654,2.8444 -5.6773,7.016 -2.8444,-8.5654 -7.0159,-5.6773 8.5653,-2.8444 5.6774,-7.0159 2.8443,8.5653 z" />
- <path
- inkscape:label="5"
- d="m 1921.9452,2719.0803 -7.8206,2.2371 -2.5907,7.7105 -4.5443,-6.7465 -8.1337,-0.081 5.012,-6.4066 -2.4362,-7.7608 7.6419,2.787 6.6281,-4.7152 -0.2891,8.1291 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="0.80817203"
- sodipodi:arg1="0.1798535"
- sodipodi:r2="6.1245413"
- sodipodi:r1="12.249084"
- sodipodi:cy="2716.8892"
- sodipodi:cx="1909.8937"
- sodipodi:sides="5"
- id="path3641"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- sodipodi:type="star" />
- <path
- inkscape:label="2"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- d="m 1920.4968,2552.3613 -8.5391,6.2941 -8.539,6.2941 z"
- id="path3643"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
- <circle
- inkscape:label="1"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.21478893px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="path3651"
- cx="1906.7977"
- cy="2520.55"
- r="1.2603201" />
- </g>
- <g
- transform="translate(-58.533071,-260.20956)"
- id="g3747">
- <path
- d="m 2601.9453,2845.0803 -9.9874,3.5751 -9.9875,3.5751 1.8976,-10.4369 1.8977,-10.4369 8.0898,6.8618 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="1.2270511"
- sodipodi:arg1="0.1798535"
- sodipodi:r2="6.1245413"
- sodipodi:r1="12.249084"
- sodipodi:cy="2842.8892"
- sodipodi:cx="2589.8938"
- sodipodi:sides="3"
- id="path3717"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- sodipodi:type="star"
- inkscape:label="3" />
- <path
- sodipodi:type="star"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="path3719"
- sodipodi:sides="42"
- sodipodi:cx="2589.8938"
- sodipodi:cy="2876.8892"
- sodipodi:r1="12.249084"
- sodipodi:r2="6.1245413"
- sodipodi:arg1="0.1798535"
- sodipodi:arg2="0.25465333"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 2601.9453,2879.0803 -6.1245,-0.6483 5.6633,2.4201 -5.9594,-1.554 5.2393,3.2371 -5.6613,-2.4247 4.6984,3.9818 -5.2366,-3.2415 4.0524,4.6377 -4.6951,-3.9858 3.316,5.1898 -4.0486,-4.641 2.5055,5.6261 -3.3117,-5.1926 1.6389,5.9367 -2.5007,-5.6282 0.7358,6.1146 -1.634,-5.938 -0.1837,6.156 -0.7308,-6.1152 -1.0991,6.0598 0.1888,-6.1558 -1.9901,5.8283 1.1043,-6.0589 -2.8366,5.4666 1.995,-5.8266 -3.6196,4.9828 2.841,-5.4643 -4.3218,4.3877 3.6238,-4.9798 -4.9275,3.6945 4.3254,-4.384 -5.4231,2.9188 4.9306,-3.6904 -5.7976,2.078 5.4255,-2.9144 -6.0425,1.1907 5.7993,-2.0731 -6.1525,0.2768 6.0435,-1.1857 -6.125,-0.6433 6.1527,-0.2717 -5.9607,-1.5489 6.1245,0.6483 -5.6633,-2.42 5.9594,1.5539 -5.2393,-3.2371 5.6612,2.4247 -4.6983,-3.9818 5.2366,3.2415 -4.0524,-4.6376 4.6951,3.9857 -3.316,-5.1898 4.0486,4.641 -2.5055,-5.6261 3.3117,5.1926 -1.6389,-5.9366 2.5007,5.6281 -0.7358,-6.1146 1.634,5.938 0.1837,-6.156 0.7308,6.1152 1.0991,-6.0598 -0.1888,6.1558 1.9901,-5.8283 -1.1043,6.0589 2.8366,-5.4666 -1.995,5.8266 3.6196,-4.9827 -2.841,5.4642 4.3218,-4.3877 -3.6238,4.9798 4.9275,-3.6945 -4.3254,4.3841 5.4231,-2.9189 -4.9306,3.6904 5.7976,-2.078 -5.4256,2.9144 6.0425,-1.1907 -5.7992,2.0732 6.1525,-0.2768 -6.0435,1.1856 6.125,0.6433 -6.1527,0.2717 z"
- inkscape:label="42" />
- <path
- d="m 2601.9453,2919.0803 -8.5654,2.8444 -5.6773,7.016 -2.8444,-8.5654 -7.0159,-5.6773 8.5653,-2.8444 5.6774,-7.0159 2.8443,8.5653 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="0.96525166"
- sodipodi:arg1="0.1798535"
- sodipodi:r2="6.1245413"
- sodipodi:r1="12.249084"
- sodipodi:cy="2916.8892"
- sodipodi:cx="2589.8938"
- sodipodi:sides="4"
- id="path3721"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- sodipodi:type="star"
- inkscape:label="4" />
- <path
- sodipodi:type="star"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="path3723"
- sodipodi:sides="5"
- sodipodi:cx="2589.8938"
- sodipodi:cy="2956.8892"
- sodipodi:r1="12.249084"
- sodipodi:r2="6.1245413"
- sodipodi:arg1="0.1798535"
- sodipodi:arg2="0.80817203"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 2601.9453,2959.0803 -7.8205,2.2371 -2.5908,7.7105 -4.5442,-6.7465 -8.1338,-0.081 5.012,-6.4066 -2.4361,-7.7608 7.6418,2.787 6.6282,-4.7152 -0.2892,8.1291 z"
- inkscape:label="5" />
- <path
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path3725"
- d="m 2600.4968,2792.3613 -8.5391,6.2941 -8.539,6.2941 z"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- inkscape:label="2" />
- <circle
- r="1.2603201"
- cy="2760.55"
- cx="2586.7979"
- id="circle3727"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.21478893px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- inkscape:label="1" />
- </g>
- <g
- transform="translate(-2,20)"
- inkscape:label="HMI:Switch@/SWITCHSTRING"
- id="g3681">
- <path
- inkscape:label=""mhoo""
- d="m 1961.9452,2865.0803 -9.9875,3.5751 -9.9874,3.5751 1.8976,-10.4369 1.8976,-10.4369 8.0899,6.8618 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="1.2270511"
- sodipodi:arg1="0.1798535"
- sodipodi:r2="6.1245413"
- sodipodi:r1="12.249084"
- sodipodi:cy="2862.8892"
- sodipodi:cx="1949.8937"
- sodipodi:sides="3"
- id="path3653"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- sodipodi:type="star" />
- <path
- inkscape:label=""ggg""
- sodipodi:type="star"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="path3655"
- sodipodi:sides="42"
- sodipodi:cx="1949.8937"
- sodipodi:cy="2896.8892"
- sodipodi:r1="12.249084"
- sodipodi:r2="6.1245413"
- sodipodi:arg1="0.1798535"
- sodipodi:arg2="0.25465333"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 1961.9452,2899.0803 -6.1245,-0.6483 5.6633,2.4201 -5.9594,-1.554 5.2393,3.2371 -5.6613,-2.4247 4.6984,3.9818 -5.2367,-3.2415 4.0525,4.6377 -4.6951,-3.9858 3.316,5.1898 -4.0486,-4.641 2.5054,5.6261 -3.3116,-5.1926 1.6389,5.9367 -2.5007,-5.6282 0.7358,6.1146 -1.634,-5.938 -0.1838,6.156 -0.7307,-6.1152 -1.0992,6.0598 0.1889,-6.1558 -1.9901,5.8283 1.1042,-6.0589 -2.8365,5.4666 1.9949,-5.8266 -3.6195,4.9828 2.841,-5.4643 -4.3218,4.3877 3.6237,-4.9798 -4.9274,3.6945 4.3254,-4.384 -5.4231,2.9188 4.9306,-3.6904 -5.7976,2.078 5.4255,-2.9144 -6.0425,1.1907 5.7993,-2.0731 -6.1525,0.2768 6.0435,-1.1857 -6.125,-0.6433 6.1527,-0.2717 -5.9607,-1.5489 6.1244,0.6483 -5.6632,-2.42 5.9594,1.5539 -5.2394,-3.2371 5.6613,2.4247 -4.6983,-3.9818 5.2366,3.2415 -4.0524,-4.6376 4.695,3.9857 -3.3159,-5.1898 4.0485,4.641 -2.5054,-5.6261 3.3117,5.1926 -1.639,-5.9366 2.5008,5.6281 -0.7358,-6.1146 1.634,5.938 0.1837,-6.156 0.7307,6.1152 1.0992,-6.0598 -0.1888,6.1558 1.99,-5.8283 -1.1042,6.0589 2.8365,-5.4666 -1.9949,5.8266 3.6196,-4.9827 -2.8411,5.4642 4.3218,-4.3877 -3.6237,4.9798 4.9275,-3.6945 -4.3254,4.3841 5.423,-2.9189 -4.9305,3.6904 5.7975,-2.078 -5.4255,2.9144 6.0425,-1.1907 -5.7992,2.0732 6.1524,-0.2768 -6.0435,1.1856 6.1251,0.6433 -6.1527,0.2717 z" />
- <path
- inkscape:label=""wtf""
- d="m 1961.9452,2939.0803 -8.5654,2.8444 -5.6773,7.016 -2.8444,-8.5654 -7.0159,-5.6773 8.5653,-2.8444 5.6774,-7.0159 2.8443,8.5653 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="0.96525166"
- sodipodi:arg1="0.1798535"
- sodipodi:r2="6.1245413"
- sodipodi:r1="12.249084"
- sodipodi:cy="2936.8892"
- sodipodi:cx="1949.8937"
- sodipodi:sides="4"
- id="path3657"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- sodipodi:type="star" />
- <path
- inkscape:label=""xxx""
- sodipodi:type="star"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="path3659"
- sodipodi:sides="5"
- sodipodi:cx="1949.8937"
- sodipodi:cy="2976.8892"
- sodipodi:r1="12.249084"
- sodipodi:r2="6.1245413"
- sodipodi:arg1="0.1798535"
- sodipodi:arg2="0.80817203"
- inkscape:flatsided="false"
- inkscape:rounded="0"
- inkscape:randomized="0"
- d="m 1961.9452,2979.0803 -7.8206,2.2371 -2.5907,7.7105 -4.5443,-6.7465 -8.1337,-0.081 5.012,-6.4066 -2.4362,-7.7608 7.6419,2.787 6.6281,-4.7152 -0.2891,8.1291 z" />
- <path
- inkscape:label=""abba""
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="path3661"
- d="m 1960.4968,2812.3613 -8.5391,6.2941 -8.539,6.2941 z"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.43566883px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
- <circle
- inkscape:label=""aa""
- r="1.2603201"
- cy="2780.55"
- cx="1946.7977"
- id="circle3663"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0.21478893px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
- </g>
- <path
- id="path3683"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 2225.0033,2700.5501 v -200 m 0,200 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -123.222,-40 h 123.222"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="2045.4561"
- y="2500.5203"
- id="text3689"><tspan
- sodipodi:role="line"
- id="tspan3685"
- x="2045.4561"
- y="2500.5203"
- style="stroke-width:0.5">HMI:Switch</tspan><tspan
- sodipodi:role="line"
- x="2045.4561"
- y="2525.5203"
- style="stroke-width:0.5"
- id="tspan3687">HMI_INT</tspan></text>
- <text
- id="text3693"
- y="2500.5203"
- x="2305.4561"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="2500.5203"
- x="2305.4561"
- id="tspan3691"
- sodipodi:role="line">1</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="2305.4561"
- y="2540.5203"
- id="text3697"><tspan
- sodipodi:role="line"
- id="tspan3695"
- x="2305.4561"
- y="2540.5203"
- style="stroke-width:0.5">2</tspan></text>
- <text
- id="text3701"
- y="2580.5203"
- x="2305.4561"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="2580.5203"
- x="2305.4561"
- sodipodi:role="line"
- id="tspan3699">3</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="2305.4561"
- y="2620.5203"
- id="text3705"><tspan
- id="tspan3703"
- sodipodi:role="line"
- x="2305.4561"
- y="2620.5203"
- style="stroke-width:0.5">42</tspan></text>
- <text
- id="text3709"
- y="2660.5203"
- x="2305.4561"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="2660.5203"
- x="2305.4561"
- sodipodi:role="line"
- id="tspan3707">4</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="2305.4561"
- y="2700.5203"
- id="text3713"><tspan
- id="tspan3711"
- sodipodi:role="line"
- x="2305.4561"
- y="2700.5203"
- style="stroke-width:0.5">5</tspan></text>
- <path
- inkscape:connector-curvature="0"
- d="m 2345.0033,2700.5501 63.222,-100 m -63.222,60 63.222,-60 m -63.222,20 63.222,-20 m -63.222,-20 63.222,20 m -63.222,-60 63.222,60 m -63.222,-100 63.222,100"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path3715"
- sodipodi:nodetypes="cccccccccccc" />
- <g
- inkscape:label="HMI:Switch@/SWITCHINT"
- transform="translate(-140,-244)"
- id="g3805">
- <use
- x="0"
- y="0"
- xlink:href="#path3717"
- id="use3757"
- width="100%"
- height="100%"
- transform="translate(-20.000044,-4.6430426e-5)" />
- <use
- x="0"
- y="0"
- xlink:href="#path3719"
- id="use3759"
- width="100%"
- height="100%"
- transform="translate(-20.000044,-35.134605)" />
- <use
- x="0"
- y="0"
- xlink:href="#path3721"
- id="use3761"
- width="100%"
- height="100%"
- transform="translate(-20.000044,-75.134605)" />
- <use
- x="0"
- y="0"
- xlink:href="#path3723"
- id="use3763"
- width="100%"
- height="100%"
- transform="translate(-20.000044,-115.83893)" />
- <use
- x="0"
- y="0"
- xlink:href="#path3725"
- id="use3765"
- width="100%"
- height="100%"
- transform="translate(-20.000044,43.099156)" />
- <use
- x="0"
- y="0"
- xlink:href="#circle3727"
- id="use3767"
- width="100%"
- height="100%"
- transform="translate(-20.000044,81.204506)" />
- </g>
- <path
- sodipodi:nodetypes="cccccccccccc"
- id="path3807"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 2516.2253,2700.5501 -63.222,-100 m 63.222,60 -63.222,-60 m 63.222,20 -63.222,-20 m 63.222,-20 -63.222,20 m 63.222,-60 -63.222,60 m 63.222,-100 -63.222,100"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:#ffffff;fill-opacity:1;stroke:#fffffc;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend-3)"
- d="m 2515.0423,2490.0031 h -56.322"
- id="path8203-6"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffee;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="2459.113"
- y="2474.7529"
- id="text8753-2"><tspan
- sodipodi:role="line"
- x="2459.113"
- y="2474.7529"
- id="tspan8765-1"
- style="fill:#ffffee;fill-opacity:1;stroke-width:0.5">clone </tspan></text>
- <g
- inkscape:label="HMI:Switch@/SWICTHTHREE"
- id="g5482">
- <g
- inkscape:label="3"
- id="g5259"
- transform="translate(377.68172,1911.1984)">
- <use
- height="100%"
- width="100%"
- id="use4514"
- xlink:href="#g29149"
- y="0"
- x="0"
- transform="matrix(0.1142708,0,0,0.1142708,2084.8332,915.30993)" />
- <use
- height="100%"
- width="100%"
- id="use4516"
- xlink:href="#g19348"
- y="0"
- x="0"
- transform="matrix(0.1142708,0,0,0.1142708,2084.8332,915.30993)" />
- <use
- height="100%"
- width="100%"
- id="use4518"
- xlink:href="#g24628"
- y="0"
- x="0"
- transform="matrix(0.1142708,0,0,0.1142708,2084.8332,915.30993)" />
- </g>
- <use
- inkscape:label="2"
- transform="translate(-84.862699,997.78118)"
- x="0"
- y="0"
- xlink:href="#g3034"
- id="use5261"
- width="100%"
- height="100%" />
- <use
- inkscape:label="1"
- x="0"
- y="0"
- xlink:href="#g8197"
- id="use5459"
- width="100%"
- height="100%"
- transform="matrix(0.79711171,0,0,0.79711171,534.15682,1843.6646)" />
- </g>
- <text
- id="text5488"
- y="2880.5203"
- x="2133.4561"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- id="tspan5486"
- style="stroke-width:0.5"
- y="2880.5203"
- x="2133.4561"
- sodipodi:role="line">HMI:Switch</tspan><tspan
- id="tspan5492"
- style="stroke-width:0.5"
- y="2905.5203"
- x="2133.4561"
- sodipodi:role="line">can contain</tspan><tspan
- id="tspan5494"
- style="stroke-width:0.5"
- y="2930.5203"
- x="2133.4561"
- sodipodi:role="line">other widgets</tspan><tspan
- id="tspan5498"
- style="stroke-width:0.5"
- y="2955.5203"
- x="2133.4561"
- sodipodi:role="line">(or clones</tspan><tspan
- id="tspan5502"
- style="stroke-width:0.5"
- y="2980.5203"
- x="2133.4561"
- sodipodi:role="line">of them)</tspan></text>
- </g>
- <g
- id="g9918"
- transform="translate(1340)">
- <use
- height="100%"
- width="100%"
- transform="translate(2680)"
- id="use9906"
- xlink:href="#g9808"
- y="0"
- x="0"
- inkscape:label="HMI:Page:DropDown" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- x="4192.8076"
- y="1610.3906"
- id="text5596"><tspan
- sodipodi:role="line"
- id="tspan5594"
- x="4192.8076"
- y="1610.3906">HMI:DropDown:[item0:item1:....]@path</tspan></text>
- <text
- id="text6121"
- y="1632.0127"
- x="4194.1895"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- xml:space="preserve"><tspan
- style="stroke-width:0.25"
- y="1632.0127"
- x="4194.1895"
- sodipodi:role="line"
- id="tspan6119">TODO</tspan></text>
- </g>
- <g
- id="g9926"
- transform="translate(1340)">
- <use
- height="100%"
- width="100%"
- transform="translate(2680)"
- id="use9908"
- xlink:href="#g9813"
- y="0"
- x="0"
- inkscape:label="HMI:Page:Input" />
- <text
- id="text6570"
- y="2390.4241"
- x="4192.2148"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- xml:space="preserve"><tspan
- y="2390.4241"
- x="4192.2148"
- id="tspan6568"
- sodipodi:role="line">HMI:Input@path</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- x="4193.5967"
- y="2412.0461"
- id="text6604"><tspan
- id="tspan6602"
- sodipodi:role="line"
- x="4193.5967"
- y="2412.0461"
- style="stroke-width:0.25">TODO</tspan></text>
- </g>
- <g
- id="g9933"
- transform="translate(1340)">
- <use
- height="100%"
- width="100%"
- transform="translate(2680)"
- id="use9910"
- xlink:href="#g9818"
- y="0"
- x="0"
- inkscape:label="HMI:Page:Display" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
- x="4192.8076"
- y="3170.3906"
- id="text6827"><tspan
- sodipodi:role="line"
- id="tspan6825"
- x="4192.8076"
- y="3170.3906">HMI:Display@path</tspan></text>
- <text
- id="text6831"
- y="3192.0127"
- x="4194.1895"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#fffffb;fill-opacity:1;stroke:none;stroke-width:0.25"
- xml:space="preserve"><tspan
- style="fill:#fffffb;fill-opacity:1;stroke-width:0.25"
- y="3192.0127"
- x="4194.1895"
- sodipodi:role="line"
- id="tspan6829">TODO</tspan></text>
- </g>
- <g
- id="g9803">
- <rect
- style="color:#000000;fill-opacity:1"
- id="rect8168"
- width="1280"
- height="720"
- x="1480"
- y="780"
- inkscape:label="page" />
- <path
- inkscape:label="button"
- style="stroke-width:8.65513134"
- d="m 2621.5859,851.9308 h -25.9654 L 2664.8616,800 l 69.241,51.9308 h -25.9654 v 51.9308 h -34.6205 v -25.9654 h -17.3103 v 25.9654 h -34.6205 z"
- id="polygon8206"
- inkscape:connector-curvature="0" />
- <text
- inkscape:label="text"
- id="text8212"
- y="859.07928"
- x="2664.4124"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;display:inline;fill-opacity:1;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;fill-opacity:1;stroke-width:0.5"
- y="859.07928"
- x="2664.4124"
- id="tspan8210"
- sodipodi:role="line">Home</tspan></text>
- </g>
- <g
- id="g9808">
- <use
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- x="0"
- y="0"
- xlink:href="#rect8168"
- id="use8811"
- width="100%"
- height="100%"
- transform="translate(0,780)" />
- <g
- id="g9945"
- inkscape:label="HMI:Jump:Home">
- <use
- transform="translate(0,780)"
- height="100%"
- width="100%"
- id="use8813"
- xlink:href="#polygon8206"
- y="0"
- x="0"
- style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke-width:8.65513134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <use
- transform="translate(0,780)"
- height="100%"
- width="100%"
- id="use8815"
- xlink:href="#text8212"
- y="0"
- x="0"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.49999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- </g>
- </g>
- <g
- id="g9813">
- <use
- style="opacity:1;vector-effect:none;fill:#b3b3b3;fill-opacity:1;stroke:#000000;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- transform="translate(0,1560)"
- height="100%"
- width="100%"
- id="use8838"
- xlink:href="#rect8168"
- y="0"
- x="0" />
- <g
- id="g9941"
- inkscape:label="HMI:Jump:Home">
- <use
- x="0"
- y="0"
- xlink:href="#polygon8206"
- id="use8840"
- width="100%"
- height="100%"
- transform="translate(0,1560)"
- style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke-width:8.65513134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <use
- x="0"
- y="0"
- xlink:href="#text8212"
- id="use8842"
- width="100%"
- height="100%"
- transform="translate(0,1560)"
- style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.49999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- </g>
- </g>
- <g
- id="g9818">
- <use
- style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.06666672;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- x="0"
- y="0"
- xlink:href="#rect8168"
- id="use8877"
- width="100%"
- height="100%"
- transform="translate(0,2340)" />
- <g
- id="g9937"
- inkscape:label="HMI:Jump:Home">
- <use
- transform="translate(0,2340)"
- height="100%"
- width="100%"
- id="use8879"
- xlink:href="#polygon8206"
- y="0"
- x="0"
- style="opacity:1;vector-effect:none;fill:#fffffc;fill-opacity:1;stroke:none;stroke-width:8.65513134;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <use
- transform="translate(0,2340)"
- height="100%"
- width="100%"
- id="use8881"
- xlink:href="#text8212"
- y="0"
- x="0"
- style="opacity:1;vector-effect:none;fill:#000009;fill-opacity:1;stroke:none;stroke-width:0.49999997px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- </g>
- </g>
- <g
- id="g9959"
- transform="translate(2680)">
- <use
- inkscape:label="HMI:Page:Button"
- x="0"
- y="0"
- xlink:href="#g9808"
- id="use9947"
- transform="translate(2680)"
- width="100%"
- height="100%" />
- <text
- id="text9951"
- y="1610.3906"
- x="4192.8076"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- xml:space="preserve"><tspan
- y="1610.3906"
- x="4192.8076"
- id="tspan9949"
- sodipodi:role="line">HMI:Button@path</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- x="4194.1895"
- y="1632.0127"
- id="text9957"><tspan
- id="tspan9955"
- sodipodi:role="line"
- x="4194.1895"
- y="1632.0127"
- style="stroke-width:0.25">TODO</tspan></text>
- </g>
- <g
- id="g9973"
- transform="translate(2680)">
- <use
- inkscape:label="HMI:Page:ForEach"
- x="0"
- y="0"
- xlink:href="#g9813"
- id="use9961"
- transform="translate(2680)"
- width="100%"
- height="100%" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- x="4192.2148"
- y="2390.4241"
- id="text9965"><tspan
- sodipodi:role="line"
- id="tspan9963"
- x="4192.2148"
- y="2390.4241">HMI:ForEach@path</tspan></text>
- <text
- id="text9971"
- y="2412.0461"
- x="4193.5967"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- xml:space="preserve"><tspan
- style="stroke-width:0.25"
- y="2412.0461"
- x="4193.5967"
- sodipodi:role="line"
- id="tspan9969">TODO</tspan></text>
- </g>
- <g
- id="g9985"
- transform="translate(2680)">
- <use
- inkscape:label="HMI:Page:JsonTable"
- x="0"
- y="0"
- xlink:href="#g9818"
- id="use9975"
- transform="translate(2680)"
- width="100%"
- height="100%" />
- <text
- id="text9979"
- y="3170.3906"
- x="4192.8076"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
- xml:space="preserve"><tspan
- y="3170.3906"
- x="4192.8076"
- id="tspan9977"
- sodipodi:role="line">HMI:JsonTable@path</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#fffffb;fill-opacity:1;stroke:none;stroke-width:0.25"
- x="4194.1895"
- y="3192.0127"
- id="text9983"><tspan
- id="tspan9981"
- sodipodi:role="line"
- x="4194.1895"
- y="3192.0127"
- style="fill:#fffffb;fill-opacity:1;stroke-width:0.25">TODO</tspan></text>
- </g>
- <g
- id="g31721"
- inkscape:label="Page Jump and Back">
- <use
- inkscape:label="HMI:Page:DropDown"
- x="0"
- y="0"
- xlink:href="#g9808"
- id="use10505"
- transform="translate(1340)"
- width="100%"
- height="100%"
- style="display:inline"
- sodipodi:insensitive="true" />
- <text
- id="text10509"
- y="1610.3906"
- x="2852.8076"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- xml:space="preserve"><tspan
- y="1610.3906"
- x="2852.8076"
- id="tspan10507"
- sodipodi:role="line">HMI:Page:PageName[@RootPath]</tspan><tspan
- y="1660.3906"
- x="2852.8076"
- sodipodi:role="line"
- id="tspan31421">HMI:Jump:PageName[@RelativePath]</tspan><tspan
- y="1710.3906"
- x="2852.8076"
- sodipodi:role="line"
- id="tspan31423">HMI:Back</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- x="2854.1895"
- y="1744.0127"
- id="text10513"><tspan
- id="tspan10511"
- sodipodi:role="line"
- x="2854.1895"
- y="1744.0127"
- style="stroke-width:0.25">Pages are full screen, only one is displayed at the same time.</tspan><tspan
- sodipodi:role="line"
- x="2854.1895"
- y="1756.5127"
- style="stroke-width:0.25"
- id="tspan31431">If widget's bounding box is included in page bounding box, then widget is part of page.</tspan><tspan
- sodipodi:role="line"
- x="2854.1895"
- y="1769.0127"
- style="stroke-width:0.25"
- id="tspan24710">Page change is triggered by HMI:Jump and HMI:Back (TODO: /CURRENTPAGE).</tspan><tspan
- sodipodi:role="line"
- x="2854.1895"
- y="1781.5127"
- style="stroke-width:0.25"
- id="tspan31507">HMI:Back takes no parameter and just go back one step in page change history.</tspan><tspan
- sodipodi:role="line"
- x="2854.1895"
- y="1794.0127"
- style="stroke-width:0.25"
- id="tspan31509">HMI:Jump can have "inactive", "active" and "disabled" labeled children:</tspan><tspan
- sodipodi:role="line"
- x="2854.1895"
- y="1806.5127"
- style="stroke-width:0.25"
- id="tspan31511"> - "inactive" is shown when target page is not currently displayed</tspan><tspan
- sodipodi:role="line"
- x="2854.1895"
- y="1819.0127"
- style="stroke-width:0.25"
- id="tspan31513"> - "active" is shown when target page is currently displayed</tspan><tspan
- sodipodi:role="line"
- x="2854.1895"
- y="1831.5127"
- style="stroke-width:0.25"
- id="tspan31515"> - "disabled" is shown when relative page's RootPath is set to 0, disabling jump.</tspan></text>
- <text
- id="text31455"
- y="2112.0127"
- x="2854.1895"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- xml:space="preserve"><tspan
- style="stroke-width:0.25"
- y="2112.0127"
- x="2854.1895"
- sodipodi:role="line"
- id="tspan31466">When [@RootPath] is given, page is a relative page.</tspan><tspan
- id="tspan31443"
- style="stroke-width:0.25"
- y="2124.5127"
- x="2854.1895"
- sodipodi:role="line">When using HMI:Jump to reach a relative page, a compatible [@RelativePath] may be provided.</tspan><tspan
- id="tspan31445"
- style="stroke-width:0.25"
- y="2137.0127"
- x="2854.1895"
- sodipodi:role="line">To be compatible, RootPath and RelativePath must both point to same HMI_NODE (i.e same POU).</tspan><tspan
- id="tspan31447"
- style="stroke-width:0.25"
- y="2149.5127"
- x="2854.1895"
- sodipodi:role="line">Every widget using a path descendant of RootPath in a relative page is relative.</tspan><tspan
- id="tspan31449"
- style="stroke-width:0.25"
- y="2162.0127"
- x="2854.1895"
- sodipodi:role="line">Relative widgets get the RootPath section of their path replaced by RelativePath.</tspan><tspan
- id="tspan31451"
- style="stroke-width:0.25"
- y="2174.5127"
- x="2854.1895"
- sodipodi:role="line" /><tspan
- id="tspan31453"
- style="stroke-width:0.25"
- y="2187.0127"
- x="2854.1895"
- sodipodi:role="line" /></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- x="2852.8076"
- y="2082.3906"
- id="text31500"><tspan
- id="tspan31498"
- sodipodi:role="line"
- x="2852.8076"
- y="2082.3906">Relative pages</tspan></text>
- <rect
- y="1570.8585"
- x="3642.8337"
- height="164.25635"
- width="236.32014"
- id="rect20533"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
- <rect
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="rect28563"
- width="127.0032"
- height="52.087524"
- x="3743.3491"
- y="1588.9159" />
- <rect
- y="1674.9159"
- x="3743.3491"
- height="54.183105"
- width="129.09868"
- id="rect28565"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
- <rect
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="rect28597"
- width="236.32014"
- height="164.25635"
- x="3642.8337"
- y="1748.8585" />
- <rect
- y="1766.9159"
- x="3743.3491"
- height="52.087524"
- width="127.0032"
- id="rect28599"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
- <rect
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="rect28601"
- width="129.09868"
- height="54.183105"
- x="3743.3491"
- y="1852.9159" />
- <rect
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="rect28625"
- width="127.0032"
- height="52.087524"
- x="3743.3491"
- y="1944.9159" />
- <rect
- y="2030.9159"
- x="3743.3491"
- height="54.183105"
- width="129.09868"
- id="rect28627"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
- <rect
- y="1926.8585"
- x="3642.8337"
- height="164.25635"
- width="236.32014"
- id="rect28623"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
- <rect
- y="2120.916"
- x="3743.3491"
- height="52.087524"
- width="127.0032"
- id="rect28651"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
- <rect
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="rect28653"
- width="129.09868"
- height="54.183105"
- x="3743.3491"
- y="2206.916" />
- <rect
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="rect28649"
- width="236.32014"
- height="164.25635"
- x="3642.8337"
- y="2102.8584" />
- <rect
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none"
- id="rect29757"
- width="98.502846"
- height="52.087524"
- x="3355.3491"
- y="1870.9159" />
- <rect
- y="1958.9159"
- x="3355.3491"
- height="54.183105"
- width="97.664452"
- id="rect29759"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
- <g
- transform="matrix(0.9339736,0,0,0.9339736,570.22762,-7.4794549)"
- id="g19637">
- <path
- style="fill:#41fe00;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 3397.4424,1713.5338 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- id="path841"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:#41fefb;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3397.4424,1998.8049 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- id="circle851"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:#41fe00;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3397.4424,1903.7145 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- id="circle853"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#41fefb;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 3397.4424,1808.6242 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- id="circle855"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#888888;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3179.444,1920.411 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- id="circle843"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:#ffff02;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3288.4432,1951.2597 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- id="circle847"
- inkscape:connector-curvature="0" />
- <path
- style="fill:#ffff02;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3288.4432,1761.079 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- id="circle849"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker14681)"
- d="m 3202.1732,1945.5633 64.3092,22.561"
- id="path873"
- inkscape:connector-curvature="0" />
- <path
- sodipodi:nodetypes="cc"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker22786)"
- d="m 3189.8361,1923.0289 81.406,-124.1166"
- id="path875"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker20902)"
- d="m 3309.3661,1983.2134 67.1534,29.2922"
- id="path877"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker14281)"
- d="m 3309.3661,1964.9604 67.1534,-29.2921"
- id="path879-5"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker13481)"
- d="m 3309.3661,1793.0327 67.1534,29.2922"
- id="path881"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker13093)"
- d="m 3309.3661,1774.7797 67.1534,-29.2922"
- id="path883"
- inkscape:connector-curvature="0" />
- <path
- inkscape:connector-curvature="0"
- id="path14267"
- d="m 3397.4424,2188.9856 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- style="opacity:1;vector-effect:none;fill:#41fefb;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path14269"
- d="m 3397.4424,2093.8953 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- style="opacity:1;vector-effect:none;fill:#41fe00;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path14271"
- d="m 3288.4432,2141.4404 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- style="opacity:1;vector-effect:none;fill:#ffff02;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path14275"
- d="m 3309.3661,2173.3942 67.1534,29.2921"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12717)" />
- <path
- inkscape:connector-curvature="0"
- id="path14277"
- d="m 3309.3661,2155.1411 67.1534,-29.2921"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker13869)" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path15085"
- d="m 3185.5597,1965.1532 94.6058,177.9637"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker15089)" />
- <path
- inkscape:connector-curvature="0"
- id="path12689"
- d="m 3179.444,2205.6822 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- style="fill:#df28c1;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path12695"
- d="m 2790.1344,2063.0466 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- style="fill:#ba0000;fill-opacity:1;stroke:none;stroke-width:1.88977504;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path12697"
- d="m 2899.1336,2158.137 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- style="fill:#2e8900;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path12699"
- d="m 2899.1336,1967.9563 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- style="fill:#d77f00;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path12701"
- d="m 2807.3355,2100.88 74.597,65.0781"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1197)" />
- <path
- inkscape:connector-curvature="0"
- id="path12703"
- d="m 2807.3355,2070.8677 74.597,-65.0781"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1207)" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path12705"
- d="m 2919.9445,2188.2957 238.5766,31.0872"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1187)" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path12707"
- d="m 2917.4342,2170.0427 45.1645,-26.1509"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1177)" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path12709"
- d="m 2920.5754,1997.6662 40.6771,27.946"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1167)" />
- <path
- sodipodi:nodetypes="cc"
- inkscape:connector-curvature="0"
- id="path12711"
- d="m 2916.3544,1974.9257 242.1667,-22.5609"
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1157)" />
- <path
- style="opacity:1;vector-effect:none;fill:#41fefb;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3397.4424,2378.9856 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- id="path21346"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:#41fe00;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3397.4424,2283.8953 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- id="path21348"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:#ffff02;fill-opacity:1;stroke:#000100;stroke-width:1.88977504;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:5.66932509, 1.88977503;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3288.4432,2331.4404 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- id="path21350"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12717)"
- d="m 3309.3661,2363.3942 67.1534,29.2921"
- id="path21352"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker13869)"
- d="m 3309.3661,2345.1411 67.1534,-29.2921"
- id="path21354"
- inkscape:connector-curvature="0" />
- <path
- style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.88976383;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker21366)"
- d="m 3192.561,2246.4305 82.8503,88.6965"
- id="path21362"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- inkscape:connector-curvature="0"
- id="path12691"
- d="m 2982.4361,2110.5918 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- style="fill:#4528c1;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <path
- inkscape:connector-curvature="0"
- id="path12693"
- d="m 2982.4361,2015.5015 a 22.827207,22.827207 0 0 1 22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,22.8272 22.827207,22.827207 0 0 1 -22.8272,-22.8272 22.827207,22.827207 0 0 1 22.8272,-22.8272 z"
- style="fill:#4585c1;fill-opacity:1;stroke:#000100;stroke-width:1.88976383;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- </g>
- <text
- id="text20892"
- y="1947.4917"
- x="3172.6416"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="1947.4917"
- x="3172.6416"
- id="tspan20890"
- sodipodi:role="line">/</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- x="3644.752"
- y="1580.1208"
- id="text23772"><tspan
- id="tspan28514"
- sodipodi:role="line"
- x="3644.752"
- y="1580.1208"
- style="stroke-width:0.23349333">HMI:MyPage@/A/B/C0</tspan></text>
- <path
- inkscape:connector-curvature="0"
- id="path24724"
- d="M 3988.9001,1724.9696 H 3881.6162"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.7649895;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker25174)" />
- <text
- id="text25616"
- y="1719.4069"
- x="3911.6536"
- style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
- xml:space="preserve"><tspan
- style="stroke-width:0.33149907"
- y="1719.4069"
- x="3911.6536"
- id="tspan25614"
- sodipodi:role="line">HMI:Jump:MyPage</tspan></text>
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.7649895;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker25626)"
- d="M 3988.9001,1902.9696 H 3881.6162"
- id="path25618"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
- x="3911.6536"
- y="1897.4069"
- id="text25622"><tspan
- sodipodi:role="line"
- id="tspan25620"
- x="3911.6536"
- y="1897.4069"
- style="stroke-width:0.33149907">HMI:Jump:MyPage@/A/B/C1</tspan></text>
- <path
- inkscape:connector-curvature="0"
- id="path26120"
- d="M 3988.9001,2076.9696 H 3881.6162"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.7649895;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker26128)" />
- <text
- id="text26124"
- y="2071.4067"
- x="3911.6536"
- style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
- xml:space="preserve"><tspan
- style="stroke-width:0.33149907"
- y="2071.4067"
- x="3911.6536"
- id="tspan26122"
- sodipodi:role="line">HMI:Jump:MyPage@/A/B/C2</tspan></text>
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.7649895;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker27950)"
- d="M 3988.9001,2254.9696 H 3881.6162"
- id="path27942"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
- x="3911.6536"
- y="2249.4067"
- id="text27946"><tspan
- sodipodi:role="line"
- id="tspan27944"
- x="3911.6536"
- y="2249.4067"
- style="stroke-width:0.33149907">HMI:Jump:MyPage@/D/E/F</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3270.6416"
- y="1859.4917"
- id="text28484"><tspan
- sodipodi:role="line"
- id="tspan28482"
- x="3270.6416"
- y="1859.4917"
- style="stroke-width:0.5">A</tspan></text>
- <text
- id="text28488"
- y="1813.4917"
- x="3532.6416"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="1813.4917"
- x="3532.6416"
- id="tspan28486"
- sodipodi:role="line">B</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3628.6416"
- y="1665.4917"
- id="text28492"><tspan
- sodipodi:role="line"
- id="tspan28490"
- x="3628.6416"
- y="1665.4917"
- style="stroke-width:0.5">C0</tspan></text>
- <text
- id="text28496"
- y="1841.4917"
- x="3628.6416"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="1841.4917"
- x="3628.6416"
- id="tspan28494"
- sodipodi:role="line">C1</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3628.6416"
- y="2021.4917"
- id="text28500"><tspan
- sodipodi:role="line"
- id="tspan28498"
- x="3628.6416"
- y="2021.4917"
- style="stroke-width:0.5">C2</tspan></text>
- <text
- id="text28504"
- y="2035.4917"
- x="3270.6416"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="2035.4917"
- x="3270.6416"
- id="tspan28502"
- sodipodi:role="line">D</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3530.6416"
- y="2079.4917"
- id="text28508"><tspan
- sodipodi:role="line"
- id="tspan28506"
- x="3530.6416"
- y="2079.4917"
- style="stroke-width:0.5">E</tspan></text>
- <text
- id="text28512"
- y="2199.4917"
- x="3634.6416"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="2199.4917"
- x="3634.6416"
- id="tspan28510"
- sodipodi:role="line">F</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
- x="3911.6536"
- y="1739.4069"
- id="text28532"><tspan
- sodipodi:role="line"
- id="tspan28530"
- x="3911.6536"
- y="1739.4069"
- style="stroke-width:0.33149907">HMI:Jump:MyPage@/A/B/C0</tspan></text>
- <text
- id="text28488-8"
- y="1620.8591"
- x="3736.2322"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="1620.8591"
- x="3736.2322"
- id="tspan28486-8"
- sodipodi:role="line">G</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3736.2322"
- y="1710.8591"
- id="text28587"><tspan
- sodipodi:role="line"
- id="tspan28585"
- x="3736.2322"
- y="1710.8591"
- style="stroke-width:0.5">H</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- x="3758.752"
- y="1598.1208"
- id="text28591"><tspan
- sodipodi:role="line"
- id="tspan28589"
- x="3758.752"
- y="1598.1208"
- style="stroke-width:0.23349333">HMI:Widget@/A/B/C0/G</tspan></text>
- <text
- id="text28595"
- y="1684.1208"
- x="3758.752"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- xml:space="preserve"><tspan
- style="stroke-width:0.23349333"
- y="1684.1208"
- x="3758.752"
- id="tspan28593"
- sodipodi:role="line">HMI:Widget@/A/B/C0/H</tspan></text>
- <text
- id="text28605"
- y="1758.1208"
- x="3644.752"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- xml:space="preserve"><tspan
- style="stroke-width:0.23349333"
- y="1758.1208"
- x="3644.752"
- sodipodi:role="line"
- id="tspan28603">HMI:MyPage@/A/B/C0</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3736.2322"
- y="1798.8591"
- id="text28609"><tspan
- sodipodi:role="line"
- id="tspan28607"
- x="3736.2322"
- y="1798.8591"
- style="stroke-width:0.5">G</tspan></text>
- <text
- id="text28613"
- y="1888.8591"
- x="3736.2322"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="1888.8591"
- x="3736.2322"
- id="tspan28611"
- sodipodi:role="line">H</tspan></text>
- <text
- id="text28617"
- y="1776.1208"
- x="3758.752"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- xml:space="preserve"><tspan
- style="stroke-width:0.23349333"
- y="1776.1208"
- x="3758.752"
- id="tspan28615"
- sodipodi:role="line">HMI:Widget@/A/B/C0/G</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- x="3758.752"
- y="1862.1208"
- id="text28621"><tspan
- sodipodi:role="line"
- id="tspan28619"
- x="3758.752"
- y="1862.1208"
- style="stroke-width:0.23349333">HMI:Widget@/A/B/C0/H</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- x="3644.752"
- y="1936.1208"
- id="text28631"><tspan
- id="tspan28629"
- sodipodi:role="line"
- x="3644.752"
- y="1936.1208"
- style="stroke-width:0.23349333">HMI:MyPage@/A/B/C0</tspan></text>
- <text
- id="text28635"
- y="1976.8591"
- x="3736.2322"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="1976.8591"
- x="3736.2322"
- id="tspan28633"
- sodipodi:role="line">G</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3736.2322"
- y="2066.8591"
- id="text28639"><tspan
- sodipodi:role="line"
- id="tspan28637"
- x="3736.2322"
- y="2066.8591"
- style="stroke-width:0.5">H</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- x="3758.752"
- y="1954.1208"
- id="text28643"><tspan
- sodipodi:role="line"
- id="tspan28641"
- x="3758.752"
- y="1954.1208"
- style="stroke-width:0.23349333">HMI:Widget@/A/B/C0/G</tspan></text>
- <text
- id="text28647"
- y="2040.1208"
- x="3758.752"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- xml:space="preserve"><tspan
- style="stroke-width:0.23349333"
- y="2040.1208"
- x="3758.752"
- id="tspan28645"
- sodipodi:role="line">HMI:Widget@/A/B/C0/H</tspan></text>
- <text
- id="text28657"
- y="2112.1208"
- x="3644.752"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- xml:space="preserve"><tspan
- style="stroke-width:0.23349333"
- y="2112.1208"
- x="3644.752"
- sodipodi:role="line"
- id="tspan28655">HMI:MyPage@/A/B/C0</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3736.2322"
- y="2152.8591"
- id="text28661"><tspan
- sodipodi:role="line"
- id="tspan28659"
- x="3736.2322"
- y="2152.8591"
- style="stroke-width:0.5">G</tspan></text>
- <text
- id="text28665"
- y="2242.8591"
- x="3736.2322"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="2242.8591"
- x="3736.2322"
- id="tspan28663"
- sodipodi:role="line">H</tspan></text>
- <text
- id="text28669"
- y="2130.1208"
- x="3758.752"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- xml:space="preserve"><tspan
- style="stroke-width:0.23349333"
- y="2130.1208"
- x="3758.752"
- id="tspan28667"
- sodipodi:role="line">HMI:Widget@/A/B/C0/G</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- x="3758.752"
- y="2216.1208"
- id="text28673"><tspan
- sodipodi:role="line"
- id="tspan28671"
- x="3758.752"
- y="2216.1208"
- style="stroke-width:0.23349333">HMI:Widget@/A/B/C0/H</tspan></text>
- <text
- id="text28677"
- y="1638.1208"
- x="3758.752"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- xml:space="preserve"><tspan
- style="stroke-width:0.23349333"
- y="1638.1208"
- x="3758.752"
- id="tspan28675"
- sodipodi:role="line">real path: /A/B/C0/G</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- x="3758.752"
- y="1724.1208"
- id="text28681"><tspan
- sodipodi:role="line"
- id="tspan28679"
- x="3758.752"
- y="1724.1208"
- style="stroke-width:0.23349333">real path: /A/B/C0/H</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- x="3758.752"
- y="1816.1208"
- id="text28685"><tspan
- sodipodi:role="line"
- id="tspan28683"
- x="3758.752"
- y="1816.1208"
- style="stroke-width:0.23349333">real path: /A/B/C1/G</tspan></text>
- <text
- id="text28689"
- y="1902.1208"
- x="3758.752"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- xml:space="preserve"><tspan
- style="stroke-width:0.23349333"
- y="1902.1208"
- x="3758.752"
- id="tspan28687"
- sodipodi:role="line">real path: /A/B/C1/H</tspan></text>
- <text
- id="text28693"
- y="1994.1208"
- x="3758.752"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- xml:space="preserve"><tspan
- style="stroke-width:0.23349333"
- y="1994.1208"
- x="3758.752"
- id="tspan28691"
- sodipodi:role="line">real path: /A/B/C2/G</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- x="3758.752"
- y="2080.1208"
- id="text28697"><tspan
- sodipodi:role="line"
- id="tspan28695"
- x="3758.752"
- y="2080.1208"
- style="stroke-width:0.23349333">real path: /A/B/C3/H</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- x="3758.752"
- y="2168.1208"
- id="text28701"><tspan
- sodipodi:role="line"
- id="tspan28699"
- x="3758.752"
- y="2168.1208"
- style="stroke-width:0.23349333">real path: /D/E/F/G</tspan></text>
- <text
- id="text28705"
- y="2254.1208"
- x="3758.752"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- xml:space="preserve"><tspan
- style="stroke-width:0.23349333"
- y="2254.1208"
- x="3758.752"
- id="tspan28703"
- sodipodi:role="line">real path: /D/E/F/H</tspan></text>
- <rect
- y="1854.8585"
- x="3314.7683"
- height="164.25647"
- width="147.04692"
- id="rect29755"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.86794662;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- x="3316.752"
- y="1864.1208"
- id="text29763"><tspan
- id="tspan29761"
- sodipodi:role="line"
- x="3316.752"
- y="1864.1208"
- style="stroke-width:0.23349333">HMI:SomePage</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- x="3370.752"
- y="1880.1208"
- id="text29767"><tspan
- sodipodi:role="line"
- id="tspan29765"
- x="3370.752"
- y="1880.1208"
- style="stroke-width:0.23349333">HMI:Widget@/A/I</tspan></text>
- <text
- id="text29771"
- y="1968.1208"
- x="3370.752"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- xml:space="preserve"><tspan
- style="stroke-width:0.23349333"
- y="1968.1208"
- x="3370.752"
- id="tspan29769"
- sodipodi:role="line">HMI:Widget@/D/J</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3352.3206"
- y="1902.8329"
- id="text28484-9"><tspan
- sodipodi:role="line"
- id="tspan28482-7"
- x="3352.3206"
- y="1902.8329"
- style="stroke-width:0.5">I</tspan></text>
- <text
- id="text29985"
- y="1992.8329"
- x="3352.3206"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="stroke-width:0.5"
- y="1992.8329"
- x="3352.3206"
- id="tspan29983"
- sodipodi:role="line">J</tspan></text>
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.7649895;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker30413)"
- d="M 3572.4377,1951.115 H 3465.1538"
- id="path30405"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
- x="3465.8237"
- y="1967.2129"
- id="text30409"><tspan
- sodipodi:role="line"
- id="tspan30407"
- x="3465.8237"
- y="1967.2129"
- style="stroke-width:0.33149907">HMI:Jump:SomePage</tspan></text>
- <text
- id="text31389"
- y="1912.1208"
- x="3124.752"
- style="font-style:normal;font-weight:normal;font-size:9.33974457px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.23349333"
- xml:space="preserve"><tspan
- style="stroke-width:0.23349333"
- y="1912.1208"
- x="3124.752"
- sodipodi:role="line"
- id="tspan31387">HMI_TREE root</tspan></text>
- <path
- inkscape:connector-curvature="0"
- id="path12699-3"
- d="m 2905.556,1872.8754 a 21.320009,21.320009 0 0 1 21.32,21.32 21.320009,21.320009 0 0 1 -21.32,21.32 21.320009,21.320009 0 0 1 -21.32,-21.32 21.320009,21.320009 0 0 1 21.32,-21.32 z"
- style="fill:none;fill-opacity:1;stroke:#000100;stroke-width:1.76499999;stroke-miterlimit:4;stroke-dasharray:5.29499996, 1.76499999;stroke-dashoffset:0;stroke-opacity:1"
- inkscape:transform-center-x="-171.89143"
- inkscape:transform-center-y="-18.96737" />
- <path
- style="fill:none;fill-opacity:1;stroke:#000100;stroke-width:1.7649895;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- d="m 2905.5559,1920.8755 a 21.320009,21.320009 0 0 1 21.32,21.32 21.320009,21.320009 0 0 1 -21.32,21.32 21.320009,21.320009 0 0 1 -21.32,-21.32 21.320009,21.320009 0 0 1 21.32,-21.32 z"
- id="path841-0"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
- x="2940.9072"
- y="1897.7371"
- id="text30409-9"><tspan
- sodipodi:role="line"
- id="tspan30407-2"
- x="2940.9072"
- y="1897.7371"
- style="stroke-width:0.33149907">HMI_NODE in a POU</tspan></text>
- <text
- id="text31781"
- y="1945.7371"
- x="2940.9072"
- style="font-style:normal;font-weight:normal;font-size:13.25997066px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33149907"
- xml:space="preserve"><tspan
- style="stroke-width:0.33149907"
- y="1945.7371"
- x="2940.9072"
- id="tspan31779"
- sodipodi:role="line">HMI_* variable</tspan></text>
- </g>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- x="2852.2148"
- y="1710.4241"
- id="text10521-7"><tspan
- sodipodi:role="line"
- id="tspan10519-6"
- x="2852.2148"
- y="1745.8147" /></text>
- <g
- id="g33071"
- inkscape:label="KeyPad page">
- <use
- inkscape:label="HMI:Page:KeyPad"
- x="0"
- y="0"
- xlink:href="#g9813"
- id="use10517"
- transform="translate(1340)"
- width="100%"
- height="100%"
- sodipodi:insensitive="true" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- x="2852.2148"
- y="2390.4241"
- id="text10521"><tspan
- sodipodi:role="line"
- id="tspan10519"
- x="2852.2148"
- y="2390.4241">HMI:KeyPad:HMI_TYPE[:HMI_TYPE...]</tspan></text>
- <text
- id="text10525"
- y="2412.0461"
- x="2853.5967"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- xml:space="preserve"><tspan
- style="stroke-width:0.25"
- y="2412.0461"
- x="2853.5967"
- sodipodi:role="line"
- id="tspan10523">KeyPad widget let user draw keyboard for different types of input.</tspan><tspan
- style="stroke-width:0.25"
- y="2424.5461"
- x="2853.5967"
- sodipodi:role="line"
- id="tspan33108">It is shown for example when editing a value from HMI:Input widget.</tspan></text>
- <g
- id="g33240"
- transform="translate(0,4.0539551)">
- <rect
- style="fill:url(#pattern33036);stroke:none;stroke-width:0.34027249"
- width="435.5488"
- height="244.9962"
- x="2860.2483"
- y="2779.1428"
- id="rect32318" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:16.32951546px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40823787"
- x="2872.0142"
- y="2770.2192"
- id="text33049"><tspan
- sodipodi:role="line"
- id="tspan33047"
- x="2872.0142"
- y="2770.2192"
- style="stroke-width:0.40823787">HMI:Keypad:HMI_STRING:HMI_LOCAL:PAGE_LOCAL</tspan></text>
- </g>
- <g
- id="g33245"
- transform="translate(-40)">
- <rect
- style="fill:url(#pattern33045);stroke:none;stroke-width:0.34027249"
- width="435.5488"
- height="244.9962"
- x="3541.9167"
- y="2783.1968"
- id="rect33043" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:16.32951546px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40823787"
- x="3631.9973"
- y="2772.2732"
- id="text33053"><tspan
- sodipodi:role="line"
- id="tspan33051"
- x="3631.9973"
- y="2772.2732"
- style="stroke-width:0.40823787">HMI:Keypad:HMI_INT:HMI_REAL</tspan></text>
- </g>
- <g
- id="g33235"
- transform="translate(80)">
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3046.575,2704.1388 v -240"
- id="path33345"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3046.575,2704.1388 h 63.222"
- id="path33343"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3046.575,2664.1388 h 63.222"
- id="path33341"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3046.575,2624.1388 h 63.222"
- id="path33339"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3046.575,2584.1388 h 63.222"
- id="path33337"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3046.575,2544.1388 h 63.222"
- id="path33335"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 2986.575,2464.1388 h 123.222"
- id="path3520-3"
- inkscape:connector-curvature="0" />
- <text
- id="text3543-5"
- y="2507.3318"
- x="3118.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2507.3318"
- x="3118.6919"
- id="tspan3541-1"
- sodipodi:role="line">Info</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3118.6919"
- y="2547.3318"
- id="text3547-7"><tspan
- sodipodi:role="line"
- id="tspan3545-4"
- x="3118.6919"
- y="2547.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">Esc</tspan></text>
- <text
- id="text3551-3"
- y="2587.3318"
- x="3118.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2587.3318"
- x="3118.6919"
- sodipodi:role="line"
- id="tspan3553-1">Shift</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3118.6919"
- y="2627.3318"
- id="text3559-4"><tspan
- id="tspan3557-6"
- sodipodi:role="line"
- x="3118.6919"
- y="2627.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">Enter</tspan></text>
- <text
- id="text3563-9"
- y="2667.3318"
- x="3118.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2667.3318"
- x="3118.6919"
- sodipodi:role="line"
- id="tspan3565-4">[...]</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3118.6919"
- y="2707.3318"
- id="text3571-2"><tspan
- id="tspan3569-2"
- sodipodi:role="line"
- x="3118.6919"
- y="2707.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">Keys</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3304.6919"
- y="2707.3318"
- id="text33160"><tspan
- sodipodi:role="line"
- id="tspan33158"
- x="3304.6919"
- y="2707.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">0 +</tspan></text>
- <text
- id="text33164"
- y="2747.3318"
- x="3304.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2747.3318"
- x="3304.6919"
- id="tspan33162"
- sodipodi:role="line">9 -</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3304.6919"
- y="2787.3318"
- id="text33168"><tspan
- id="tspan33166"
- sodipodi:role="line"
- x="3304.6919"
- y="2787.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">8</tspan></text>
- <text
- id="text33172"
- y="2827.3318"
- x="3304.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2827.3318"
- x="3304.6919"
- sodipodi:role="line"
- id="tspan33170">[...]</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3304.6919"
- y="2867.3318"
- id="text33176"><tspan
- id="tspan33174"
- sodipodi:role="line"
- x="3304.6919"
- y="2867.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">q Q</tspan></text>
- <text
- id="text33180"
- y="2907.3318"
- x="3304.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2907.3318"
- x="3304.6919"
- sodipodi:role="line"
- id="tspan33178">w W</tspan></text>
- <path
- sodipodi:nodetypes="cccccccccccccccccccc"
- inkscape:connector-curvature="0"
- d="m 3232.575,3024.1388 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,80 v -320 m 0,200 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -63.222,-40 h 63.222 m -123.222,-40 h 123.222"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- id="path33182" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3304.6919"
- y="2947.3318"
- id="text33187"><tspan
- id="tspan33185"
- sodipodi:role="line"
- x="3304.6919"
- y="2947.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">[...]</tspan></text>
- <text
- id="text33191"
- y="2987.3318"
- x="3304.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2987.3318"
- x="3304.6919"
- sodipodi:role="line"
- id="tspan33189">, ;</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3304.6919"
- y="3027.3318"
- id="text33195"><tspan
- id="tspan33193"
- sodipodi:role="line"
- x="3304.6919"
- y="3027.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">. :</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="2866.6919"
- y="2467.3318"
- id="text33199"><tspan
- sodipodi:role="line"
- id="tspan33197"
- x="2866.6919"
- y="2467.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">HMI:KeyPad</tspan></text>
- <path
- inkscape:connector-curvature="0"
- id="path33347"
- d="m 3046.575,2504.1388 h 63.222"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3118.6919"
- y="2467.3318"
- id="text33351"><tspan
- sodipodi:role="line"
- id="tspan33349"
- x="3118.6919"
- y="2467.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">Value</tspan></text>
- </g>
- <g
- transform="translate(720)"
- id="g33315">
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3046.575,2744.1388 v -280"
- id="path33331"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3046.575,2704.1388 h 63.222"
- id="path33329"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3046.575,2664.1388 h 63.222"
- id="path33327"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3046.575,2624.1388 h 63.222"
- id="path33325"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3046.575,2584.1388 h 63.222"
- id="path33323"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3046.575,2544.1388 h 63.222"
- id="path33321"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 2986.575,2464.1388 h 123.222"
- id="path33247"
- inkscape:connector-curvature="0" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3118.6919"
- y="2507.3318"
- id="text33251"><tspan
- sodipodi:role="line"
- id="tspan33249"
- x="3118.6919"
- y="2507.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">Info</tspan></text>
- <text
- id="text33255"
- y="2547.3318"
- x="3118.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2547.3318"
- x="3118.6919"
- id="tspan33253"
- sodipodi:role="line">Esc</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3118.6919"
- y="2587.3318"
- id="text33259"><tspan
- id="tspan33257"
- sodipodi:role="line"
- x="3118.6919"
- y="2587.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">Sign</tspan></text>
- <text
- id="text33263"
- y="2627.3318"
- x="3118.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2627.3318"
- x="3118.6919"
- sodipodi:role="line"
- id="tspan33261">Enter</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3118.6919"
- y="2707.3318"
- id="text33267"><tspan
- id="tspan33265"
- sodipodi:role="line"
- x="3118.6919"
- y="2707.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">[...]</tspan></text>
- <text
- id="text33271"
- y="2747.3318"
- x="3118.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2747.3318"
- x="3118.6919"
- sodipodi:role="line"
- id="tspan33269">Keys</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3304.6919"
- y="2747.3318"
- id="text33279"><tspan
- sodipodi:role="line"
- x="3304.6919"
- y="2747.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- id="tspan33385">9</tspan></text>
- <text
- id="text33283"
- y="2787.3318"
- x="3304.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2787.3318"
- x="3304.6919"
- sodipodi:role="line"
- id="tspan33281">8</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3304.6919"
- y="2827.3318"
- id="text33287"><tspan
- id="tspan33285"
- sodipodi:role="line"
- x="3304.6919"
- y="2827.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">7</tspan></text>
- <text
- id="text33291"
- y="2867.3318"
- x="3304.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2867.3318"
- x="3304.6919"
- sodipodi:role="line"
- id="tspan33289">6</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3304.6919"
- y="2907.3318"
- id="text33295"><tspan
- id="tspan33293"
- sodipodi:role="line"
- x="3304.6919"
- y="2907.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">5</tspan></text>
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3232.575,3024.1388 h 63.222"
- id="path33377"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3232.575,2984.1388 h 63.222"
- id="path33375"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3232.575,2944.1388 h 63.222"
- id="path33373"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3232.575,3024.1388 v -280"
- id="path33371"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cc" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3232.575,2904.1388 h 63.222"
- id="path33369"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3232.575,2864.1388 h 63.222"
- id="path33367"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3232.575,2824.1388 h 63.222"
- id="path33365"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3232.575,2784.1388 h 63.222"
- id="path33363"
- inkscape:connector-curvature="0" />
- <path
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- d="m 3172.575,2744.1388 h 123.222"
- id="path33297"
- inkscape:connector-curvature="0" />
- <text
- id="text33301"
- y="2947.3318"
- x="3304.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2947.3318"
- x="3304.6919"
- sodipodi:role="line"
- id="tspan33299">4</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3304.6919"
- y="2987.3318"
- id="text33305"><tspan
- id="tspan33303"
- sodipodi:role="line"
- x="3304.6919"
- y="2987.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">3</tspan></text>
- <text
- id="text33309"
- y="3027.3318"
- x="3304.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="3027.3318"
- x="3304.6919"
- sodipodi:role="line"
- id="tspan33307">[...]</tspan></text>
- <text
- id="text33313"
- y="2467.3318"
- x="2866.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2467.3318"
- x="2866.6919"
- id="tspan33311"
- sodipodi:role="line">HMI:KeyPad</tspan></text>
- <path
- inkscape:connector-curvature="0"
- id="path33353"
- d="m 3046.575,2504.1388 h 63.222"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- id="text33357"
- y="2467.3318"
- x="3118.6919"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- xml:space="preserve"><tspan
- style="fill:#000000;fill-opacity:1;stroke-width:0.5"
- y="2467.3318"
- x="3118.6919"
- id="tspan33355"
- sodipodi:role="line">Value</tspan></text>
- <path
- inkscape:connector-curvature="0"
- id="path33379"
- d="m 3046.575,2744.1388 h 63.222"
- style="opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#000007;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:20px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.5"
- x="3118.6919"
- y="2667.3318"
- id="text33383"><tspan
- id="tspan33381"
- sodipodi:role="line"
- x="3118.6919"
- y="2667.3318"
- style="fill:#000000;fill-opacity:1;stroke-width:0.5">NumDot</tspan></text>
- </g>
- </g>
- <g
- id="g35667">
- <use
- inkscape:label="HMI:Page:Slider"
- x="0"
- y="0"
- xlink:href="#g9818"
- id="use10529"
- transform="translate(1340)"
- width="100%"
- height="100%"
- style="display:inline" />
- <text
- id="text10533"
- y="3170.3906"
- x="2852.8076"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none"
- xml:space="preserve"><tspan
- y="3170.3906"
- x="2852.8076"
- id="tspan10531"
- sodipodi:role="line">HMI:Slider</tspan><tspan
- y="3220.3906"
- x="2852.8076"
- sodipodi:role="line"
- id="tspan31723">HMI:CircularSlider</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#fffffb;fill-opacity:1;stroke:none;stroke-width:0.25"
- x="2854.1895"
- y="3252.0127"
- id="text10537"><tspan
- id="tspan10535"
- sodipodi:role="line"
- x="2854.1895"
- y="3252.0127"
- style="fill:#fffffb;fill-opacity:1;stroke-width:0.25">TODO</tspan></text>
- <path
- sodipodi:nodetypes="cccc"
- inkscape:connector-curvature="0"
- id="rect35600"
- d="m 3292.1479,3284.5305 10,35 h -20 z"
- style="fill:url(#linearGradient35602);fill-opacity:1" />
- <path
- style="fill:url(#linearGradient35607);fill-opacity:1"
- d="m 3292.1479,3771.5305 10,-35 h -20 z"
- id="path35605"
- inkscape:connector-curvature="0"
- sodipodi:nodetypes="cccc" />
- <path
- inkscape:connector-curvature="0"
- id="path35649"
- d="m 3292.0999,3328.0305 v 400"
- style="fill:none;fill-opacity:1;stroke:#464646;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
- <rect
- rx="10"
- ry="10"
- id="rect35590"
- width="20"
- height="75"
- x="3282.1479"
- y="3490.5305"
- style="fill:url(#linearGradient35598);fill-opacity:1" />
- </g>
- <rect
- id="rect47533"
- width="46.545795"
- height="542.65326"
- x="3626.9021"
- y="3249.9719"
- style="opacity:1;vector-effect:none;fill:#646464;fill-opacity:1;stroke:url(#radialGradient48094);stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
- <rect
- style="fill:#b4b4b4;fill-opacity:1;stroke:url(#radialGradient48061);stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
- y="3466.1411"
- x="3628.9995"
- height="106.85596"
- width="42.225544"
- id="rect48059" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#f00000;fill-opacity:1;stroke:none"
- x="3096.4146"
- y="3422.8428"
- id="text48098"><tspan
- sodipodi:role="line"
- id="tspan48096"
- x="3096.4146"
- y="3422.8428">TO BE REWRITTEN, DO NOT USE</tspan></text>
- <g
- style="stroke-width:0.35083869"
- transform="matrix(0.81491208,0,0,0.81491208,5048.484,991.82998)"
- inkscape:label="HMI:DropDown:1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:16:17:18:19:20:21:22:23:24:25:26:27@/SELECTION"
- id="g48112">
- <rect
- inkscape:label="box"
- ry="2.4558709"
- rx="2.4558709"
- y="923.98993"
- x="864.00842"
- height="130.9433"
- width="391.99988"
- id="rect48102"
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#53676c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
- <rect
- style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.75419331;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
- id="rect48104"
- width="391.99988"
- height="92.71212"
- x="864.00842"
- y="943.10553"
- rx="2.4558709"
- ry="2.4558709"
- inkscape:label="highlight" />
- <text
- inkscape:label="text"
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:80px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#d42aff;fill-opacity:1;stroke:none;stroke-width:0.35083869px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
- x="881.44226"
- y="1011.9975"
- id="text48108"><tspan
- id="tspan48106"
- sodipodi:role="line"
- x="881.44226"
- y="1011.9975"
- style="text-align:start;text-anchor:start;fill:#d42aff;stroke-width:0.35083869px">sel_0</tspan></text>
- <path
- inkscape:label="button"
- inkscape:transform-center-y="10.92088"
- d="m 1200.5,1018.6835 -18.9155,-32.76262 -18.9155,-32.76264 37.831,0 37.831,0 -18.9155,32.76264 z"
- inkscape:randomized="0"
- inkscape:rounded="0"
- inkscape:flatsided="false"
- sodipodi:arg2="2.6179939"
- sodipodi:arg1="1.5707963"
- sodipodi:r2="21.841761"
- sodipodi:r1="43.683521"
- sodipodi:cy="975"
- sodipodi:cx="1200.5"
- sodipodi:sides="3"
- id="path48110"
- style="opacity:1;vector-effect:none;fill:#a7a5a6;fill-opacity:1;stroke:none;stroke-width:0.12376806;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- sodipodi:type="star" />
- </g>
- <g
- id="g48213">
- <use
- height="100%"
- width="100%"
- transform="translate(6700)"
- id="use9947-8"
- xlink:href="#g9808"
- y="0"
- x="0"
- inkscape:label="HMI:Page:Button" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- x="8192.8076"
- y="1610.3906"
- id="text9951-1"><tspan
- sodipodi:role="line"
- id="tspan9949-2"
- x="8192.8076"
- y="1610.3906">HMI:ToggleButton@path</tspan></text>
- <text
- id="text9957-3"
- y="1632.0127"
- x="8214.1895"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- xml:space="preserve"><tspan
- style="stroke-width:0.25"
- y="1632.0127"
- x="8214.1895"
- sodipodi:role="line"
- id="tspan9955-3">TODO</tspan></text>
- </g>
- <g
- id="g48220">
- <use
- height="100%"
- width="100%"
- transform="translate(6700)"
- id="use9961-6"
- xlink:href="#g9813"
- y="0"
- x="0"
- inkscape:label="HMI:Page:ForEach" />
- <text
- id="text9965-8"
- y="2390.4241"
- x="8192.2148"
- style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
- xml:space="preserve"><tspan
- y="2390.4241"
- x="8192.2148"
- id="tspan9963-8"
- sodipodi:role="line">HMI:Multistate@path</tspan></text>
- <text
- xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25"
- x="8213.5967"
- y="2412.0461"
- id="text9971-3"><tspan
- id="tspan9969-8"
- sodipodi:role="line"
- x="8213.5967"
- y="2412.0461"
- style="stroke-width:0.25">TODO</tspan></text>
- </g>
- <g
- id="g48227">
- <use
- height="100%"
- width="100%"
- transform="translate(6700)"
- id="use9975-8"
- xlink:href="#g9818"
- y="0"
- x="0"
- inkscape:label="HMI:Page:JsonTable" />
- <text
- xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:0px;word-spacing:0px;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
- x="8192.2148"
- y="3170.4241"
- id="text35647"><tspan
- sodipodi:role="line"
- id="tspan35645"
- x="8192.2148"
- y="3170.4241">HMI:CustomHtml@path</tspan></text>
- <text
- id="text9983-0"
- y="3192.0127"
- x="8214.1895"
- style="font-style:normal;font-weight:normal;font-size:10px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#fffffb;fill-opacity:1;stroke:none;stroke-width:0.25"
- xml:space="preserve"><tspan
- style="fill:#fffffb;fill-opacity:1;stroke-width:0.25"
- y="3192.0127"
- x="8214.1895"
- sodipodi:role="line"
- id="tspan9981-4">TODO</tspan></text>
- </g>
-</svg>
--- a/tests/wamp/.crossbar/config.json Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,56 +0,0 @@
-{
- "version": 2,
- "controller": {},
- "workers": [
- {
- "type": "router",
- "options": {
- "pythonpath": [
- ".."
- ]
- },
- "realms": [
- {
- "name": "Automation",
- "roles": [
- {
- "name": "anonymous",
- "permissions": [
- {
- "uri": "",
- "match": "prefix",
- "allow": {
- "call": true,
- "register": true,
- "publish": true,
- "subscribe": true
- },
- "disclose": {
- "caller": false,
- "publisher": false
- },
- "cache": true
- }
- ]
- }
- ]
- }
- ],
- "transports": [
- {
- "type": "websocket",
- "debug": true,
- "endpoint": {
- "type": "tcp",
- "port": 8888
- },
- "url": "ws://127.0.0.1:8888/",
- "serializers": [
- "msgpack",
- "json"
- ]
- }
- ]
- }
- ]
-}
--- a/tests/wamp/README Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,42 +0,0 @@
-/* This project contains wamp client config to be loaded at runtime startup. */
-./project_files/wampconf.json
-
-wampconf.json is in "Project Files", so it is copied to runtime's working directory, and then loaded after program transfer + runtime restart.
-
-Otherwise, wamp config file path can be forced :
-./Beremiz_service.py -c /path/to/my/wampconf.json /working/dir
-
-/* Crossbar install */
-#sudo apt-get update
-#sudo apt-get -y dist-upgrade
-sudo apt-get -y install build-essential libssl-dev libffi-dev libreadline-dev libbz2-dev libsqlite3-dev libncurses5dev
-sudo apt-get -y install python3-pip
-sudo python3 -m pip install -U pip
-sudo pip3 install crossbar
-crossbar version
-
-/* Start Crossbar command: */
-crossbar start
-
-/* Crossbar test router configuration is available in .crossbar directory. */
-Tested on version:
-
- :::::::::::::::::
- ::::: _____ __
- ::::: : ::::: / ___/____ ___ ___ ___ / / ___ _ ____
- ::::::: ::::::: / /__ / __// _ \ (_-< (_-< / _ \/ _ `// __/
- ::::: : ::::: \___//_/ \___//___//___//_.__/\_,_//_/
- :::::
- ::::::::::::::::: Crossbar v18.7.2
-
- Copyright (c) 2013-2018 Crossbar.io Technologies GmbH, licensed under AGPL 3.0.
-
- Crossbar.io : 18.7.2
- Autobahn : 18.7.1
- Twisted : 18.7.0-EPollReactor
- LMDB : 0.94/lmdb-0.9.22
- Python : 3.6.6/CPython
- Frozen executable : no
- Operating system : Linux-4.16.0-2-rt-amd64-x86_64-with-debian-buster-sid
- Host machine : x86_64
- Release key : RWS9T4NltFjmKSMbEtETnOMxRjLhOEZ6e80T5MYzTTh/+NP9Jk20sJmA
--- a/tests/wamp/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BeremizRoot xmlns:xsd="http://www.w3.org/2001/XMLSchema" URI_location="WAMP://127.0.0.1:8888#Automation#wamptest">
- <TargetType/>
-</BeremizRoot>
--- a/tests/wamp/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,156 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns:ns1="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="Beremiz" productName="Beremiz" productVersion="1" creationDateTime="2015-02-05T11:44:55" contentDescription=" "/>
- <contentHeader name="WAMPTest" modificationDateTime="2018-08-27T11:11:30">
- <coordinateInfo>
- <fbd>
- <scaling x="0" y="0"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="program0" pouType="program">
- <interface>
- <localVars>
- <variable name="LocalVar0">
- <type>
- <DINT/>
- </type>
- <initialValue>
- <simpleValue value="1"/>
- </initialValue>
- </variable>
- </localVars>
- <externalVars>
- <variable name="PyVar0">
- <type>
- <DINT/>
- </type>
- </variable>
- <variable name="PyVar1">
- <type>
- <DINT/>
- </type>
- </variable>
- </externalVars>
- </interface>
- <body>
- <FBD>
- <inVariable localId="1" executionOrderId="0" height="30" width="55" negated="false">
- <position x="57" y="540"/>
- <connectionPointOut>
- <relPosition x="55" y="15"/>
- </connectionPointOut>
- <expression>PyVar0</expression>
- </inVariable>
- <block localId="3" typeName="ADD" executionOrderId="0" height="60" width="67">
- <position x="168" y="525"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="1">
- <position x="168" y="555"/>
- <position x="112" y="555"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="4">
- <position x="168" y="575"/>
- <position x="151" y="575"/>
- <position x="151" y="595"/>
- <position x="112" y="595"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="67" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="4" executionOrderId="0" height="30" width="73" negated="false">
- <position x="39" y="580"/>
- <connectionPointOut>
- <relPosition x="73" y="15"/>
- </connectionPointOut>
- <expression>LocalVar0</expression>
- </inVariable>
- <comment localId="5" height="459" width="788">
- <position x="23" y="10"/>
- <content>
- <xhtml:p><![CDATA[Communication between Beremiz and PLC runtime isn't bound to any specific protocol and could be extended by writing corresponding connector (see 'connectors' directory).
-Beremiz reference runtime implementation supports PYRO and WAMP protocols.
-This example shows how to use Web Application Messaging Protocol (WAMP).
-
-WAMP can be used to build distributed systems out of application components which are loosely coupled and communicate in real-time. No direct connection between IDE and PLC are necessary.
-
-WAMP is in a process to be published as official IETF standard. Draft specification is already available on IETF website.
-
-To use this example you need WAMP router and standalone running Beremiz_service.
-1. See README file in project's directory with detailed instructions for
-setup Crossbar.io, router for open Web Application Messaging Protocol (WAMP).
-2. Run crossbar
-3. Create service working directory and copy wampconf.json from project_files to created directory
-4. Run Beremiz_service:
-./Beremiz_service.py -x 0 <working directory>
-]]></xhtml:p>
- </content>
- </comment>
- <inOutVariable localId="2" executionOrderId="0" height="30" width="55" negatedOut="false" negatedIn="false">
- <position x="270" y="540"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="3" formalParameter="OUT">
- <position x="270" y="555"/>
- <position x="235" y="555"/>
- </connection>
- </connectionPointIn>
- <connectionPointOut>
- <relPosition x="55" y="15"/>
- </connectionPointOut>
- <expression>PyVar1</expression>
- </inOutVariable>
- <outVariable localId="6" executionOrderId="0" height="30" width="55" negated="false">
- <position x="362" y="540"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="2">
- <position x="362" y="555"/>
- <position x="325" y="555"/>
- </connection>
- </connectionPointIn>
- <expression>PyVar0</expression>
- </outVariable>
- </FBD>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="resource1">
- <task name="Task0" priority="0" interval="T#100ms">
- <pouInstance name="Instance0" typeName="program0"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/wamp/project_files/wampconf.json Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-{
- "ID": "wamptest",
- "active": true,
- "protocolOptions": {
- "autoPingInterval": 60,
- "autoPingTimeout": 20
- },
- "realm": "Automation",
- "url": "ws://127.0.0.1:8888"
-}
--- a/tests/wamp/py_ext_0@py_ext/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams xmlns:xsd="http://www.w3.org/2001/XMLSchema" IEC_Channel="0" Name="py_ext_0"/>
--- a/tests/wamp/py_ext_0@py_ext/pyfile.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <variables>
- <variable name="PyVar0" type="DINT"/>
- <variable name="PyVar1" type="DINT"/>
- </variables>
- <globals>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </globals>
- <init>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </init>
- <cleanup>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </cleanup>
- <start>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </start>
- <stop>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </stop>
-</PyFile>
--- a/tests/wiimote/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<BeremizRoot URI_location="LOCAL://">
- <TargetType/>
-</BeremizRoot>
--- a/tests/wiimote/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,252 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns="http://www.plcopen.org/xml/tc6_0201" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xhtml="http://www.w3.org/1999/xhtml" xsi:schemaLocation="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="Beremiz" productName="Beremiz" productVersion="1" creationDateTime="2012-09-12T23:30:19"/>
- <contentHeader name="Wiimote example" modificationDateTime="2017-06-06T13:10:31">
- <coordinateInfo>
- <fbd>
- <scaling x="5" y="5"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="main" pouType="program">
- <interface>
- <localVars>
- <variable name="x">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="y">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="a">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="b">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="c">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="b1">
- <type>
- <WORD/>
- </type>
- </variable>
- <variable name="b0">
- <type>
- <WORD/>
- </type>
- </variable>
- </localVars>
- <externalVars>
- <variable name="WiiNunchuckStickX">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="WiiNunchuckStickY">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="WiiNunchuckButtons">
- <type>
- <WORD/>
- </type>
- </variable>
- <variable name="WiiButtons">
- <type>
- <WORD/>
- </type>
- </variable>
- <variable name="WiiNunchuckAccX">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="WiiNunchuckAccY">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="WiiNunchuckAccZ">
- <type>
- <INT/>
- </type>
- </variable>
- </externalVars>
- </interface>
- <body>
- <FBD>
- <outVariable localId="1" height="30" width="20">
- <position x="345" y="40"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="3">
- <position x="345" y="55"/>
- <position x="295" y="55"/>
- </connection>
- </connectionPointIn>
- <expression>x</expression>
- </outVariable>
- <inVariable localId="3" height="30" width="150">
- <position x="145" y="40"/>
- <connectionPointOut>
- <relPosition x="150" y="15"/>
- </connectionPointOut>
- <expression>WiiNunchuckStickX</expression>
- </inVariable>
- <inVariable localId="4" height="30" width="150">
- <position x="145" y="100"/>
- <connectionPointOut>
- <relPosition x="150" y="15"/>
- </connectionPointOut>
- <expression>WiiNunchuckStickY</expression>
- </inVariable>
- <inVariable localId="5" height="30" width="155">
- <position x="115" y="175"/>
- <connectionPointOut>
- <relPosition x="155" y="15"/>
- </connectionPointOut>
- <expression>WiiNunchuckButtons</expression>
- </inVariable>
- <inVariable localId="6" height="30" width="90">
- <position x="180" y="225"/>
- <connectionPointOut>
- <relPosition x="90" y="15"/>
- </connectionPointOut>
- <expression>WiiButtons</expression>
- </inVariable>
- <outVariable localId="8" height="30" width="20">
- <position x="345" y="100"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="4">
- <position x="345" y="115"/>
- <position x="295" y="115"/>
- </connection>
- </connectionPointIn>
- <expression>y</expression>
- </outVariable>
- <outVariable localId="9" height="30" width="30">
- <position x="345" y="175"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="5">
- <position x="345" y="190"/>
- <position x="270" y="190"/>
- </connection>
- </connectionPointIn>
- <expression>b1</expression>
- </outVariable>
- <outVariable localId="10" height="30" width="30">
- <position x="345" y="225"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="6">
- <position x="345" y="240"/>
- <position x="270" y="240"/>
- </connection>
- </connectionPointIn>
- <expression>b0</expression>
- </outVariable>
- <inVariable localId="11" height="30" width="135">
- <position x="135" y="295"/>
- <connectionPointOut>
- <relPosition x="135" y="15"/>
- </connectionPointOut>
- <expression>WiiNunchuckAccX</expression>
- </inVariable>
- <inVariable localId="12" height="30" width="135">
- <position x="135" y="340"/>
- <connectionPointOut>
- <relPosition x="135" y="15"/>
- </connectionPointOut>
- <expression>WiiNunchuckAccY</expression>
- </inVariable>
- <inVariable localId="13" height="30" width="130">
- <position x="140" y="385"/>
- <connectionPointOut>
- <relPosition x="130" y="15"/>
- </connectionPointOut>
- <expression>WiiNunchuckAccZ</expression>
- </inVariable>
- <outVariable localId="14" height="30" width="20">
- <position x="345" y="295"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="11">
- <position x="345" y="310"/>
- <position x="270" y="310"/>
- </connection>
- </connectionPointIn>
- <expression>a</expression>
- </outVariable>
- <outVariable localId="15" height="30" width="20">
- <position x="345" y="340"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="12">
- <position x="345" y="355"/>
- <position x="270" y="355"/>
- </connection>
- </connectionPointIn>
- <expression>b</expression>
- </outVariable>
- <outVariable localId="16" height="30" width="20">
- <position x="345" y="385"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="13">
- <position x="345" y="400"/>
- <position x="270" y="400"/>
- </connection>
- </connectionPointIn>
- <expression>c</expression>
- </outVariable>
- <comment localId="17" height="125" width="500">
- <position x="450" y="30"/>
- <content>
- <xhtml:p><![CDATA[This example shows interaction of PLC program with Nintendo Wii Remote controller.
-
-To work this example requires python-cwiid library to be installed.]]></xhtml:p>
- </content>
- </comment>
- </FBD>
- </body>
- <documentation>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </documentation>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="resource1">
- <task name="tsk1" interval="T#1ms" priority="0">
- <pouInstance name="inst1" typeName="main"/>
- </task>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/wiimote/py_ext_0@py_ext/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<BaseParams Name="py_ext_0" IEC_Channel="1"/>
--- a/tests/wiimote/py_ext_0@py_ext/pyfile.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,102 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<PyFile>
- <variables>
- <variable name="WiiNunchuckStickX" type="INT"/>
- <variable name="WiiNunchuckStickY" type="INT"/>
- <variable name="WiiNunchuckAccX" type="INT"/>
- <variable name="WiiNunchuckAccY" type="INT"/>
- <variable name="WiiNunchuckAccZ" type="INT"/>
- <variable name="WiiNunchuckButtons" type="WORD"/>
- <variable name="WiiButtons" type="WORD"/>
- </variables>
- <globals>
-<![CDATA[
-import cwiid,commands,sys,re,os,time
-
-wiimote = None
-WIIMOTE_ADDR_MODEL = re.compile("((?:[0-9A-F]{2})(?::[0-9A-F]{2}){5})\s*Nintendo")
-nunchuckzero = None
-
-def Wiimote_cback(messages, time):
- global nunchuckzero
- state = dict(messages)
- bts = state.get(cwiid.MESG_BTN, None)
- if bts is not None:
- PLCGlobals.WiiButtons = bts
- nunchuck = state.get(cwiid.MESG_NUNCHUK, None)
- if nunchuck is not None:
- PLCGlobals.WiiNunchuckButtons = nunchuck['buttons']
- X,Y = nunchuck['stick']
- PLCGlobals.WiiNunchuckAccX = nunchuck['acc'][cwiid.X]
- PLCGlobals.WiiNunchuckAccY = nunchuck['acc'][cwiid.Y]
- PLCGlobals.WiiNunchuckAccZ = nunchuck['acc'][cwiid.Z]
- if nunchuckzero is None:
- nunchuckzero = X,Y
- (PLCGlobals.WiiNunchuckStickX,
- PLCGlobals.WiiNunchuckStickY) = X-nunchuckzero[0],Y-nunchuckzero[1]
-
-def Connect_Wiimote(connected_callback):
- global wiimote,nunchuckzero
- mac_addr = ''
- try:
- mac_addr = file("wiimac.txt","rt").read()
- except:
- PLCObject.LogMessage("Wiimote MAC unknown, scanning bluetooth")
- output = commands.getoutput("hcitool scan")
- result = WIIMOTE_ADDR_MODEL.search(output)
- if result is not None:
- mac_addr = result.group(1)
- PLCObject.LogMessage("Found Wiimote with MAC %s"%mac_addr)
- file("wiimac.txt","wt").write(mac_addr)
-
- # Connect to wiimote
- if not mac_addr:
- PLCObject.LogMessage("Connection to unknown Wiimote...")
- wiimote = cwiid.Wiimote()
- else:
- PLCObject.LogMessage("Connection to Wiimote %s..."%mac_addr)
- wiimote = cwiid.Wiimote(mac_addr)
-
- if wiimote is not None:
- nunchuckzero = None
- wiimote.rpt_mode = cwiid.RPT_BTN | cwiid.RPT_EXT
- # use the callback interface
- wiimote.mesg_callback = Wiimote_cback
- wiimote.enable(cwiid.FLAG_MESG_IFC)
- connected_callback(mac_addr)
- PLCObject.LogMessage("Wiimote %s Connected"%mac_addr)
- else:
- PLCObject.LogMessage("Wiimote %s not found"%mac_addr)
- os.remove("wiimac.txt")
- connected_callback(None)
-
-def Disconnect_Wiimote():
- global wiimote
- if wiimote is not None:
- wiimote.disable(cwiid.FLAG_MESG_IFC)
- time.sleep(0.1)
- wiimote.close()
- wiimote = None
- PLCObject.LogMessage("Wiimote disconnected")
-
-]]>
- </globals>
- <init>
-<![CDATA[
-]]>
- </init>
- <cleanup>
-<![CDATA[
-Disconnect_Wiimote()
-
-]]>
- </cleanup>
- <start>
-<![CDATA[
-]]>
- </start>
- <stop>
-<![CDATA[
-]]>
- </stop>
-</PyFile>
--- a/tests/wiimote/wxglade_hmi@wxglade_hmi/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<BaseParams Name="wxglade_hmi" IEC_Channel="0"/>
--- a/tests/wiimote/wxglade_hmi@wxglade_hmi/hmi.wxg Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,53 +0,0 @@
-<?xml version="1.0"?>
-<!-- generated by wxGlade 0.6.4 on Thu May 16 13:24:16 2013 -->
-
-<application path="" name="" class="" option="0" language="python" top_window="wxglade_hmi" encoding="UTF-8" use_gettext="0" overwrite="0" use_new_namespace="1" for_version="2.8" is_template="0" indent_amount="4" indent_symbol="space" source_extension=".cpp" header_extension=".h">
- <object class="Class_wxglade_hmi" name="wxglade_hmi" base="EditFrame">
- <style>wxDEFAULT_FRAME_STYLE</style>
- <title>frame_1</title>
- <object class="wxStaticBoxSizer" name="sizer_1" base="EditStaticBoxSizer">
- <orient>wxVERTICAL</orient>
- <label>Wiimote Test</label>
- <object class="sizeritem">
- <flag>wxEXPAND</flag>
- <border>0</border>
- <option>0</option>
- <object class="wxButton" name="button_1" base="EditButton">
- <label>Connect Wiimote</label>
- <events>
- <handler event="EVT_BUTTON">OnConnectButton</handler>
- </events>
- </object>
- </object>
- <object class="sizeritem">
- <flag>wxEXPAND</flag>
- <border>0</border>
- <option>0</option>
- <object class="wxButton" name="button_2" base="EditButton">
- <label>Disconnect Wiimote</label>
- <events>
- <handler event="EVT_BUTTON">OnDisconnectButton</handler>
- </events>
- </object>
- </object>
- <object class="sizeritem">
- <flag>wxEXPAND</flag>
- <border>0</border>
- <option>0</option>
- <object class="wxStaticText" name="label_1" base="EditStaticText">
- <attribute>1</attribute>
- <label>Status :</label>
- </object>
- </object>
- <object class="sizeritem">
- <flag>wxEXPAND</flag>
- <border>0</border>
- <option>0</option>
- <object class="wxStaticText" name="label_2" base="EditStaticText">
- <attribute>1</attribute>
- <label>no status</label>
- </object>
- </object>
- </object>
- </object>
-</application>
--- a/tests/wiimote/wxglade_hmi@wxglade_hmi/pyfile.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,45 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<PyFile>
- <variables/>
- <globals>
-<![CDATA[
-from threading import Thread
-
-def OnConnectButton(self, event):
- def OnWiiConnected(mac_addr):
- self.label_2.SetLabel(
- "Wiimote %s connected"%mac_addr
- if mac_addr else
- "Wiimote connection failed !")
-
- def WiiConnected(mac_addr):
- wx.CallAfter(OnWiiConnected,mac_addr)
-
- Thread(target = Connect_Wiimote, args = (WiiConnected,)).start()
- self.label_2.SetLabel("Press wiimote 1+2")
- event.Skip()
-
-def OnDisconnectButton(self, event):
- Disconnect_Wiimote()
- self.label_2.SetLabel("Wiimote disconnected")
- event.Skip()
-
-]]>
- </globals>
- <init>
-<![CDATA[
-]]>
- </init>
- <cleanup>
-<![CDATA[
-]]>
- </cleanup>
- <start>
-<![CDATA[
-]]>
- </start>
- <stop>
-<![CDATA[
-]]>
- </stop>
-</PyFile>
--- a/tests/wxGlade/HMIFrame@wxglade_hmi/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<BaseParams Name="HMIFrame" IEC_Channel="0"/>
--- a/tests/wxGlade/HMIFrame@wxglade_hmi/hmi.wxg Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,34 +0,0 @@
-<?xml version="1.0"?>
-<!-- generated by wxGlade 0.7.2 on Mon Jun 5 14:18:29 2017 -->
-
-<application class="" encoding="UTF-8" for_version="2.8" header_extension=".h" indent_amount="4" indent_symbol="space" is_template="0" language="python" name="" option="0" overwrite="0" path="..py.py" source_extension=".cpp" top_window="HMIFrame" use_gettext="0" use_new_namespace="1">
- <object class="Class_HMIFrame" name="HMIFrame" base="EditFrame">
- <style>wxDEFAULT_FRAME_STYLE</style>
- <title>HMIFrame</title>
- <object class="wxBoxSizer" name="sizer_1" base="EditBoxSizer">
- <orient>wxVERTICAL</orient>
- <object class="sizeritem">
- <border>0</border>
- <option>0</option>
- <object class="wxSpinCtrl" name="spin_ctrl_1" base="EditSpinCtrl">
- <range>0, 10000</range>
- </object>
- </object>
- <object class="sizeritem">
- <border>0</border>
- <option>0</option>
- <object class="wxCheckBox" name="checkbox_1" base="EditCheckBox">
- <label>checkbox_1</label>
- </object>
- </object>
- <object class="sizeritem">
- <border>0</border>
- <option>0</option>
- <object class="wxStaticText" name="label_1" base="EditStaticText">
- <attribute>1</attribute>
- <label>GUI changed!</label>
- </object>
- </object>
- </object>
- </object>
-</application>
--- a/tests/wxGlade/HMIFrame@wxglade_hmi/pyfile.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <variables/>
- <globals>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </globals>
- <init>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </init>
- <cleanup>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </cleanup>
- <start>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </start>
- <stop>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </stop>
-</PyFile>
--- a/tests/wxGlade/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BeremizRoot URI_location="LOCAL://">
- <TargetType/>
- <Libraries Enable_Python_Library="true"/>
-</BeremizRoot>
--- a/tests/wxGlade/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,426 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.plcopen.org/xml/tc6_0201" xmlns:xhtml="http://www.w3.org/1999/xhtml" xsi:schemaLocation="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="beremiz" productName="Beremiz" productVersion="0.0" creationDateTime="2008-12-14T16:21:19"/>
- <contentHeader name="Beremiz wxHMI test" modificationDateTime="2017-06-05T14:01:40">
- <coordinateInfo>
- <pageSize x="1024" y="1024"/>
- <fbd>
- <scaling x="5" y="5"/>
- </fbd>
- <ld>
- <scaling x="5" y="5"/>
- </ld>
- <sfc>
- <scaling x="5" y="5"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="main_pytest" pouType="program">
- <interface>
- <localVars>
- <variable name="getCheckBoxState">
- <type>
- <derived name="python_poll"/>
- </type>
- </variable>
- <variable name="counter">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="setSpinCtrlValue">
- <type>
- <derived name="python_poll"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <block localId="24" width="125" height="90" typeName="python_poll" instanceName="getCheckBoxState" executionOrderId="0">
- <position x="480" y="215"/>
- <inputVariables>
- <variable formalParameter="TRIG">
- <connectionPointIn>
- <relPosition x="0" y="35"/>
- <connection refLocalId="25">
- <position x="480" y="250"/>
- <position x="420" y="250"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="CODE">
- <connectionPointIn>
- <relPosition x="0" y="70"/>
- <connection refLocalId="26">
- <position x="480" y="285"/>
- <position x="420" y="285"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="ACK">
- <connectionPointOut>
- <relPosition x="125" y="35"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="RESULT">
- <connectionPointOut>
- <relPosition x="125" y="70"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="25" height="30" width="100" executionOrderId="0" negated="false">
- <position x="320" y="235"/>
- <connectionPointOut>
- <relPosition x="100" y="15"/>
- </connectionPointOut>
- <expression>BOOL#TRUE</expression>
- </inVariable>
- <inVariable localId="26" height="30" width="400" executionOrderId="0" negated="false">
- <position x="20" y="270"/>
- <connectionPointOut>
- <relPosition x="400" y="15"/>
- </connectionPointOut>
- <expression>'int(HMIFrame.checkbox_1.GetValue())'</expression>
- </inVariable>
- <inVariable localId="27" height="30" width="40" executionOrderId="0" negated="false">
- <position x="535" y="505"/>
- <connectionPointOut>
- <relPosition x="40" y="15"/>
- </connectionPointOut>
- <expression>')'</expression>
- </inVariable>
- <inVariable localId="28" height="30" width="330" executionOrderId="0" negated="false">
- <position x="150" y="415"/>
- <connectionPointOut>
- <relPosition x="330" y="15"/>
- </connectionPointOut>
- <expression>'HMIFrame.spin_ctrl_1.SetValue('</expression>
- </inVariable>
- <block localId="30" width="145" height="85" typeName="STRING_TO_INT" executionOrderId="0">
- <position x="670" y="215"/>
- <inputVariables>
- <variable formalParameter="EN">
- <connectionPointIn>
- <relPosition x="0" y="35"/>
- <connection refLocalId="24" formalParameter="ACK">
- <position x="670" y="250"/>
- <position x="605" y="250"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="70"/>
- <connection refLocalId="24" formalParameter="RESULT">
- <position x="670" y="285"/>
- <position x="605" y="285"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="ENO">
- <connectionPointOut>
- <relPosition x="145" y="35"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="145" y="70"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <block localId="32" width="80" height="80" typeName="ADD" executionOrderId="0">
- <position x="135" y="450"/>
- <inputVariables>
- <variable formalParameter="EN">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="38" formalParameter="OUT">
- <position x="135" y="480"/>
- <position x="100" y="480"/>
- <position x="100" y="330"/>
- <position x="1140" y="330"/>
- <position x="1140" y="250"/>
- <position x="1130" y="250"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="39">
- <position x="135" y="500"/>
- <position x="90" y="500"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="70"/>
- <connection refLocalId="33">
- <position x="135" y="520"/>
- <position x="125" y="520"/>
- <position x="125" y="540"/>
- <position x="340" y="540"/>
- <position x="340" y="500"/>
- <position x="320" y="500"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="ENO">
- <connectionPointOut>
- <relPosition x="80" y="30"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="80" y="50"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <block localId="34" width="80" height="100" typeName="CONCAT" executionOrderId="0">
- <position x="605" y="430"/>
- <inputVariables>
- <variable formalParameter="EN">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="35" formalParameter="ENO">
- <position x="605" y="460"/>
- <position x="520" y="460"/>
- <position x="520" y="480"/>
- <position x="500" y="480"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="28">
- <position x="605" y="480"/>
- <position x="562" y="480"/>
- <position x="562" y="430"/>
- <position x="480" y="430"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="70"/>
- <connection refLocalId="35" formalParameter="OUT">
- <position x="605" y="500"/>
- <position x="500" y="500"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN3">
- <connectionPointIn>
- <relPosition x="0" y="90"/>
- <connection refLocalId="27">
- <position x="605" y="520"/>
- <position x="575" y="520"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="ENO">
- <connectionPointOut>
- <relPosition x="80" y="30"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="80" y="50"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inOutVariable localId="33" height="35" width="85" executionOrderId="0" negatedOut="false" negatedIn="false">
- <position x="235" y="485"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="32" formalParameter="OUT">
- <position x="235" y="500"/>
- <position x="215" y="500"/>
- </connection>
- </connectionPointIn>
- <connectionPointOut>
- <relPosition x="85" y="15"/>
- </connectionPointOut>
- <expression>counter</expression>
- </inOutVariable>
- <block localId="35" width="145" height="60" typeName="INT_TO_STRING" executionOrderId="0">
- <position x="355" y="450"/>
- <inputVariables>
- <variable formalParameter="EN">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="32" formalParameter="ENO">
- <position x="355" y="480"/>
- <position x="215" y="480"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="33">
- <position x="355" y="500"/>
- <position x="320" y="500"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="ENO">
- <connectionPointOut>
- <relPosition x="145" y="30"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="145" y="50"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <block localId="36" width="125" height="90" typeName="python_poll" instanceName="setSpinCtrlValue" executionOrderId="0">
- <position x="735" y="425"/>
- <inputVariables>
- <variable formalParameter="TRIG">
- <connectionPointIn>
- <relPosition x="0" y="35"/>
- <connection refLocalId="34" formalParameter="ENO">
- <position x="735" y="460"/>
- <position x="685" y="460"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="CODE">
- <connectionPointIn>
- <relPosition x="0" y="70"/>
- <connection refLocalId="34" formalParameter="OUT">
- <position x="735" y="495"/>
- <position x="715" y="495"/>
- <position x="715" y="480"/>
- <position x="685" y="480"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="ACK">
- <connectionPointOut>
- <relPosition x="125" y="35"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="RESULT">
- <connectionPointOut>
- <relPosition x="125" y="70"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <block localId="37" width="125" height="45" typeName="INT_TO_BOOL" executionOrderId="0">
- <position x="870" y="255"/>
- <inputVariables>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="30" formalParameter="OUT">
- <position x="870" y="285"/>
- <position x="815" y="285"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="125" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <block localId="38" width="80" height="95" typeName="AND" executionOrderId="0">
- <position x="1050" y="210"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="40"/>
- <connection refLocalId="30" formalParameter="ENO">
- <position x="1050" y="250"/>
- <position x="815" y="250"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="75"/>
- <connection refLocalId="37" formalParameter="OUT">
- <position x="1050" y="285"/>
- <position x="995" y="285"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="80" y="40"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="39" height="30" width="60" executionOrderId="0" negated="false">
- <position x="30" y="485"/>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>INT#1</expression>
- </inVariable>
- <comment localId="101" height="115" width="680">
- <position x="10" y="30"/>
- <content>
- <xhtml:p><![CDATA[This example shows how IEC program in PLC can interact with UI created using wxGlade.
-
-"WxGlade GUI" is extension to build user interface for PLC using wxGlade.
-To edit user interface click on "WxGlade" icon in extension settings.]]></xhtml:p>
- </content>
- </comment>
- </FBD>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="res_pytest">
- <task name="pytest_task" interval="t#100ms" priority="0"/>
- <pouInstance name="pytest_instance" typeName="main_pytest"/>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
--- a/tests/wxHMI/beremiz.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BeremizRoot URI_location="LOCAL://">
- <TargetType/>
- <Libraries Enable_Python_Library="true"/>
-</BeremizRoot>
--- a/tests/wxHMI/plc.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1639 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<project xmlns="http://www.plcopen.org/xml/tc6_0201" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xhtml="http://www.w3.org/1999/xhtml" xsi:schemaLocation="http://www.plcopen.org/xml/tc6_0201">
- <fileHeader companyName="Unknown" productName="Beremiz" productVersion="1" creationDateTime="2012-09-12T23:30:19"/>
- <contentHeader name="extended wxHMI example" modificationDateTime="2018-09-26T14:07:02">
- <coordinateInfo>
- <pageSize x="1050" y="1485"/>
- <fbd>
- <scaling x="5" y="5"/>
- </fbd>
- <ld>
- <scaling x="0" y="0"/>
- </ld>
- <sfc>
- <scaling x="0" y="0"/>
- </sfc>
- </coordinateInfo>
- </contentHeader>
- <types>
- <dataTypes/>
- <pous>
- <pou name="main" pouType="program">
- <interface>
- <externalVars>
- <variable name="Power_ON">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="Power_OFF">
- <type>
- <BOOL/>
- </type>
- </variable>
- </externalVars>
- <localVars>
- <variable name="power">
- <type>
- <BOOL/>
- </type>
- </variable>
- </localVars>
- <externalVars>
- <variable name="DrawTest">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="DrawTestBtn">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="DrawLogo">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="XaxisPos">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="YaxisPos">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="ZaxisPos">
- <type>
- <INT/>
- </type>
- </variable>
- <variable name="TaxisPos">
- <type>
- <INT/>
- </type>
- </variable>
- </externalVars>
- <localVars>
- <variable name="PowerCtrl">
- <type>
- <derived name="RS"/>
- </type>
- </variable>
- <variable name="Xaxis">
- <type>
- <derived name="axis"/>
- </type>
- </variable>
- </localVars>
- <externalVars>
- <variable name="XAxisMinus">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="XAxisPlus">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="YAxisPlus">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="YAxisMinus">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="ZAxisPlus">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="ZAxisMinus">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="TAxisPlus">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="TAxisMinus">
- <type>
- <BOOL/>
- </type>
- </variable>
- </externalVars>
- <localVars>
- <variable name="Yaxis">
- <type>
- <derived name="axis"/>
- </type>
- </variable>
- <variable name="Taxis">
- <type>
- <derived name="axis"/>
- </type>
- </variable>
- <variable name="Zaxis">
- <type>
- <derived name="axis"/>
- </type>
- </variable>
- <variable name="DrawTestDo">
- <type>
- <derived name="RS"/>
- </type>
- </variable>
- <variable name="DrawLogoDo">
- <type>
- <derived name="RS"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <comment localId="296" height="330" width="655">
- <position x="390" y="10"/>
- <content>
- <xhtml:p><![CDATA[Example shows
-- how to use wxGlade extension to create user interface and dynamically extend it using Python,
-- how to respond to user actions in PLC program and
-- how to use several PLC tasks to handle process of different speeds.
-
-Program has two tasks:
-1. Slow task that communicates with user interface created in wxGlade and updates axes state.
-2. Main task that drives virtual axes.
-
-When power is on, user can control axes.
-"Draw Logo" buttons starts X, Y, Z axes. "Draw Test" buttons starts Z and T axes.
-User can adjust position of axes using manual keys.
-
-
-Happy hacking!]]></xhtml:p>
- </content>
- </comment>
- <inVariable localId="288" executionOrderId="0" height="30" width="85" negated="false">
- <position x="35" y="190"/>
- <connectionPointOut>
- <relPosition x="85" y="15"/>
- </connectionPointOut>
- <expression>Power_OFF</expression>
- </inVariable>
- <inVariable localId="286" executionOrderId="0" height="30" width="85" negated="false">
- <position x="35" y="155"/>
- <connectionPointOut>
- <relPosition x="85" y="15"/>
- </connectionPointOut>
- <expression>Power_ON</expression>
- </inVariable>
- <block localId="287" typeName="RS" instanceName="PowerCtrl" executionOrderId="0" height="95" width="55">
- <position x="190" y="130"/>
- <inputVariables>
- <variable formalParameter="S">
- <connectionPointIn>
- <relPosition x="0" y="40"/>
- <connection refLocalId="286">
- <position x="190" y="170"/>
- <position x="120" y="170"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="R1">
- <connectionPointIn>
- <relPosition x="0" y="75"/>
- <connection refLocalId="288">
- <position x="190" y="205"/>
- <position x="120" y="205"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Q1">
- <connectionPointOut>
- <relPosition x="55" y="40"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <outVariable localId="289" executionOrderId="0" height="30" width="50" negated="false">
- <position x="290" y="155"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="287" formalParameter="Q1">
- <position x="290" y="170"/>
- <position x="241" y="170"/>
- </connection>
- </connectionPointIn>
- <expression>power</expression>
- </outVariable>
- <block localId="297" typeName="axis" instanceName="Xaxis" executionOrderId="0" height="160" width="100">
- <position x="300" y="770"/>
- <inputVariables>
- <variable formalParameter="Power">
- <connectionPointIn>
- <relPosition x="0" y="45"/>
- <connection refLocalId="1">
- <position x="300" y="815"/>
- <position x="265" y="815"/>
- <position x="265" y="755"/>
- <position x="255" y="755"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="Up">
- <connectionPointIn>
- <relPosition x="0" y="90"/>
- <connection refLocalId="301" formalParameter="OUT">
- <position x="300" y="860"/>
- <position x="277" y="860"/>
- <position x="277" y="835"/>
- <position x="255" y="835"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="Down">
- <connectionPointIn>
- <relPosition x="0" y="135"/>
- <connection refLocalId="299">
- <position x="300" y="905"/>
- <position x="110" y="905"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Out">
- <connectionPointOut>
- <relPosition x="100" y="45"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <outVariable localId="298" executionOrderId="0" height="35" width="74" negated="false">
- <position x="435" y="800"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="297" formalParameter="Out">
- <position x="435" y="815"/>
- <position x="375" y="815"/>
- <position x="375" y="815"/>
- <position x="416" y="815"/>
- </connection>
- </connectionPointIn>
- <expression>XaxisPos</expression>
- </outVariable>
- <inVariable localId="1" executionOrderId="0" height="30" width="50" negated="false">
- <position x="205" y="740"/>
- <connectionPointOut>
- <relPosition x="50" y="15"/>
- </connectionPointOut>
- <expression>power</expression>
- </inVariable>
- <inVariable localId="299" executionOrderId="0" height="35" width="90" negated="false">
- <position x="25" y="890"/>
- <connectionPointOut>
- <relPosition x="90" y="15"/>
- </connectionPointOut>
- <expression>XAxisMinus</expression>
- </inVariable>
- <inVariable localId="300" executionOrderId="0" height="35" width="85" negated="false">
- <position x="25" y="845"/>
- <connectionPointOut>
- <relPosition x="85" y="15"/>
- </connectionPointOut>
- <expression>XAxisPlus</expression>
- </inVariable>
- <block localId="301" typeName="OR" executionOrderId="0" height="65" width="70">
- <position x="185" y="805"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="2">
- <position x="185" y="835"/>
- <position x="162" y="835"/>
- <position x="162" y="805"/>
- <position x="140" y="805"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="55"/>
- <connection refLocalId="300">
- <position x="185" y="860"/>
- <position x="110" y="860"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="70" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="2" executionOrderId="0" height="35" width="115" negated="false">
- <position x="25" y="790"/>
- <connectionPointOut>
- <relPosition x="115" y="15"/>
- </connectionPointOut>
- <expression>DrawTestDo.Q1</expression>
- </inVariable>
- <inVariable localId="3" executionOrderId="0" height="35" width="115" negated="false">
- <position x="560" y="785"/>
- <connectionPointOut>
- <relPosition x="115" y="15"/>
- </connectionPointOut>
- <expression>DrawTestDo.Q1</expression>
- </inVariable>
- <inVariable localId="4" executionOrderId="0" height="30" width="50" negated="false">
- <position x="735" y="735"/>
- <connectionPointOut>
- <relPosition x="50" y="15"/>
- </connectionPointOut>
- <expression>power</expression>
- </inVariable>
- <block localId="5" typeName="axis" instanceName="Yaxis" executionOrderId="0" height="160" width="100">
- <position x="830" y="765"/>
- <inputVariables>
- <variable formalParameter="Power">
- <connectionPointIn>
- <relPosition x="0" y="45"/>
- <connection refLocalId="4">
- <position x="830" y="810"/>
- <position x="815" y="810"/>
- <position x="815" y="750"/>
- <position x="785" y="750"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="Up">
- <connectionPointIn>
- <relPosition x="0" y="90"/>
- <connection refLocalId="9" formalParameter="OUT">
- <position x="830" y="855"/>
- <position x="807" y="855"/>
- <position x="807" y="830"/>
- <position x="785" y="830"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="Down">
- <connectionPointIn>
- <relPosition x="0" y="135"/>
- <connection refLocalId="7">
- <position x="830" y="900"/>
- <position x="645" y="900"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Out">
- <connectionPointOut>
- <relPosition x="100" y="45"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <outVariable localId="6" executionOrderId="0" height="35" width="74" negated="false">
- <position x="955" y="795"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="5" formalParameter="Out">
- <position x="955" y="810"/>
- <position x="930" y="810"/>
- </connection>
- </connectionPointIn>
- <expression>YaxisPos</expression>
- </outVariable>
- <inVariable localId="7" executionOrderId="0" height="35" width="90" negated="false">
- <position x="560" y="885"/>
- <connectionPointOut>
- <relPosition x="90" y="15"/>
- </connectionPointOut>
- <expression>YAxisMinus</expression>
- </inVariable>
- <inVariable localId="8" executionOrderId="0" height="35" width="85" negated="false">
- <position x="560" y="840"/>
- <connectionPointOut>
- <relPosition x="85" y="15"/>
- </connectionPointOut>
- <expression>YAxisPlus</expression>
- </inVariable>
- <block localId="9" typeName="OR" executionOrderId="0" height="65" width="70">
- <position x="715" y="800"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="3">
- <position x="715" y="830"/>
- <position x="657" y="830"/>
- <position x="657" y="800"/>
- <position x="645" y="800"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="55"/>
- <connection refLocalId="8">
- <position x="715" y="855"/>
- <position x="645" y="855"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="70" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="10" executionOrderId="0" height="35" width="115" negated="false">
- <position x="25" y="1045"/>
- <connectionPointOut>
- <relPosition x="115" y="15"/>
- </connectionPointOut>
- <expression>DrawTestDo.Q1</expression>
- </inVariable>
- <inVariable localId="11" executionOrderId="0" height="35" width="115" negated="false">
- <position x="560" y="1025"/>
- <connectionPointOut>
- <relPosition x="115" y="15"/>
- </connectionPointOut>
- <expression>DrawLogoDo.Q1</expression>
- </inVariable>
- <inVariable localId="12" executionOrderId="0" height="30" width="50" negated="false">
- <position x="740" y="975"/>
- <connectionPointOut>
- <relPosition x="50" y="15"/>
- </connectionPointOut>
- <expression>power</expression>
- </inVariable>
- <block localId="13" typeName="axis" instanceName="Taxis" executionOrderId="0" height="160" width="100">
- <position x="835" y="1005"/>
- <inputVariables>
- <variable formalParameter="Power">
- <connectionPointIn>
- <relPosition x="0" y="45"/>
- <connection refLocalId="12">
- <position x="835" y="1050"/>
- <position x="820" y="1050"/>
- <position x="820" y="990"/>
- <position x="790" y="990"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="Up">
- <connectionPointIn>
- <relPosition x="0" y="90"/>
- <connection refLocalId="22" formalParameter="OUT">
- <position x="835" y="1095"/>
- <position x="812" y="1095"/>
- <position x="812" y="1070"/>
- <position x="790" y="1070"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="Down">
- <connectionPointIn>
- <relPosition x="0" y="135"/>
- <connection refLocalId="23">
- <position x="835" y="1140"/>
- <position x="645" y="1140"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Out">
- <connectionPointOut>
- <relPosition x="100" y="45"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <outVariable localId="14" executionOrderId="0" height="35" width="74" negated="false">
- <position x="960" y="1035"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="13" formalParameter="Out">
- <position x="960" y="1050"/>
- <position x="935" y="1050"/>
- </connection>
- </connectionPointIn>
- <expression>TaxisPos</expression>
- </outVariable>
- <inVariable localId="15" executionOrderId="0" height="30" width="50" negated="false">
- <position x="200" y="980"/>
- <connectionPointOut>
- <relPosition x="50" y="15"/>
- </connectionPointOut>
- <expression>power</expression>
- </inVariable>
- <inVariable localId="16" executionOrderId="0" height="35" width="85" negated="false">
- <position x="560" y="1080"/>
- <connectionPointOut>
- <relPosition x="85" y="15"/>
- </connectionPointOut>
- <expression>TAxisPlus</expression>
- </inVariable>
- <block localId="17" typeName="axis" instanceName="Zaxis" executionOrderId="0" height="160" width="100">
- <position x="300" y="1010"/>
- <inputVariables>
- <variable formalParameter="Power">
- <connectionPointIn>
- <relPosition x="0" y="45"/>
- <connection refLocalId="15">
- <position x="300" y="1055"/>
- <position x="285" y="1055"/>
- <position x="285" y="995"/>
- <position x="250" y="995"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="Up">
- <connectionPointIn>
- <relPosition x="0" y="90"/>
- <connection refLocalId="21" formalParameter="OUT">
- <position x="300" y="1100"/>
- <position x="280" y="1100"/>
- <position x="280" y="1055"/>
- <position x="270" y="1055"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="Down">
- <connectionPointIn>
- <relPosition x="0" y="135"/>
- <connection refLocalId="19">
- <position x="300" y="1145"/>
- <position x="110" y="1145"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Out">
- <connectionPointOut>
- <relPosition x="100" y="45"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <outVariable localId="18" executionOrderId="0" height="35" width="74" negated="false">
- <position x="435" y="1040"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="17" formalParameter="Out">
- <position x="435" y="1055"/>
- <position x="400" y="1055"/>
- </connection>
- </connectionPointIn>
- <expression>ZaxisPos</expression>
- </outVariable>
- <inVariable localId="19" executionOrderId="0" height="35" width="90" negated="false">
- <position x="25" y="1130"/>
- <connectionPointOut>
- <relPosition x="90" y="15"/>
- </connectionPointOut>
- <expression>ZAxisMinus</expression>
- </inVariable>
- <inVariable localId="20" executionOrderId="0" height="35" width="85" negated="false">
- <position x="25" y="1090"/>
- <connectionPointOut>
- <relPosition x="85" y="15"/>
- </connectionPointOut>
- <expression>ZAxisPlus</expression>
- </inVariable>
- <block localId="21" typeName="OR" executionOrderId="0" height="100" width="70">
- <position x="200" y="1020"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="35"/>
- <connection refLocalId="24">
- <position x="200" y="1055"/>
- <position x="170" y="1055"/>
- <position x="170" y="1015"/>
- <position x="140" y="1015"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="60"/>
- <connection refLocalId="10">
- <position x="200" y="1080"/>
- <position x="150" y="1080"/>
- <position x="150" y="1060"/>
- <position x="140" y="1060"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN3">
- <connectionPointIn>
- <relPosition x="0" y="85"/>
- <connection refLocalId="20">
- <position x="200" y="1105"/>
- <position x="110" y="1105"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="70" y="35"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <block localId="22" typeName="OR" executionOrderId="0" height="65" width="70">
- <position x="720" y="1040"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="11">
- <position x="720" y="1070"/>
- <position x="657" y="1070"/>
- <position x="657" y="1040"/>
- <position x="645" y="1040"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="55"/>
- <connection refLocalId="16">
- <position x="720" y="1095"/>
- <position x="645" y="1095"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="70" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="23" executionOrderId="0" height="35" width="90" negated="false">
- <position x="560" y="1125"/>
- <connectionPointOut>
- <relPosition x="90" y="15"/>
- </connectionPointOut>
- <expression>TAxisMinus</expression>
- </inVariable>
- <inVariable localId="24" executionOrderId="0" height="35" width="115" negated="false">
- <position x="25" y="1000"/>
- <connectionPointOut>
- <relPosition x="115" y="15"/>
- </connectionPointOut>
- <expression>DrawLogoDo.Q1</expression>
- </inVariable>
- <inVariable localId="25" executionOrderId="0" height="30" width="85" negated="false">
- <position x="40" y="450"/>
- <connectionPointOut>
- <relPosition x="85" y="15"/>
- </connectionPointOut>
- <expression>DrawTest</expression>
- </inVariable>
- <block localId="26" typeName="RS" instanceName="DrawTestDo" executionOrderId="0" height="115" width="55">
- <position x="280" y="445"/>
- <inputVariables>
- <variable formalParameter="S">
- <connectionPointIn>
- <relPosition x="0" y="45"/>
- <connection refLocalId="28" formalParameter="OUT">
- <position x="280" y="490"/>
- <position x="255" y="490"/>
- <position x="255" y="465"/>
- <position x="230" y="465"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="R1">
- <connectionPointIn>
- <relPosition x="0" y="90"/>
- <connection refLocalId="33" formalParameter="OUT">
- <position x="280" y="535"/>
- <position x="255" y="535"/>
- <position x="255" y="560"/>
- <position x="230" y="560"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Q1">
- <connectionPointOut>
- <relPosition x="55" y="45"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="27" executionOrderId="0" height="30" width="85" negated="false">
- <position x="40" y="545"/>
- <connectionPointOut>
- <relPosition x="85" y="15"/>
- </connectionPointOut>
- <expression>Power_OFF</expression>
- </inVariable>
- <block localId="28" typeName="OR" executionOrderId="0" height="85" width="70">
- <position x="160" y="430"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="35"/>
- <connection refLocalId="25">
- <position x="160" y="465"/>
- <position x="125" y="465"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="70"/>
- <connection refLocalId="29">
- <position x="160" y="500"/>
- <position x="135" y="500"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="70" y="35"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="29" executionOrderId="0" height="30" width="98" negated="false">
- <position x="40" y="485"/>
- <connectionPointOut>
- <relPosition x="98" y="15"/>
- </connectionPointOut>
- <expression>DrawTestBtn</expression>
- </inVariable>
- <block localId="33" typeName="OR" executionOrderId="0" height="85" width="70">
- <position x="160" y="525"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="35"/>
- <connection refLocalId="27">
- <position x="160" y="560"/>
- <position x="125" y="560"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="70"/>
- <connection refLocalId="35">
- <position x="160" y="595"/>
- <position x="125" y="595"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="70" y="35"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="35" executionOrderId="0" height="30" width="85" negated="false">
- <position x="40" y="580"/>
- <connectionPointOut>
- <relPosition x="85" y="15"/>
- </connectionPointOut>
- <expression>DrawLogo</expression>
- </inVariable>
- <comment localId="36" height="45" width="215">
- <position x="20" y="670"/>
- <content>
- <xhtml:p><![CDATA[Control virtual axes.]]></xhtml:p>
- </content>
- </comment>
- <inVariable localId="30" executionOrderId="0" height="30" width="85" negated="false">
- <position x="510" y="475"/>
- <connectionPointOut>
- <relPosition x="85" y="15"/>
- </connectionPointOut>
- <expression>DrawLogo</expression>
- </inVariable>
- <block localId="31" typeName="RS" instanceName="DrawLogoDo" executionOrderId="0" height="115" width="55">
- <position x="740" y="445"/>
- <inputVariables>
- <variable formalParameter="S">
- <connectionPointIn>
- <relPosition x="0" y="45"/>
- <connection refLocalId="30">
- <position x="740" y="490"/>
- <position x="595" y="490"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="R1">
- <connectionPointIn>
- <relPosition x="0" y="90"/>
- <connection refLocalId="39" formalParameter="OUT">
- <position x="740" y="535"/>
- <position x="715" y="535"/>
- <position x="715" y="560"/>
- <position x="690" y="560"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Q1">
- <connectionPointOut>
- <relPosition x="55" y="45"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="32" executionOrderId="0" height="30" width="85" negated="false">
- <position x="500" y="545"/>
- <connectionPointOut>
- <relPosition x="85" y="15"/>
- </connectionPointOut>
- <expression>Power_OFF</expression>
- </inVariable>
- <inVariable localId="38" executionOrderId="0" height="30" width="85" negated="false">
- <position x="500" y="580"/>
- <connectionPointOut>
- <relPosition x="85" y="15"/>
- </connectionPointOut>
- <expression>DrawTest</expression>
- </inVariable>
- <block localId="39" typeName="OR" executionOrderId="0" height="85" width="70">
- <position x="620" y="525"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="35"/>
- <connection refLocalId="32">
- <position x="620" y="560"/>
- <position x="585" y="560"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="70"/>
- <connection refLocalId="38">
- <position x="620" y="595"/>
- <position x="585" y="595"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="70" y="35"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <comment localId="34" height="45" width="365">
- <position x="15" y="55"/>
- <content>
- <xhtml:p><![CDATA[Turn on/off power, Power on enables axes control.]]></xhtml:p>
- </content>
- </comment>
- <comment localId="37" height="45" width="550">
- <position x="35" y="360"/>
- <content>
- <xhtml:p><![CDATA[Only one mode can be selected at any time ("Draw Logo" or "Draw Test").]]></xhtml:p>
- </content>
- </comment>
- </FBD>
- </body>
- <documentation>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </documentation>
- </pou>
- <pou name="ReadGUIdata" pouType="program">
- <interface>
- <localVars>
- <variable name="python_poll0">
- <type>
- <derived name="python_poll"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <block localId="220" typeName="python_poll" instanceName="python_poll0" executionOrderId="0" height="85" width="104">
- <position x="338" y="130"/>
- <inputVariables>
- <variable formalParameter="TRIG">
- <connectionPointIn>
- <relPosition x="0" y="35"/>
- <connection refLocalId="221">
- <position x="338" y="165"/>
- <position x="268" y="165"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="CODE">
- <connectionPointIn>
- <relPosition x="0" y="70"/>
- <connection refLocalId="222">
- <position x="338" y="200"/>
- <position x="296" y="200"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="ACK">
- <connectionPointOut>
- <relPosition x="104" y="35"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="RESULT">
- <connectionPointOut>
- <relPosition x="104" y="70"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="221" executionOrderId="0" height="30" width="93" negated="false">
- <position x="175" y="150"/>
- <connectionPointOut>
- <relPosition x="93" y="15"/>
- </connectionPointOut>
- <expression>BOOL#TRUE</expression>
- </inVariable>
- <inVariable localId="222" executionOrderId="0" height="30" width="186" negated="false">
- <position x="110" y="185"/>
- <connectionPointOut>
- <relPosition x="186" y="15"/>
- </connectionPointOut>
- <expression>'wxglade_hmi.UpdPos()'</expression>
- </inVariable>
- <comment localId="296" height="55" width="445">
- <position x="35" y="25"/>
- <content>
- <xhtml:p><![CDATA[This is slow PLC task. It just updates state of axes on HMI.]]></xhtml:p>
- </content>
- </comment>
- </FBD>
- </body>
- <documentation>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </documentation>
- </pou>
- <pou name="Declarations" pouType="program">
- <interface>
- <localVars>
- <variable name="InitValue">
- <type>
- <DINT/>
- </type>
- <initialValue>
- <simpleValue value="17"/>
- </initialValue>
- </variable>
- <variable name="NotInitializedVariable">
- <type>
- <DINT/>
- </type>
- </variable>
- <variable name="counter">
- <type>
- <DINT/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <inVariable localId="127" executionOrderId="0" height="30" width="82" negated="false">
- <position x="60" y="180"/>
- <connectionPointOut>
- <relPosition x="82" y="15"/>
- </connectionPointOut>
- <expression>InitValue</expression>
- </inVariable>
- <outVariable localId="128" executionOrderId="0" height="30" width="235" negated="false">
- <position x="180" y="180"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="127">
- <position x="180" y="195"/>
- <position x="142" y="195"/>
- </connection>
- </connectionPointIn>
- <expression>NotInitializedVariable</expression>
- </outVariable>
- <comment localId="129" height="90" width="395">
- <position x="65" y="40"/>
- <content>
- <xhtml:p><![CDATA[This program called only once at start.
-See task configuration in config.resource1.]]></xhtml:p>
- </content>
- </comment>
- <block localId="131" typeName="ADD" executionOrderId="0" height="95" width="70">
- <position x="160" y="340"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="40"/>
- <connection refLocalId="130">
- <position x="160" y="380"/>
- <position x="125" y="380"/>
- <position x="125" y="325"/>
- <position x="380" y="325"/>
- <position x="380" y="380"/>
- <position x="365" y="380"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="75"/>
- <connection refLocalId="1">
- <position x="160" y="415"/>
- <position x="120" y="415"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="70" y="40"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="1" executionOrderId="0" height="35" width="60" negated="false">
- <position x="60" y="400"/>
- <connectionPointOut>
- <relPosition x="60" y="15"/>
- </connectionPointOut>
- <expression>1</expression>
- </inVariable>
- <inOutVariable localId="130" executionOrderId="0" height="35" width="90" negatedOut="false" negatedIn="false">
- <position x="275" y="365"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="131" formalParameter="OUT">
- <position x="275" y="380"/>
- <position x="230" y="380"/>
- </connection>
- </connectionPointIn>
- <connectionPointOut>
- <relPosition x="90" y="15"/>
- </connectionPointOut>
- <expression>counter</expression>
- </inOutVariable>
- <comment localId="2" height="75" width="390">
- <position x="70" y="240"/>
- <content>
- <xhtml:p><![CDATA[Counts how many times the program is called.
-Check counter value in debugger.]]></xhtml:p>
- </content>
- </comment>
- </FBD>
- </body>
- <documentation>
- <xhtml:p><![CDATA[]]></xhtml:p>
- </documentation>
- </pou>
- <pou name="clock" pouType="functionBlock">
- <interface>
- <localVars>
- <variable name="TimerOn">
- <type>
- <derived name="TON"/>
- </type>
- </variable>
- </localVars>
- <outputVars>
- <variable name="Out">
- <type>
- <BOOL/>
- </type>
- </variable>
- </outputVars>
- <inputVars>
- <variable name="Period">
- <type>
- <TIME/>
- </type>
- <initialValue>
- <simpleValue value="T#3s"/>
- </initialValue>
- </variable>
- </inputVars>
- <localVars>
- <variable name="TimerOff">
- <type>
- <derived name="TON"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <block localId="14" typeName="TON" instanceName="TimerOn" executionOrderId="0" height="100" width="50">
- <position x="260" y="70"/>
- <inputVariables>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="40"/>
- <connection refLocalId="2" formalParameter="Q">
- <position x="260" y="110"/>
- <position x="225" y="110"/>
- <position x="225" y="10"/>
- <position x="550" y="10"/>
- <position x="550" y="110"/>
- <position x="510" y="110"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="PT">
- <connectionPointIn>
- <relPosition x="0" y="80"/>
- <connection refLocalId="16" formalParameter="OUT">
- <position x="260" y="150"/>
- <position x="225" y="150"/>
- <position x="225" y="255"/>
- <position x="190" y="255"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Q">
- <connectionPointOut>
- <relPosition x="50" y="40"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="ET">
- <connectionPointOut>
- <relPosition x="50" y="80"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <block localId="2" typeName="TON" instanceName="TimerOff" executionOrderId="0" height="100" width="50">
- <position x="460" y="70"/>
- <inputVariables>
- <variable formalParameter="IN">
- <connectionPointIn>
- <relPosition x="0" y="40"/>
- <connection refLocalId="14" formalParameter="Q">
- <position x="460" y="110"/>
- <position x="310" y="110"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="PT">
- <connectionPointIn>
- <relPosition x="0" y="80"/>
- <connection refLocalId="16" formalParameter="OUT">
- <position x="460" y="150"/>
- <position x="350" y="150"/>
- <position x="350" y="255"/>
- <position x="190" y="255"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Q" negated="true">
- <connectionPointOut>
- <relPosition x="50" y="40"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="ET">
- <connectionPointOut>
- <relPosition x="50" y="80"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <outVariable localId="15" executionOrderId="0" height="35" width="35" negated="false">
- <position x="365" y="25"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="14" formalParameter="Q">
- <position x="365" y="40"/>
- <position x="340" y="40"/>
- <position x="340" y="110"/>
- <position x="310" y="110"/>
- </connection>
- </connectionPointIn>
- <expression>Out</expression>
- </outVariable>
- <block localId="16" typeName="DIV" executionOrderId="0" height="95" width="70">
- <position x="120" y="215"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="40"/>
- <connection refLocalId="1">
- <position x="120" y="255"/>
- <position x="78" y="255"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="75"/>
- <connection refLocalId="4">
- <position x="120" y="290"/>
- <position x="75" y="290"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="70" y="40"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="1" executionOrderId="0" height="30" width="58" negated="false">
- <position x="20" y="240"/>
- <connectionPointOut>
- <relPosition x="58" y="15"/>
- </connectionPointOut>
- <expression>Period</expression>
- </inVariable>
- <inVariable localId="4" executionOrderId="0" height="30" width="55" negated="false">
- <position x="20" y="275"/>
- <connectionPointOut>
- <relPosition x="55" y="15"/>
- </connectionPointOut>
- <expression>2</expression>
- </inVariable>
- </FBD>
- </body>
- </pou>
- <pou name="axis" pouType="functionBlock">
- <interface>
- <inputVars>
- <variable name="Power">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="Up">
- <type>
- <BOOL/>
- </type>
- </variable>
- <variable name="Down">
- <type>
- <BOOL/>
- </type>
- </variable>
- </inputVars>
- <outputVars>
- <variable name="Out">
- <type>
- <INT/>
- </type>
- </variable>
- </outputVars>
- <localVars>
- <variable name="axis_conuter">
- <type>
- <derived name="CTUD"/>
- </type>
- </variable>
- <variable name="clock0">
- <type>
- <derived name="clock"/>
- </type>
- </variable>
- </localVars>
- </interface>
- <body>
- <FBD>
- <block localId="297" typeName="CTUD" instanceName="axis_conuter" executionOrderId="0" height="310" width="70">
- <position x="645" y="30"/>
- <inputVariables>
- <variable formalParameter="CU" edge="rising">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="303" formalParameter="OUT">
- <position x="645" y="80"/>
- <position x="580" y="80"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="CD" edge="rising">
- <connectionPointIn>
- <relPosition x="0" y="105"/>
- <connection refLocalId="2" formalParameter="OUT">
- <position x="645" y="135"/>
- <position x="612" y="135"/>
- <position x="612" y="150"/>
- <position x="580" y="150"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="R">
- <connectionPointIn>
- <relPosition x="0" y="165"/>
- </connectionPointIn>
- </variable>
- <variable formalParameter="LD">
- <connectionPointIn>
- <relPosition x="0" y="225"/>
- </connectionPointIn>
- </variable>
- <variable formalParameter="PV">
- <connectionPointIn>
- <relPosition x="0" y="280"/>
- <connection refLocalId="3">
- <position x="645" y="310"/>
- <position x="610" y="310"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="QU">
- <connectionPointOut>
- <relPosition x="70" y="50"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="QD">
- <connectionPointOut>
- <relPosition x="70" y="105"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="CV">
- <connectionPointOut>
- <relPosition x="70" y="165"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="CD_T">
- <connectionPointOut>
- <relPosition x="70" y="225"/>
- </connectionPointOut>
- </variable>
- <variable formalParameter="CU_T">
- <connectionPointOut>
- <relPosition x="70" y="280"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <outVariable localId="298" executionOrderId="0" height="35" width="35" negated="false">
- <position x="750" y="180"/>
- <connectionPointIn>
- <relPosition x="0" y="15"/>
- <connection refLocalId="297" formalParameter="CV">
- <position x="750" y="195"/>
- <position x="715" y="195"/>
- </connection>
- </connectionPointIn>
- <expression>Out</expression>
- </outVariable>
- <block localId="299" typeName="clock" instanceName="clock0" executionOrderId="0" height="70" width="87">
- <position x="165" y="270"/>
- <inputVariables>
- <variable formalParameter="Period">
- <connectionPointIn>
- <relPosition x="0" y="45"/>
- <connection refLocalId="1">
- <position x="165" y="315"/>
- <position x="110" y="315"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="Out">
- <connectionPointOut>
- <relPosition x="87" y="45"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="300" executionOrderId="0" height="35" width="55" negated="false">
- <position x="35" y="205"/>
- <connectionPointOut>
- <relPosition x="55" y="15"/>
- </connectionPointOut>
- <expression>Power</expression>
- </inVariable>
- <inVariable localId="1" executionOrderId="0" height="35" width="75" negated="false">
- <position x="35" y="300"/>
- <connectionPointOut>
- <relPosition x="75" y="15"/>
- </connectionPointOut>
- <expression>T#100ms</expression>
- </inVariable>
- <inVariable localId="301" executionOrderId="0" height="35" width="55" negated="false">
- <position x="340" y="85"/>
- <connectionPointOut>
- <relPosition x="55" y="15"/>
- </connectionPointOut>
- <expression>Up</expression>
- </inVariable>
- <inVariable localId="302" executionOrderId="0" height="35" width="50" negated="false">
- <position x="340" y="155"/>
- <connectionPointOut>
- <relPosition x="50" y="15"/>
- </connectionPointOut>
- <expression>Down</expression>
- </inVariable>
- <block localId="303" typeName="AND" executionOrderId="0" height="60" width="110">
- <position x="470" y="50"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="4" formalParameter="OUT">
- <position x="470" y="80"/>
- <position x="432" y="80"/>
- <position x="432" y="275"/>
- <position x="395" y="275"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="301">
- <position x="470" y="100"/>
- <position x="395" y="100"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="110" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <block localId="2" typeName="AND" executionOrderId="0" height="60" width="110">
- <position x="470" y="120"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="30"/>
- <connection refLocalId="4" formalParameter="OUT">
- <position x="470" y="150"/>
- <position x="432" y="150"/>
- <position x="432" y="275"/>
- <position x="395" y="275"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="50"/>
- <connection refLocalId="302">
- <position x="470" y="170"/>
- <position x="390" y="170"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="110" y="30"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- <inVariable localId="3" executionOrderId="0" height="35" width="85" negated="false">
- <position x="525" y="295"/>
- <connectionPointOut>
- <relPosition x="85" y="15"/>
- </connectionPointOut>
- <expression>INT#32767</expression>
- </inVariable>
- <block localId="4" typeName="AND" executionOrderId="0" height="100" width="110">
- <position x="285" y="235"/>
- <inputVariables>
- <variable formalParameter="IN1">
- <connectionPointIn>
- <relPosition x="0" y="40"/>
- <connection refLocalId="300">
- <position x="285" y="275"/>
- <position x="265" y="275"/>
- <position x="265" y="220"/>
- <position x="90" y="220"/>
- </connection>
- </connectionPointIn>
- </variable>
- <variable formalParameter="IN2">
- <connectionPointIn>
- <relPosition x="0" y="80"/>
- <connection refLocalId="299" formalParameter="Out">
- <position x="285" y="315"/>
- <position x="250" y="315"/>
- </connection>
- </connectionPointIn>
- </variable>
- </inputVariables>
- <inOutVariables/>
- <outputVariables>
- <variable formalParameter="OUT">
- <connectionPointOut>
- <relPosition x="110" y="40"/>
- </connectionPointOut>
- </variable>
- </outputVariables>
- </block>
- </FBD>
- </body>
- </pou>
- </pous>
- </types>
- <instances>
- <configurations>
- <configuration name="config">
- <resource name="resource1">
- <task name="InitOneShot" priority="0" single="Initialize">
- <pouInstance name="Initializer" typeName="Declarations"/>
- </task>
- <task name="ControlTask" priority="1" interval="T#2ms">
- <pouInstance name="MainInstance" typeName="main"/>
- </task>
- <task name="GUIupdate" priority="0" interval="T#200ms">
- <pouInstance name="PosReader" typeName="ReadGUIdata"/>
- </task>
- <globalVars>
- <variable name="Initialize">
- <type>
- <BOOL/>
- </type>
- <initialValue>
- <simpleValue value="TRUE"/>
- </initialValue>
- </variable>
- </globalVars>
- </resource>
- </configuration>
- </configurations>
- </instances>
-</project>
Binary file tests/wxHMI/project_files/Detect_Circle.png has changed
Binary file tests/wxHMI/project_files/DrawEscher.png has changed
Binary file tests/wxHMI/project_files/DrawLogo.png has changed
Binary file tests/wxHMI/project_files/DrawTest.png has changed
Binary file tests/wxHMI/project_files/Power_OFF.png has changed
Binary file tests/wxHMI/project_files/Power_ON.png has changed
Binary file tests/wxHMI/project_files/TaxisMinus.png has changed
Binary file tests/wxHMI/project_files/TaxisPlus.png has changed
Binary file tests/wxHMI/project_files/XaxisMinus.png has changed
Binary file tests/wxHMI/project_files/XaxisPlus.png has changed
Binary file tests/wxHMI/project_files/YaxisMinus.png has changed
Binary file tests/wxHMI/project_files/YaxisPlus.png has changed
Binary file tests/wxHMI/project_files/ZaxisMinus.png has changed
Binary file tests/wxHMI/project_files/ZaxisPlus.png has changed
--- a/tests/wxHMI/wxglade_hmi@wxglade_hmi/baseconfnode.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<BaseParams Name="wxglade_hmi" IEC_Channel="0"/>
--- a/tests/wxHMI/wxglade_hmi@wxglade_hmi/hmi.wxg Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,96 +0,0 @@
-<?xml version="1.0"?>
-<!-- generated by wxGlade 0.8.3 on Mon Aug 13 17:04:28 2018 -->
-
-<application encoding="UTF-8" for_version="3.0" header_extension=".h" indent_amount="4" indent_symbol="space" is_template="0" language="python" option="0" overwrite="0" path="..py.py" source_extension=".cpp" top_window="wxglade_hmi" use_gettext="1" use_new_namespace="1">
- <object class="Class_wxglade_hmi" name="wxglade_hmi" base="EditFrame">
- <title>frame_1</title>
- <style>wxDEFAULT_FRAME_STYLE|wxMAXIMIZE</style>
- <object class="wxFlexGridSizer" name="grid_sizer_1" base="EditFlexGridSizer">
- <rows>1</rows>
- <cols>4</cols>
- <vgap>0</vgap>
- <hgap>0</hgap>
- <growable_rows>0</growable_rows>
- <growable_cols>0</growable_cols>
- <object class="sizeritem">
- <option>1</option>
- <border>0</border>
- <flag>wxALIGN_CENTER</flag>
- <object class="ThreeDee" name="window_1" base="CustomWidget">
- <size>400,400</size>
- <arguments>
- <argument>$parent</argument>
- <argument>$id</argument>
- </arguments>
- </object>
- </object>
- <object class="sizeritem">
- <option>1</option>
- <border>0</border>
- <flag>wxEXPAND</flag>
- <object class="wxFlexGridSizer" name="sizer_1" base="EditFlexGridSizer">
- <rows>2</rows>
- <cols>1</cols>
- <vgap>0</vgap>
- <hgap>0</hgap>
- <growable_rows>0</growable_rows>
- <object class="sizeritem">
- <option>1</option>
- <border>0</border>
- <flag>wxEXPAND</flag>
- <object class="wxBoxSizer" name="sizer_2" base="EditBoxSizer">
- <orient>wxVERTICAL</orient>
- <object class="sizerslot" />
- <object class="sizerslot" />
- <object class="sizerslot" />
- <object class="sizerslot" />
- </object>
- </object>
- <object class="sizeritem">
- <option>1</option>
- <border>0</border>
- <flag>wxEXPAND</flag>
- <object class="wxGridSizer" name="sizer_3" base="EditGridSizer">
- <rows>6</rows>
- <cols>2</cols>
- <vgap>0</vgap>
- <hgap>0</hgap>
- <object class="sizerslot" />
- <object class="sizerslot" />
- <object class="sizerslot" />
- <object class="sizerslot" />
- <object class="sizerslot" />
- <object class="sizerslot" />
- <object class="sizerslot" />
- <object class="sizerslot" />
- <object class="sizerslot" />
- <object class="sizerslot" />
- <object class="sizerslot" />
- <object class="sizerslot" />
- </object>
- </object>
- </object>
- </object>
- <object class="sizeritem">
- <option>0</option>
- <border>0</border>
- <object class="wxToggleButton" name="DrawTestBt" base="EditToggleButton">
- <events>
- <handler event="EVT_TOGGLEBUTTON">SetPLCTestBtnGlobalVar</handler>
- </events>
- <label>Please Draw!</label>
- </object>
- </object>
- <object class="sizeritem">
- <option>0</option>
- <border>0</border>
- <object class="wxToggleButton" name="DrawTestBt2" base="EditToggleButton">
- <events>
- <handler event="EVT_TOGGLEBUTTON">SetPLCTestBtn2GlobalVar</handler>
- </events>
- <label>Please Draw copy!</label>
- </object>
- </object>
- </object>
- </object>
-</application>
--- a/tests/wxHMI/wxglade_hmi@wxglade_hmi/pyfile.xml Sun Jan 16 17:00:58 2022 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,148 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<PyFile xmlns:xhtml="http://www.w3.org/1999/xhtml">
- <variables>
- <variable name="Power_ON" type="BOOL"/>
- <variable name="Power_OFF" type="BOOL"/>
- <variable name="DrawTest" type="BOOL"/>
- <variable name="DrawLogo" type="BOOL"/>
- <variable name="DrawEscher" type="BOOL"/>
- <variable name="Detect_Circle" type="BOOL"/>
- <variable name="XaxisPos" type="INT"/>
- <variable name="YaxisPos" type="INT"/>
- <variable name="ZaxisPos" type="INT"/>
- <variable name="TaxisPos" type="INT"/>
- <variable name="XaxisMinus" type="BOOL"/>
- <variable name="YaxisMinus" type="BOOL"/>
- <variable name="ZaxisMinus" type="BOOL"/>
- <variable name="TaxisMinus" type="BOOL"/>
- <variable name="XaxisPlus" type="BOOL"/>
- <variable name="YaxisPlus" type="BOOL"/>
- <variable name="ZaxisPlus" type="BOOL"/>
- <variable name="TaxisPlus" type="BOOL"/>
- <variable name="DrawTestBtn" type="BOOL"/>
- <variable name="DrawTestBtn2" type="BOOL"/>
- </variables>
- <globals>
- <xhtml:p><![CDATA[
-import ctypes
-import wx, sys
-
-AxisList = ["X","Y","Z","T"]
-
-PwrButtons = ['Power_ON',
- 'Power_OFF']
-
-ActionButtons = ['Detect_Circle',
- 'DrawTest',
- 'DrawLogo',
- 'DrawEscher']
-
-class ThreeDee(wx.StaticText):
- def __init__(self, *args, **kwargs):
- self.initialized = False
- kwargs["style"] = wx.ALIGN_CENTRE_HORIZONTAL
- super(ThreeDee, self).__init__(*args, **kwargs)
-
- self.SetFont(wx.Font(24, wx.SWISS, wx.NORMAL, wx.BOLD))
-
- self.positions = [0.]*4
-
- self.Message = None
- self.NegLimits = None
- self.Disk = None
-
-
- def UpdatePositions(self, positions):
- # get globals from PLC
- self.positions = positions
- self.SetLabel(
- ((self.Message +'\n\n') if self.Message else '' )+
- " ".join(["%s %+.2f"%(axis,self.positions[i])
- for i,axis in enumerate(AxisList)]))
-
-def MakeButtonFunc(window, sizer, btname):
- def ButtonDown(event):
- setattr(PLCGlobals,btname,1)
- event.Skip()
- def ButtonUp(event):
- setattr(PLCGlobals,btname,0)
- event.Skip()
- obj = wx.BitmapButton(window, -1, wx.Bitmap('%s.png'%btname))
- sizer.Add(obj, 2, wx.EXPAND, 0)
- obj.Bind(wx.EVT_LEFT_DOWN, ButtonDown)
- obj.Bind(wx.EVT_LEFT_UP, ButtonUp)
- return obj
-
-def UpdPos(self):
- positions = [getattr(PLCGlobals,axname+"axisPos") for axname in AxisList]
-
- self.window_1.UpdatePositions(positions)
-
-Class_wxglade_hmi.UpdPos = UpdPos
-
-
-#def UpdatePositions(self, event):
-#
-# positions = [getattr(PLCGlobals,axname+"axisPos") for axname in AxisList]
-#
-# self.window_1.UpdatePositions(positions)
-#
-# event.Skip()
-
-#Class_wxglade_hmi.UpdatePositions = UpdatePositions
-
-def CleanSizer(sizer):
- sizer_len = sizer.GetItemCount()
- if sizer_len > 0:
- for i in reversed(range(sizer_len)):
- sizer.Remove(i)
-
-initorig = Class_wxglade_hmi.__init__
-def Init(self,*args,**kargs):
- initorig(self,*args,**kargs)
- sizer = self.GetSizer().GetItem(1).GetSizer().GetItem(0).GetSizer()
- CleanSizer(sizer)
- self.main_buttons = map(
- lambda btname: MakeButtonFunc(self, sizer, btname), PwrButtons)
- sizer = self.GetSizer().GetItem(1).GetSizer().GetItem(1).GetSizer()
- CleanSizer(sizer)
- self.main_buttons = map(
- lambda btname: MakeButtonFunc(self, sizer, btname), ActionButtons)
- self.axis_buttons = map(
- lambda axis:( MakeButtonFunc(self, sizer, axis+"axisMinus"),
- MakeButtonFunc(self, sizer, axis+"axisPlus")),
- AxisList)
-
-
- # self.timer = wx.Timer(self, -1)
- # self.Bind(wx.EVT_TIMER, self.UpdatePositions, self.timer)
- # self.ShowFullScreen(True,wx.FULLSCREEN_ALL)
- # wx.CallAfter(self.timer.Start,200)
-
-Class_wxglade_hmi.__init__ = Init
-
-def SetPLCTestBtnGlobalVar(self, evt):
- setattr(PLCGlobals, "DrawTestBtn", evt.GetEventObject().GetValue())
-
-def SetPLCTestBtn2GlobalVar(self, evt):
- setattr(PLCGlobals, "DrawTestBtn2", evt.GetEventObject().GetValue())
-
-]]></xhtml:p>
- </globals>
- <init>
- <xhtml:p><![CDATA[
-]]></xhtml:p>
- </init>
- <cleanup>
- <xhtml:p><![CDATA[
-]]></xhtml:p>
- </cleanup>
- <start>
- <xhtml:p><![CDATA[
-]]></xhtml:p>
- </start>
- <stop>
- <xhtml:p><![CDATA[
-]]></xhtml:p>
- </stop>
-</PyFile>