beremiz

0413874f2462
Parents 4876b441a291
Children b4ca27481230
SVGHMI: min and max limit for widgets can be set with assigned variables

This is a valid Widget declaration using new feature:
HMI:Input@/TARGETPRESSURE,0,max_pressure@max_pressure=hmi_local_max_setting

tests/projects/svghmi is updated accordingly.
--- a/svghmi/parse_labels.ysl2 Wed Mar 12 13:21:47 2025 +0100
+++ b/svghmi/parse_labels.ysl2 Tue Mar 18 15:58:34 2025 +0100
@@ -2,18 +2,18 @@
// Parses:
-// "HMI:WidgetType|freq:param1:param2@a=path1,path1min,path1max@b=path2#a+b>3"
+// "HMI:WidgetType|freq:param1:param2@a=.path0@a=path1,path1min,path1max@b=path2#a+b>3"
//
// Into:
-// widget type="WidgetType" id="blah456" {
+// widget type="WidgetType" id="blah456" enable_expr="a+b>3" {
// arg value="param1";
// arg value="param2";
-// path value=".path1" index=".path1" min="path1min" max="path1max" type="PAGE_LOCAL";
-// path value="/path1" index="348" type="HMI_INT";
-// path value="path4" index="path4" type="HMI_LOCAL";
+// path value=".path0" index=".path0" type="PAGE_LOCAL";
+// path value="/path1" index="348" type="HMI_INT" min="path1min" max="path1max" assign="a";
+// path value="path4" index="path4" type="HMI_LOCAL" assign=b;
// }
//
-const "pathregex",!"'^(\w+=)?([^,=]+)([-.\d,]*)$'"!;
+const "pathregex",!"'^(\w+=)?([^,=]+)([-.\w,]*)$'"!;
const "newline" |
const "twonewlines", "concat($newline,$newline)";
--- a/svghmi/widget_input.ysl2 Wed Mar 12 13:21:47 2025 +0100
+++ b/svghmi/widget_input.ysl2 Tue Mar 18 15:58:34 2025 +0100
@@ -66,8 +66,8 @@
if "$have_value"
| frequency: 5,
- | dispatch: function(value) {
-
+ | dispatch: function(value, oldval, varnum) {
+ | if(varnum != 0) return;
if "$have_value or $have_edit" {
choose{
--- a/svghmi/widgets_common.ysl2 Wed Mar 12 13:21:47 2025 +0100
+++ b/svghmi/widgets_common.ysl2 Tue Mar 18 15:58:34 2025 +0100
@@ -107,7 +107,7 @@
}
> , {
if "@min and @max"{
- > minmax:[«@min», «@max»]
+ > minmax:["«@min»", "«@max»"]
if "@assign"
> ,
}
@@ -132,20 +132,36 @@
}
| "«@id»": new «$widget/@type»Widget ("«@id»",«$freq»,[«$args»],[«$variables»],«$enable_expr»,{
+
+ | var_assignments: [],
+ | assignment_idx: {
+ foreach "$widget/path" { // nested loop to map assignments to varnum
+ const "varid","generate-id()";
+ if "@assign" foreach "$widget/path[@assign]" if "$varid = generate-id()" {
+ | "«@assign»":«position()-1» `if "position()!=last()" > ,`
+ }
+ }
+ | },
+ | varnum_assignments: [
+ foreach "$widget/path" { // nested loop to map assignments to varnum
+ const "varid","generate-id()";
+ choose {
+ when "@assign" foreach "$widget/path[@assign]" if "$varid = generate-id()" {
+ > «position()-1»
+ } otherwise {
+ > undefined
+ }
+ }
+ if "position()!=last()" > ,\n
+ }
+ | ],
if "$widget/@enable_expr" {
-
- | enable_assignments: [],
| compute_enable: function(value, oldval, varnum) {
| let result = false;
| do {
- foreach "$widget/path" {
- const "varid","generate-id()";
- const "varnum","position()-1";
- if "@assign" foreach "$widget/path[@assign]" if "$varid = generate-id()" {
- | if(varnum == «$varnum») this.enable_assignments[«position()-1»] = value;
- | let «@assign» = this.enable_assignments[«position()-1»];
+ foreach "$widget/path[@assign]" {
+ | let «@assign» = this.var_assignments[«position()-1»];
| if(«@assign» == undefined) break;
- }
}
| result = «$widget/@enable_expr»;
| } while(0);
@@ -393,7 +409,16 @@
clip_min_max(index, new_val) {
let minmax = this.variables_options[index].minmax;
if(minmax !== undefined && typeof new_val == "number") {
- let [min,max] = minmax;
+ let [min,max] = minmax.map(token => {
+ const num = Number(token);
+ if(!isNaN(num) && isFinite(num)){
+ return num;
+ }else{
+ let idx = this.assignment_idx[token];
+ if(idx != undefined)
+ return this.var_assignments[idx];
+ }
+ });
if(new_val < min){
this.undershot(new_val, min);
return min;
@@ -535,15 +560,22 @@
}
do_dispatch(value, oldval, varnum) {
- if(this.dispatch) try {
- this.dispatch(value, oldval, varnum);
- } catch(err) {
- console.log(err);
- }
- if(this.enable_expr) try {
- this.compute_enable(value, oldval, varnum);
- } catch(err) {
- console.log(err);
+ if(this.enable_expr || this.dispatch){
+ let idx = this.varnum_assignments[varnum];
+ if(idx != undefined)
+ this.var_assignments[idx] = value;
+
+ if(this.dispatch) try {
+ this.dispatch(value, oldval, varnum);
+ } catch(err) {
+ console.log(err);
+ }
+
+ if(idx != undefined && this.enable_expr) try {
+ this.compute_enable(value, oldval, varnum);
+ } catch(err) {
+ console.log(err);
+ }
}
}
--- a/tests/projects/svghmi/svghmi_0@svghmi/svghmi.svg Wed Mar 12 13:21:47 2025 +0100
+++ b/tests/projects/svghmi/svghmi_0@svghmi/svghmi.svg Tue Mar 18 15:58:34 2025 +0100
@@ -2,22 +2,21 @@
<!-- 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)"
+ inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
sodipodi:docname="svghmi.svg"
id="hmi0"
version="1.1"
viewBox="0 0 1280 720"
height="720"
- width="1280">
+ width="1280"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
<script
id="script1244">
hmi_widgets[&quot;g443-3&quot;].off_action = function(){
@@ -42,7 +41,7 @@
id="defs2">
<linearGradient
id="linearGradient34303"
- osb:paint="solid">
+ inkscape:swatch="solid">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
@@ -50,7 +49,7 @@
</linearGradient>
<linearGradient
id="linearGradient20537"
- osb:paint="solid">
+ inkscape:swatch="solid">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
@@ -136,19 +135,20 @@
inkscape:current-layer="hmi0"
showgrid="false"
units="px"
- inkscape:zoom="2.2679688"
- inkscape:cx="1135.0439"
- inkscape:cy="130.37028"
+ inkscape:zoom="0.80184806"
+ inkscape:cx="426.51472"
+ inkscape:cy="15.588988"
inkscape:window-width="1850"
- inkscape:window-height="1036"
+ inkscape:window-height="1016"
inkscape:window-x="0"
- inkscape:window-y="27"
+ 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" />
+ inkscape:bbox-nodes="true"
+ inkscape:pagecheckerboard="0" />
<rect
y="-800"
x="1480"
@@ -165,14 +165,18 @@
id="text302"
y="-108.39357"
x="3726.6924"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.66666603px;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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.6667px;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="-108.39357"
x="3726.6924"
id="tspan298"
- sodipodi:role="line">declaration of user_level HMI local variable</tspan><tspan
+ sodipodi:role="line">user_role</tspan><tspan
+ y="-85.060196"
+ x="3726.6924"
+ sodipodi:role="line"
+ id="tspan12682">declaration of user_level HMI local variable</tspan><tspan
id="tspan300"
- y="-85.060234"
+ y="-61.726818"
x="3726.6924"
sodipodi:role="line">(not a PLC variable)</tspan></text>
</g>
@@ -213,7 +217,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="1436.9814"
id="home_jmp"
@@ -222,7 +226,7 @@
id="tspan1028"
x="1090.7626"
y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px">Home</tspan></text>
</g>
</g>
<rect
@@ -258,9 +262,9 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="656.98151"
x="1090.7626"
id="tspan1024"
@@ -269,8 +273,8 @@
</g>
<g
id="g84"
- inkscape:label="HMI:Input@/TARGETPRESSURE,0,100"
- transform="matrix(0.35865594,0,0,0.35865594,22.072155,63.074421)">
+ inkscape:label="HMI:Input@/TARGETPRESSURE,0,max_pressure@max_pressure=hmi_local_max_setting"
+ transform="matrix(0.35865594,0,0,0.35865594,22.072155,3.074421)">
<text
inkscape:label="value"
id="text5151"
@@ -383,12 +387,12 @@
<text
inkscape:label="HMI:Display@/PUMP0/PRESSURE"
id="text823"
- y="141.34827"
+ y="81.348267"
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"
+ style="font-style:normal;font-weight:normal;font-size:57.3849px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.358656px;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"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.358656px"
+ y="81.348267"
x="293.33374"
id="tspan821"
sodipodi:role="line">8888</tspan></text>
@@ -421,9 +425,9 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:10.5833px;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.264583px;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"
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.264583px"
y="4.9187088"
x="49.132977"
id="tspan4503"
@@ -431,7 +435,7 @@
<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"
+ style="font-style:normal;font-weight:normal;font-size:10.5833px;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.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="127.48073"
y="-78.144218"
id="text4509"><tspan
@@ -439,10 +443,10 @@
id="tspan4507"
x="127.48073"
y="-78.144218"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px">10000</tspan></text>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.264583px">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"
+ style="font-style:normal;font-weight:normal;font-size:7.54672px;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.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="124.77896"
y="1.1408259"
id="text4521"
@@ -450,36 +454,36 @@
sodipodi:role="line"
x="124.77896"
y="1.1408259"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.26458332px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.264583px"
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"
+ style="font-style:normal;font-weight:normal;font-size:14.3462px;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.358656px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="114.11434"
- y="90.742165"
+ y="30.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>
+ y="30.742165"
+ style="stroke-width:0.358656px">SetPoint</tspan></text>
<text
id="text831"
- y="90.742165"
+ y="30.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"
+ style="font-style:normal;font-weight:normal;font-size:14.3462px;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.358656px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"
inkscape:label="actual_label"><tspan
- y="90.742165"
+ y="30.742165"
x="344.50876"
id="tspan829"
sodipodi:role="line"
- style="stroke-width:0.35865593px">Actual</tspan></text>
+ style="stroke-width:0.358656px">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"
+ style="font-style:normal;font-weight:normal;font-size:22.8722px;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.571805px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="206.73413"
y="336.90073"
id="text4497"
@@ -488,7 +492,7 @@
id="tspan4495"
x="206.73413"
y="336.90073"
- style="fill:#ff6600;stroke-width:0.57180536px">Pressure</tspan></text>
+ style="fill:#ff6600;stroke-width:0.571805px">Pressure</tspan></text>
<g
inkscape:label="HMI:Meter@/PUMP0/SLOTH"
transform="matrix(7.5590552,0,0,7.5590552,-244.3956,1321.2434)"
@@ -509,7 +513,7 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:5.29167px;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.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="115.07632"
y="9.3424692"
id="text96"
@@ -518,15 +522,15 @@
id="tspan94"
x="115.07632"
y="9.3424692"
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.264583px">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"
+ style="font-style:normal;font-weight:normal;font-size:5.29167px;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.264583px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.264583px"
y="-64.195457"
x="113.27539"
id="tspan98"
@@ -536,10 +540,10 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:7.54672px;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.264583px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.264583px"
y="-9.4425077"
x="140.65398"
sodipodi:role="line">€£$¥</tspan></text>
@@ -736,7 +740,7 @@
</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;"
+ 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"
@@ -745,10 +749,10 @@
id="tspan993"
x="736.32812"
y="1478.2422"
- style="fill:#82ff77;fill-opacity:1;stroke-width:1px;">8888</tspan></text>
+ 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"
+ style="font-style:normal;font-weight:normal;font-size:45.7444px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.285903px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="28.181862"
y="365.32291"
id="text134"
@@ -757,15 +761,15 @@
id="tspan132"
x="28.181862"
y="365.32291"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.285903px">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"
+ style="font-style:normal;font-weight:normal;font-size:45.7444px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.285903px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.285903px"
y="422.50345"
x="28.181862"
id="tspan136"
@@ -986,10 +990,10 @@
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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0764px;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.47691px;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"
+ style="text-align:start;text-anchor:start;stroke-width:0.47691px"
y="37.408375"
x="72.50132"
id="tspan2428"
@@ -1026,7 +1030,7 @@
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;stroke-width:0.10515"
id="text331"
y="129.38269"
x="636.4165"
@@ -1042,7 +1046,7 @@
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;stroke-width:0.10515"
id="text335"
y="154.10822"
x="636.4165"
@@ -1058,7 +1062,7 @@
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;stroke-width:0.10515"
id="text339"
y="179.82285"
x="636.4165"
@@ -1074,7 +1078,7 @@
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;stroke-width:0.10515"
id="text347"
y="129.38269"
x="667.07562"
@@ -1090,7 +1094,7 @@
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;stroke-width:0.10515"
id="text351"
y="154.10822"
x="667.07562"
@@ -1106,7 +1110,7 @@
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;stroke-width:0.10515"
id="text355"
y="179.82285"
x="667.07562"
@@ -1122,7 +1126,7 @@
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;stroke-width:0.10515"
id="text363"
y="129.38269"
x="695.75708"
@@ -1138,7 +1142,7 @@
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;stroke-width:0.10515"
id="text367"
y="154.10822"
x="695.75708"
@@ -1154,7 +1158,7 @@
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;stroke-width:0.10515"
id="text371"
y="179.82285"
x="695.75708"
@@ -1170,7 +1174,7 @@
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;stroke-width:0.10515"
id="text377"
y="205.53712"
x="636.4165"
@@ -1190,7 +1194,7 @@
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"
+ style="font-weight:normal;font-size:10.6388px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.368668"
transform="scale(1.0007154,0.99928511)">Esc</text>
</g>
<g
@@ -1223,12 +1227,12 @@
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;stroke-width:0.10515"
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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.3138px;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.307844px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="252.9579"
y="12.333653"
id="text509"
@@ -1238,7 +1242,7 @@
id="tspan507"
x="252.9579"
y="12.333653"
- style="stroke-width:0.30784383px">information</tspan></text>
+ style="stroke-width:0.307844px">information</tspan></text>
<g
transform="matrix(1.6700128,0,0,1.6700128,-826.83854,-145.60856)"
style="fill-rule:evenodd;stroke-width:0.13585199"
@@ -1250,7 +1254,7 @@
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"
+ style="font-weight:normal;font-size:6.96603px;font-family:Arial;fill:#2b2828;stroke-width:0.10515"
id="text771"
y="204.54802"
x="696.7464"
@@ -1294,7 +1298,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
transform="scale(1.0007154,0.99928514)">Q</text>
</g>
<g
@@ -1311,7 +1315,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
transform="scale(1.0007154,0.99928514)">W</text>
</g>
<g
@@ -1328,7 +1332,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
transform="scale(1.0007154,0.99928514)">E</text>
</g>
<g
@@ -1345,7 +1349,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
transform="scale(1.0007154,0.99928514)">R</text>
</g>
<g
@@ -1362,7 +1366,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
transform="scale(1.0007154,0.99928514)">T</text>
</g>
<g
@@ -1379,7 +1383,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
transform="scale(1.0007154,0.99928514)">Y</text>
</g>
<g
@@ -1396,7 +1400,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
transform="scale(1.0007154,0.99928514)">U</text>
</g>
<g
@@ -1413,7 +1417,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
transform="scale(1.0007154,0.99928514)">I</text>
</g>
<g
@@ -1430,7 +1434,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
transform="scale(1.0007154,0.99928514)">O</text>
</g>
<g
@@ -1447,7 +1451,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
transform="scale(1.0007154,0.99928514)">P</text>
</g>
<g
@@ -1460,7 +1464,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text243"
y="163.99854"
x="107.29005"
@@ -1476,7 +1480,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text247"
y="163.99854"
x="137.95012"
@@ -1492,7 +1496,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text251"
y="163.99854"
x="166.63159"
@@ -1508,7 +1512,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text255"
y="163.99854"
x="197.29166"
@@ -1524,7 +1528,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text259"
y="163.99854"
x="225.97284"
@@ -1540,7 +1544,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text263"
y="163.99854"
x="255.64342"
@@ -1556,7 +1560,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text267"
y="163.99854"
x="287.29208"
@@ -1572,7 +1576,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text271"
y="163.99854"
x="314.98465"
@@ -1588,7 +1592,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text275"
y="163.99854"
x="345.64444"
@@ -1605,7 +1609,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text279"
y="188.72411"
x="119.15855"
@@ -1622,7 +1626,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text283"
y="188.72411"
x="148.82933"
@@ -1639,7 +1643,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text287"
y="188.72411"
x="178.50011"
@@ -1656,7 +1660,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text291"
y="188.72411"
x="208.16988"
@@ -1673,7 +1677,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text295"
y="188.72411"
x="237.84096"
@@ -1690,7 +1694,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text299"
y="188.72411"
x="267.51193"
@@ -1707,7 +1711,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text303"
y="188.72411"
x="296.1933"
@@ -1725,7 +1729,7 @@
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.368668"
id="text719"
y="189.66107"
x="359.58276">.</text>
@@ -1733,7 +1737,7 @@
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.368668"
transform="scale(1.0007154,0.99928512)">:</text>
</g>
<g
@@ -1747,13 +1751,13 @@
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.368668"
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.368668"
y="189.66107"
x="330.00806"
transform="scale(1.0007154,0.99928512)"
@@ -1770,7 +1774,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text2841"
y="138.28395"
x="101.07153"
@@ -1787,7 +1791,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text2849"
y="138.28395"
x="130.18704"
@@ -1804,7 +1808,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text2857"
y="138.28395"
x="159.70854"
@@ -1820,7 +1824,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text2867"
y="111.55791"
x="176.39188"
@@ -1836,7 +1840,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text2875"
y="111.55791"
x="205.70567"
@@ -1852,7 +1856,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text2883"
y="111.55791"
x="236.15851"
@@ -1868,7 +1872,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text2891"
y="111.55791"
x="266.06564"
@@ -1884,7 +1888,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text2899"
y="111.55791"
x="295.08231"
@@ -1900,7 +1904,7 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text2907"
y="111.55791"
x="325.05408"
@@ -1910,7 +1914,7 @@
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>
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.368668">-</text>
</g>
<g
id="g2987"
@@ -1922,14 +1926,14 @@
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"
+ style="font-weight:normal;font-size:13.9321px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
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"
+ style="font-weight:normal;font-size:9.28804px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.368668"
id="text804"
y="102.42173"
x="365.30151">+</text>
@@ -1948,7 +1952,7 @@
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"
+ style="font-weight:normal;font-size:9.37966px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.368668"
id="text469"
y="130.02028"
x="59.288635">Esc</text>
@@ -2007,13 +2011,13 @@
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"
+ style="font-weight:normal;font-size:8.66234px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
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"
+ style="font-weight:normal;font-size:8.66234px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
transform="scale(1.0007154,0.99928515)">Lock</text>
</g>
<g
@@ -2029,13 +2033,13 @@
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"
+ style="font-weight:normal;font-size:8.66234px;font-family:Arial;fill:#ffffff;stroke-width:0.368668"
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"
+ style="font-weight:normal;font-size:8.66234px;font-family:Arial;fill:#ffffff;stroke-width:0.368668"
id="text651"
y="166.5585"
x="69.789322">Lock</text>
@@ -2053,7 +2057,7 @@
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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0764px;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.47691px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="72.50132"
y="38.296417"
id="text1309"
@@ -2062,7 +2066,7 @@
id="tspan1307"
x="72.50132"
y="38.296417"
- style="text-align:start;text-anchor:start;stroke-width:0.47690967px">text</tspan></text>
+ style="text-align:start;text-anchor:start;stroke-width:0.47691px">text</tspan></text>
<g
id="g437"
inkscape:label="Shift">
@@ -2076,7 +2080,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"
sodipodi:nodetypes="sssssssss" />
<text
- style="font-weight:normal;font-size:8.92098808px;font-family:Arial;fill:#2b2828;stroke-width:0.36866826"
+ style="font-weight:normal;font-size:8.92099px;font-family:Arial;fill:#2b2828;stroke-width:0.368668"
id="text912"
y="177.90059"
x="392.55679"
@@ -2091,7 +2095,7 @@
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"
+ style="font-weight:normal;font-size:8.92099px;font-family:Arial;fill:#2b2828;fill-rule:evenodd;stroke-width:0.368668"
transform="scale(1.0007154,0.99928513)">Shift</text>
</g>
<g
@@ -2108,7 +2112,7 @@
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>
+ style="font-weight:normal;font-size:8.92099px;font-family:Arial;fill:#ffffff;stroke-width:0.368668">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"
@@ -2117,7 +2121,7 @@
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"
+ style="font-weight:normal;font-size:8.92099px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.368668"
id="text881"
y="177.90059"
x="75.85218">Shift</text>
@@ -2128,10 +2132,10 @@
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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.3138px;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.307844px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"
inkscape:label="Info"><tspan
- style="stroke-width:0.30784383px"
+ style="stroke-width:0.307844px"
y="12.333657"
x="252.9579"
id="tspan469"
@@ -2166,10 +2170,10 @@
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"
+ 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.350839px;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"
+ style="text-align:start;text-anchor:start;fill:#d42aff;stroke-width:0.350839px"
y="1011.9975"
x="881.44226"
sodipodi:role="line"
@@ -2565,7 +2569,7 @@
<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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:19.0764px;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.47691px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="243.24242"
y="94.637527"
id="text1392"><tspan
@@ -2573,7 +2577,7 @@
id="tspan1390"
x="243.24242"
y="94.637527"
- style="text-align:center;text-anchor:middle;stroke-width:0.47690967px">message</tspan></text>
+ style="text-align:center;text-anchor:middle;stroke-width:0.47691px">message</tspan></text>
<g
transform="translate(-158.98593,95.381925)"
inkscape:label="OK"
@@ -2586,14 +2590,12 @@
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"
+ style="font-weight:normal;font-size:10.6388px;font-family:Arial;fill:#ffffff;fill-rule:evenodd;stroke-width:0.368668"
id="text1464"
y="78.632088"
- x="402.71881">
- <tspan
+ x="402.71881"><tspan
style="text-align:center;text-anchor:middle"
- id="tspan5195">OK</tspan>
- </text>
+ id="tspan5195">OK</tspan></text>
</g>
<text
inkscape:label="Info"
@@ -2601,9 +2603,9 @@
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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12.3138px;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.307844px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="stroke-width:0.30784383px"
+ style="stroke-width:0.307844px"
y="12.333653"
x="252.9579"
id="tspan1480"
@@ -2635,7 +2637,7 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:10.5833px;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.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="49.132977"
y="4.9187088"
id="text1324"
@@ -2644,15 +2646,15 @@
id="tspan1322"
x="49.132977"
y="4.9187088"
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.264583px">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"
+ style="font-style:normal;font-weight:normal;font-size:10.5833px;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.264583px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.264583px"
y="-78.144218"
x="127.48073"
id="tspan1326"
@@ -2662,10 +2664,10 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:7.54672px;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.264583px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.264583px"
y="1.1408259"
x="124.77896"
sodipodi:role="line">bar</tspan></text>
@@ -3082,7 +3084,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="656.98151"
id="text1454"
@@ -3090,7 +3092,7 @@
sodipodi:role="line"
x="1090.7626"
y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1460">Pump 0</tspan></text>
</g>
</g>
@@ -3119,14 +3121,13 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
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"
@@ -3155,7 +3156,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="656.98151"
id="text1487"
@@ -3163,13 +3164,12 @@
sodipodi:role="line"
x="1090.7626"
y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
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>
+ y="706.98151" /></text>
</g>
</g>
<g
@@ -3197,14 +3197,13 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
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"
@@ -3213,7 +3212,7 @@
</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"
+ style="font-style:normal;font-weight:normal;font-size:55.0901px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.344314px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="403.8551"
y="700.05371"
id="text1517"
@@ -3222,22 +3221,22 @@
id="tspan1515"
x="403.8551"
y="700.05371"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px">8888</tspan></text>
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.344314px">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"
+ style="font-style:normal;font-weight:normal;font-size:55.0901px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.344314px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.344314px"
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"
+ style="font-style:normal;font-weight:normal;font-size:55.0901px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.344314px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="723.8551"
y="700.05371"
id="text1525"
@@ -3246,15 +3245,15 @@
id="tspan1523"
x="723.8551"
y="700.05371"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px">8888</tspan></text>
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.344314px">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"
+ style="font-style:normal;font-weight:normal;font-size:55.0901px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.344314px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.34431386px"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.344314px"
y="700.05371"
x="883.8551"
id="tspan1527"
@@ -3284,14 +3283,14 @@
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" />
<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:#434343;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ 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:#434343;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1093.7899"
y="657.59668"
id="text1454-0-7"><tspan
sodipodi:role="line"
x="1093.7899"
y="657.59668"
- style="text-align:center;text-anchor:middle;fill:#434343;fill-opacity:1;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#434343;fill-opacity:1;stroke-width:1px"
id="tspan1460-3-5">Disabled</tspan></text>
</g>
<g
@@ -3309,14 +3308,14 @@
inkscape:label="button" />
<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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1093.7899"
y="657.59668"
id="text1454-0"><tspan
sodipodi:role="line"
x="1093.7899"
y="657.59668"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1460-3">Inactive</tspan></text>
</g>
<g
@@ -3334,20 +3333,20 @@
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-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" />
<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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1095.5966"
y="657.59668"
id="text1454-0-3"><tspan
sodipodi:role="line"
x="1095.5966"
y="657.59668"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1460-3-6">Active</tspan></text>
</g>
</g>
<text
xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:22.48720932px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.14054523px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-weight:normal;font-size:22.4872px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.140545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1591.54"
y="102.34158"
id="text1517-8"
@@ -3356,14 +3355,14 @@
id="tspan1515-5"
x="1591.54"
y="102.34158"
- style="fill:#000000;fill-opacity:1;stroke-width:0.14054523px">8888</tspan></text>
+ style="fill:#000000;fill-opacity:1;stroke-width:0.140545px">8888</tspan></text>
</g>
<g
id="g6122"
inkscape:label="PUMP:2">
<text
xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:22.48720932px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.14054523px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-weight:normal;font-size:22.4872px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.140545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1751.7461"
y="102.34158"
id="text1517-8-5"
@@ -3372,7 +3371,7 @@
id="tspan1515-5-3"
x="1751.7461"
y="102.34158"
- style="fill:#000000;fill-opacity:1;stroke-width:0.14054523px">8888</tspan></text>
+ style="fill:#000000;fill-opacity:1;stroke-width:0.140545px">8888</tspan></text>
<g
transform="matrix(0.57180538,0,0,0.57180538,1184.0513,-317.49049)"
inkscape:label="HMI:Jump:RelativePageTest@en=/PUMP1#en"
@@ -3393,14 +3392,14 @@
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" />
<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:#434343;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ 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:#434343;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1093.7899"
y="657.59668"
id="text1454-0-7-2"><tspan
sodipodi:role="line"
x="1093.7899"
y="657.59668"
- style="text-align:center;text-anchor:middle;fill:#434343;fill-opacity:1;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#434343;fill-opacity:1;stroke-width:1px"
id="tspan1460-3-5-9">Disabled</tspan></text>
</g>
<g
@@ -3419,14 +3418,14 @@
inkscape:label="button" />
<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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1093.7899"
y="657.59668"
id="text1454-0-70"><tspan
sodipodi:role="line"
x="1093.7899"
y="657.59668"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1460-3-9">Inactive</tspan></text>
</g>
<g
@@ -3445,14 +3444,14 @@
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-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" />
<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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1095.5966"
y="657.59668"
id="text1454-0-3-0"><tspan
sodipodi:role="line"
x="1095.5966"
y="657.59668"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1460-3-6-6">Active</tspan></text>
</g>
</g>
@@ -3462,7 +3461,7 @@
inkscape:label="PUMP:3">
<text
xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:22.48720932px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.14054523px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-weight:normal;font-size:22.4872px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.140545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1911.9519"
y="102.34158"
id="text1517-8-8"
@@ -3471,7 +3470,7 @@
id="tspan1515-5-8"
x="1911.9519"
y="102.34158"
- style="fill:#000000;fill-opacity:1;stroke-width:0.14054523px">8888</tspan></text>
+ style="fill:#000000;fill-opacity:1;stroke-width:0.140545px">8888</tspan></text>
<g
transform="matrix(0.57180538,0,0,0.57180538,1344.0513,-317.49049)"
inkscape:label="HMI:Jump:RelativePageTest@en=/PUMP2#en"
@@ -3492,14 +3491,14 @@
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" />
<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:#434343;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ 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:#434343;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1093.7899"
y="657.59668"
id="text1454-0-7-8"><tspan
sodipodi:role="line"
x="1093.7899"
y="657.59668"
- style="text-align:center;text-anchor:middle;fill:#434343;fill-opacity:1;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#434343;fill-opacity:1;stroke-width:1px"
id="tspan1460-3-5-7">Disabled</tspan></text>
</g>
<g
@@ -3518,14 +3517,14 @@
inkscape:label="button" />
<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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1093.7899"
y="657.59668"
id="text1454-0-2"><tspan
sodipodi:role="line"
x="1093.7899"
y="657.59668"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1460-3-3">Inactive</tspan></text>
</g>
<g
@@ -3544,14 +3543,14 @@
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-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" />
<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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1095.5966"
y="657.59668"
id="text1454-0-3-9"><tspan
sodipodi:role="line"
x="1095.5966"
y="657.59668"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1460-3-6-2">Active</tspan></text>
</g>
</g>
@@ -3561,7 +3560,7 @@
inkscape:label="PUMP:4">
<text
xml:space="preserve"
- style="font-style:normal;font-weight:normal;font-size:22.48720932px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.14054523px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-weight:normal;font-size:22.4872px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.140545px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="2072.1577"
y="102.34158"
id="text1517-8-3"
@@ -3570,7 +3569,7 @@
id="tspan1515-5-1"
x="2072.1577"
y="102.34158"
- style="fill:#000000;fill-opacity:1;stroke-width:0.14054523px">8888</tspan></text>
+ style="fill:#000000;fill-opacity:1;stroke-width:0.140545px">8888</tspan></text>
<g
transform="matrix(0.57180538,0,0,0.57180538,1504.0513,-317.49049)"
inkscape:label="HMI:Jump:RelativePageTest@en=/PUMP3#en"
@@ -3591,14 +3590,14 @@
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" />
<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:#434343;fill-opacity:1;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ 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:#434343;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1093.7899"
y="657.59668"
id="text1454-0-7-3"><tspan
sodipodi:role="line"
x="1093.7899"
y="657.59668"
- style="text-align:center;text-anchor:middle;fill:#434343;fill-opacity:1;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#434343;fill-opacity:1;stroke-width:1px"
id="tspan1460-3-5-6">Disabled</tspan></text>
</g>
<g
@@ -3617,14 +3616,14 @@
inkscape:label="button" />
<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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1093.7899"
y="657.59668"
id="text1454-0-31"><tspan
sodipodi:role="line"
x="1093.7899"
y="657.59668"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1460-3-94">Inactive</tspan></text>
</g>
<g
@@ -3643,14 +3642,14 @@
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-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" />
<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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1095.5966"
y="657.59668"
id="text1454-0-3-5"><tspan
sodipodi:role="line"
x="1095.5966"
y="657.59668"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1460-3-6-0">Active</tspan></text>
</g>
</g>
@@ -3670,7 +3669,7 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:42.8154px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.07039"
x="1340.5292"
y="663.73657"
id="text6239"><tspan
@@ -3678,7 +3677,7 @@
id="tspan6237"
x="1340.5292"
y="663.73657"
- style="fill:#ffffff;stroke-width:1.0703851">+1</tspan></text>
+ style="fill:#ffffff;stroke-width:1.07039">+1</tspan></text>
</g>
<g
transform="matrix(0.57180538,0,0,0.57180538,752.02604,-322.19558)"
@@ -3697,9 +3696,9 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:42.8154px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.07039"
xml:space="preserve"><tspan
- style="fill:#ffffff;stroke-width:1.0703851"
+ style="fill:#ffffff;stroke-width:1.07039"
y="663.73657"
x="1340.5292"
id="tspan6202"
@@ -3708,7 +3707,7 @@
</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"
+ style="font-style:normal;font-weight:normal;font-size:25.7654px;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.368836px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="949.96338"
y="514.57275"
id="text995-6"
@@ -3717,27 +3716,27 @@
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>
+ style="text-align:center;text-anchor:middle;fill:#82ff77;fill-opacity:1;stroke-width:0.368836px">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"
+ style="font-style:normal;font-weight:normal;font-size:25.4762px;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.636904px;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>
+ style="stroke-width:0.636904px">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"
+ style="font-style:normal;font-weight:normal;font-size:22.8722px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.285903px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.285903px"
y="68.844757"
x="750.28473"
id="tspan1455"
@@ -3935,18 +3934,18 @@
<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"
+ style="font-style:normal;font-weight:normal;font-size:12.7381px;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.636904px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="509.67926"
y="43.42762"
id="text1527"><tspan
- style="stroke-width:0.63690436px"
+ style="stroke-width:0.636904px"
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"
+ style="font-style:normal;font-weight:normal;font-size:22.8722px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.285903px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="750.28473"
y="128.84476"
id="text1557"
@@ -3955,7 +3954,7 @@
id="tspan1555"
x="750.28473"
y="128.84476"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.285903px">8888</tspan></text>
<g
transform="matrix(0.14295135,0,0,0.14295135,589.21833,97.61518)"
id="g1605"
@@ -4150,13 +4149,13 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:12.7381px;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.636904px;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"
+ style="stroke-width:0.636904px"
id="tspan1611">PAGE_LOCAL variables</tspan></text>
<g
inkscape:label="HMI:Meter@level"
@@ -4184,7 +4183,7 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:10.5833px;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.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="49.132977"
y="4.9187088"
id="text695"
@@ -4193,15 +4192,15 @@
id="tspan693"
x="49.132977"
y="4.9187088"
- style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.26458332px">0</tspan></text>
+ style="text-align:end;text-anchor:end;fill:#ff6600;stroke-width:0.264583px">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"
+ style="font-style:normal;font-weight:normal;font-size:10.5833px;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.264583px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.264583px"
y="-78.144218"
x="127.48073"
id="tspan697"
@@ -4211,10 +4210,10 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:7.54672px;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.264583px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.264583px"
y="1.1408259"
x="124.77896"
sodipodi:role="line">bar</tspan></text>
@@ -4337,9 +4336,9 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:45.7444px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.285903px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.285903px"
y="215.65211"
x="2632.9148"
id="tspan1455-2"
@@ -4537,18 +4536,18 @@
<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"
+ style="font-style:normal;font-weight:normal;font-size:25.4762px;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.636904px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="2471.7039"
y="164.81787"
id="text1527-7"><tspan
- style="stroke-width:0.63690436px"
+ style="stroke-width:0.636904px"
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"
+ style="font-style:normal;font-weight:normal;font-size:45.7444px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.285903px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="2632.9148"
y="335.65213"
id="text1557-6"
@@ -4557,7 +4556,7 @@
id="tspan1555-1"
x="2632.9148"
y="335.65213"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.285903px">8888</tspan></text>
<g
transform="matrix(0.28590269,0,0,0.28590269,2430.782,273.19298)"
id="g1605-2"
@@ -4752,22 +4751,22 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:25.4762px;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.636904px;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"
+ style="stroke-width:0.636904px"
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"
+ style="font-style:normal;font-weight:normal;font-size:45.7444px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.285903px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px"
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.285903px"
y="1208.4301"
x="276.83508"
id="tspan1455-6"
@@ -4965,18 +4964,18 @@
<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"
+ style="font-style:normal;font-weight:normal;font-size:25.4762px;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.636904px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="115.62414"
y="1157.5958"
id="text1527-0"><tspan
- style="stroke-width:0.63690436px"
+ style="stroke-width:0.636904px"
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"
+ style="font-style:normal;font-weight:normal;font-size:45.7444px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.285903px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="276.83508"
y="1328.4301"
id="text1557-8"
@@ -4985,7 +4984,7 @@
id="tspan1555-9"
x="276.83508"
y="1328.4301"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.285903px">8888</tspan></text>
<g
transform="matrix(0.28590269,0,0,0.28590269,74.702238,1265.9709)"
id="g1605-26"
@@ -5180,13 +5179,13 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:25.4762px;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.636904px;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"
+ style="stroke-width:0.636904px"
id="tspan1611-1">PAGE_LOCAL variables</tspan></text>
<g
id="g2387"
@@ -5367,7 +5366,7 @@
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"
+ 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.04185px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="656.98151"
id="text949-5"
@@ -5376,7 +5375,7 @@
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>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04185px">reset</tspan></text>
</g>
</g>
</g>
@@ -5514,7 +5513,7 @@
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"
+ 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.755943px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="136.32812"
y="218.24219"
id="text5208"
@@ -5523,7 +5522,7 @@
id="tspan5206"
x="136.32812"
y="218.24219"
- style="stroke-width:0.75594342px">8888</tspan></text>
+ style="stroke-width:0.755943px">8888</tspan></text>
<path
transform="scale(1,-1)"
sodipodi:type="star"
@@ -5709,7 +5708,7 @@
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"
+ 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.755943px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="136.32812"
y="218.24219"
id="text5208-6"
@@ -5718,7 +5717,7 @@
id="tspan5206-7"
x="136.32812"
y="218.24219"
- style="stroke-width:0.75594342px">8888</tspan></text>
+ style="stroke-width:0.755943px">8888</tspan></text>
<path
transform="scale(1,-1)"
sodipodi:type="star"
@@ -5771,7 +5770,7 @@
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"
+ 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.755943px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="136.32812"
y="218.24219"
id="text5208-2"
@@ -5780,7 +5779,7 @@
id="tspan5206-9"
x="136.32812"
y="218.24219"
- style="stroke-width:0.75594342px">8888</tspan></text>
+ style="stroke-width:0.755943px">8888</tspan></text>
<path
transform="scale(1,-1)"
sodipodi:type="star"
@@ -5828,7 +5827,7 @@
</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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.457px;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
@@ -5841,7 +5840,7 @@
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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.457px;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"
@@ -5850,7 +5849,7 @@
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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.457px;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
@@ -5919,9 +5918,9 @@
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"
+ 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.04185px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04185px"
y="656.98151"
x="1090.7626"
id="tspan947"
@@ -5936,7 +5935,7 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:148.39px;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:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="329.13501"
y="214.01605"
id="text1843"
@@ -5945,7 +5944,7 @@
id="tspan1841"
x="329.13501"
y="214.01605"
- style="text-align:center;text-anchor:middle;stroke-width:1.99999988px">8888</tspan></text>
+ style="text-align:center;text-anchor:middle;stroke-width:2px">8888</tspan></text>
<g
style="stroke-width:1.09375393"
id="g1853"
@@ -5961,9 +5960,9 @@
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"
+ 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.546877px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="stroke-width:0.54687697px"
+ style="stroke-width:0.546877px"
y="112.62867"
x="738.57678"
id="tspan1849"
@@ -5982,7 +5981,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: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"
+ 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.546877px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="656.177"
y="115.81841"
id="text1859"><tspan
@@ -5990,7 +5989,7 @@
id="tspan1857"
x="656.177"
y="115.81841"
- style="stroke-width:0.54687697px">disabled</tspan></text>
+ style="stroke-width:0.546877px">disabled</tspan></text>
</g>
<g
style="stroke-width:1.09375393"
@@ -6007,9 +6006,9 @@
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"
+ 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.546877px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="stroke-width:0.54687697px"
+ style="stroke-width:0.546877px"
y="129.43976"
x="559.26227"
id="tspan1865"
@@ -6030,9 +6029,9 @@
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"
+ 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.546877px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="stroke-width:0.54687697px"
+ style="stroke-width:0.546877px"
y="111.05016"
x="925.82605"
id="tspan1873"
@@ -6084,7 +6083,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="656.98151"
id="text2194"
@@ -6093,12 +6092,12 @@
id="tspan2192"
x="1090.7626"
y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Alarms</tspan></text>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px">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"
+ style="font-style:normal;font-weight:normal;font-size:45.7444px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.285903px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="628.18188"
y="242.50345"
id="text889"
@@ -6107,7 +6106,7 @@
id="tspan887"
x="628.18188"
y="242.50345"
- style="fill:#ffffff;fill-opacity:1;stroke-width:0.28590268px">8888</tspan></text>
+ style="fill:#ffffff;fill-opacity:1;stroke-width:0.285903px">8888</tspan></text>
<g
style="stroke-width:0.75594342"
id="g900"
@@ -6118,9 +6117,9 @@
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"
+ 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.755943px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="stroke-width:0.75594342px"
+ style="stroke-width:0.755943px"
y="218.24219"
x="136.32812"
id="tspan890"
@@ -6139,7 +6138,7 @@
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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.457px;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"
@@ -6558,7 +6557,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="1436.9814"
id="text4278"
@@ -6567,7 +6566,7 @@
id="tspan4276"
x="1090.7626"
y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px">Home</tspan></text>
</g>
</g>
<g
@@ -6587,9 +6586,9 @@
id="text949-6-6"
y="-260.38251"
x="1737.7013"
- 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"
+ 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.04185px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04185px"
y="-260.38251"
x="1737.7013"
id="tspan947-2-1"
@@ -6598,7 +6597,7 @@
<text
inkscape:label="HMI:Display@user_role"
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.03883362px;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:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.0388px;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:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1258.67"
y="-99.803093"
id="text296"><tspan
@@ -6613,22 +6612,13 @@
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>
+ id="text3613" />
<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>
+ id="text10521-7" />
<use
inkscape:label="HMI:Page:AlarmPage2"
height="100%"
@@ -6766,9 +6756,9 @@
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"
+ 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.755943px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="stroke-width:0.75594342px"
+ style="stroke-width:0.755943px"
y="218.24219"
x="136.32812"
id="tspan976"
@@ -6828,9 +6818,9 @@
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"
+ 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.755943px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="stroke-width:0.75594342px"
+ style="stroke-width:0.755943px"
y="218.24219"
x="136.32812"
id="tspan1002"
@@ -6890,9 +6880,9 @@
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"
+ 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.755943px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="stroke-width:0.75594342px"
+ style="stroke-width:0.755943px"
y="218.24219"
x="136.32812"
id="tspan1014"
@@ -6946,7 +6936,7 @@
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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.457px;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"
@@ -6955,7 +6945,7 @@
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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.457px;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
@@ -6968,7 +6958,7 @@
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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.457px;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"
@@ -7032,7 +7022,7 @@
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"
+ 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.04185px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="656.98151"
id="text1053"
@@ -7041,7 +7031,7 @@
id="tspan1051"
x="1090.7626"
y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04184675px">trigger</tspan></text>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04185px">trigger</tspan></text>
</g>
</g>
</g>
@@ -7055,9 +7045,9 @@
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"
+ style="font-style:normal;font-weight:normal;font-size:148.39px;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:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="text-align:center;text-anchor:middle;stroke-width:1.99999988px"
+ style="text-align:center;text-anchor:middle;stroke-width:2px"
y="214.01605"
x="329.13501"
id="tspan1062"
@@ -7075,7 +7065,7 @@
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"
+ 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.546877px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="738.57678"
y="112.62867"
id="text1070"><tspan
@@ -7083,7 +7073,7 @@
id="tspan1068"
x="738.57678"
y="112.62867"
- style="stroke-width:0.54687697px">ack</tspan></text>
+ style="stroke-width:0.546877px">ack</tspan></text>
</g>
<g
transform="matrix(1.8285648,0,0,1.8285648,-1012.4359,109.57379)"
@@ -7100,9 +7090,9 @@
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"
+ 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.546877px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
- style="stroke-width:0.54687697px"
+ style="stroke-width:0.546877px"
y="115.81841"
x="656.177"
id="tspan1076"
@@ -7121,7 +7111,7 @@
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"
+ 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.546877px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="559.26227"
y="129.43976"
id="text1086"><tspan
@@ -7129,7 +7119,7 @@
id="tspan1084"
x="559.26227"
y="129.43976"
- style="stroke-width:0.54687697px">active</tspan></text>
+ style="stroke-width:0.546877px">active</tspan></text>
</g>
<g
transform="matrix(1.8285648,0,0,1.8285648,-1114.212,118.29284)"
@@ -7144,7 +7134,7 @@
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"
+ 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.546877px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="925.82605"
y="111.05016"
id="text1094"><tspan
@@ -7152,7 +7142,7 @@
id="tspan1092"
x="925.82605"
y="111.05016"
- style="stroke-width:0.54687697px">alarm</tspan></text>
+ style="stroke-width:0.546877px">alarm</tspan></text>
</g>
</g>
<text
@@ -7184,7 +7174,7 @@
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"
+ 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.755943px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="136.32812"
y="218.24219"
id="text1111"
@@ -7193,7 +7183,7 @@
id="tspan1109"
x="136.32812"
y="218.24219"
- style="stroke-width:0.75594342px">8888</tspan></text>
+ style="stroke-width:0.755943px">8888</tspan></text>
<rect
inkscape:label="edit"
onclick=""
@@ -7206,7 +7196,7 @@
</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"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.457px;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
@@ -7241,9 +7231,9 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="656.98151"
x="1090.7626"
id="tspan1125"
@@ -7276,9 +7266,9 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="656.98151"
x="1090.7626"
id="tspan1137"
@@ -7367,7 +7357,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="656.98151"
id="text950-8"
@@ -7376,7 +7366,7 @@
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>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px">up</tspan></text>
</g>
</g>
<rect
@@ -7459,7 +7449,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="1436.9814"
id="text4278-3"
@@ -7468,7 +7458,7 @@
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>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px">Home</tspan></text>
</g>
</g>
<g
@@ -7494,7 +7484,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="656.98151"
id="text2194-2"
@@ -7503,7 +7493,7 @@
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>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px">DropDown</tspan></text>
</g>
</g>
<g
@@ -7517,48 +7507,48 @@
y="-171.54395"
x="1298.9102"
xml:space="preserve"
- style="stroke-width:0.28249258"><tspan
+ style="stroke-width:0.282493"><tspan
y="-171.54395"
x="1298.9102"
id="tspan1380-5-3"
sodipodi:role="line"
- style="stroke-width:0.28249258">Three</tspan></text>
+ style="stroke-width:0.282493">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
+ style="stroke-width:0.282493"><tspan
sodipodi:role="line"
id="tspan873-0"
x="1298.9102"
y="-191.54395"
- style="stroke-width:0.28249258">Two</tspan></text>
+ style="stroke-width:0.282493">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
+ style="stroke-width:0.282493"><tspan
y="-211.54395"
x="1298.9102"
id="tspan877-2"
sodipodi:role="line"
- style="stroke-width:0.28249258">One</tspan></text>
+ style="stroke-width:0.282493">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
+ style="stroke-width:0.282493"><tspan
sodipodi:role="line"
id="tspan881-1"
x="1298.9102"
y="-231.54395"
- style="stroke-width:0.28249258">Zero</tspan></text>
+ style="stroke-width:0.282493">Zero</tspan></text>
</g>
<g
transform="matrix(0.28590269,0,0,0.28590269,1653.6069,1022.1289)"
@@ -7641,7 +7631,7 @@
</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"
+ 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:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1165.3422"
y="-584.62439"
id="text1129"
@@ -7650,23 +7640,23 @@
sodipodi:role="line"
x="1165.3422"
y="-584.62439"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.99999988px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:2px"
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"
+ style="font-style:normal;font-weight:normal;font-size:22.8722px;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.571805px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.571805px"
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"
+ style="font-style:normal;font-weight:normal;font-size:22.8722px;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.571805px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="848.12311"
y="415.53851"
id="text703"
@@ -7674,11 +7664,11 @@
sodipodi:role="line"
x="848.12311"
y="415.53851"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.57180536px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.571805px"
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="2057.6001"
y="606.89435"
id="text1332"
@@ -7686,7 +7676,7 @@
sodipodi:role="line"
x="2057.6001"
y="606.89435"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1330">000</tspan></text>
<use
transform="translate(-2307.336,346.33773)"
@@ -7741,7 +7731,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="656.98151"
id="text950"
@@ -7750,7 +7740,7 @@
id="tspan948"
x="1090.7626"
y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">up</tspan></text>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px">up</tspan></text>
</g>
</g>
<rect
@@ -7783,9 +7773,9 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="1436.9814"
x="1090.7626"
id="tspan1119"
@@ -7833,7 +7823,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="656.98151"
id="text950-7"
@@ -7842,7 +7832,7 @@
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>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px">up</tspan></text>
</g>
</g>
<g
@@ -7863,7 +7853,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="1436.9814"
id="text4278-6"
@@ -7871,7 +7861,7 @@
sodipodi:role="line"
x="1090.7626"
y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1227">Freq1</tspan></text>
</g>
</g>
@@ -7896,10 +7886,10 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="1436.9814"
x="1090.7626"
sodipodi:role="line">Freq16</tspan></text>
@@ -7926,10 +7916,10 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="1436.9814"
x="1090.7626"
sodipodi:role="line">Freq</tspan></text>
@@ -7962,7 +7952,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="1436.9814"
id="text1334"
@@ -7971,7 +7961,7 @@
id="tspan1332"
x="1090.7626"
y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px">Home</tspan></text>
</g>
</g>
<text
@@ -8018,9 +8008,9 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="656.98151"
x="1090.7626"
id="tspan1363"
@@ -8048,10 +8038,10 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="1436.9814"
x="1090.7626"
sodipodi:role="line">Freq2</tspan></text>
@@ -8075,7 +8065,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="1436.9814"
id="text1389"
@@ -8083,7 +8073,7 @@
sodipodi:role="line"
x="1090.7626"
y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1387">Freq0</tspan></text>
</g>
</g>
@@ -8117,9 +8107,9 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="1436.9814"
x="1090.7626"
id="tspan1401"
@@ -8167,7 +8157,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="656.98151"
id="text1433"
@@ -8176,7 +8166,7 @@
id="tspan1431"
x="1090.7626"
y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">up</tspan></text>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px">up</tspan></text>
</g>
</g>
<g
@@ -8197,7 +8187,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="1436.9814"
id="text1445"
@@ -8205,7 +8195,7 @@
sodipodi:role="line"
x="1090.7626"
y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1443">Freq4</tspan></text>
</g>
</g>
@@ -8230,10 +8220,10 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="1436.9814"
x="1090.7626"
sodipodi:role="line">Freq1</tspan></text>
@@ -8266,7 +8256,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="1436.9814"
id="text1473"
@@ -8275,7 +8265,7 @@
id="tspan1471"
x="1090.7626"
y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px">Home</tspan></text>
</g>
</g>
<text
@@ -8322,9 +8312,9 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="656.98151"
x="1090.7626"
id="tspan1504"
@@ -8352,10 +8342,10 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="1436.9814"
x="1090.7626"
sodipodi:role="line">Freq16</tspan></text>
@@ -8379,7 +8369,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="1436.9814"
id="text1530"
@@ -8387,7 +8377,7 @@
sodipodi:role="line"
x="1090.7626"
y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1528">Freq2</tspan></text>
</g>
</g>
@@ -8421,9 +8411,9 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="1436.9814"
x="1090.7626"
id="tspan1542"
@@ -8475,7 +8465,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="656.98151"
id="text1574"
@@ -8484,7 +8474,7 @@
id="tspan1572"
x="1090.7626"
y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">up</tspan></text>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px">up</tspan></text>
</g>
</g>
<g
@@ -8505,7 +8495,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="1436.9814"
id="text1586"
@@ -8513,7 +8503,7 @@
sodipodi:role="line"
x="1090.7626"
y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1584">Freq0</tspan></text>
</g>
</g>
@@ -8538,10 +8528,10 @@
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="1436.9814"
x="1090.7626"
sodipodi:role="line">Freq4</tspan></text>
@@ -8578,7 +8568,7 @@
id="g952-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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="656.98151"
id="text950-3"
@@ -8587,7 +8577,7 @@
id="tspan948-5"
x="1090.7626"
y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">up</tspan></text>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px">up</tspan></text>
</g>
</g>
<g
@@ -8612,9 +8602,9 @@
id="text2339"
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="1436.9814"
x="1090.7626"
id="tspan2337"
@@ -8674,9 +8664,9 @@
id="text949-6"
y="-260.38251"
x="1737.7013"
- 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"
+ 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.04185px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1.04185px"
y="-260.38251"
x="1737.7013"
id="tspan947-2"
@@ -8701,7 +8691,7 @@
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="1436.9814"
id="text4278-36"
@@ -8710,7 +8700,7 @@
id="tspan4276-0"
x="1090.7626"
y="1436.9814"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px">Home</tspan></text>
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px">Home</tspan></text>
</g>
</g>
<g
@@ -8739,9 +8729,9 @@
id="setting_jmp-0"
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="656.98151"
x="1090.7626"
id="tspan1024-2"
@@ -8771,7 +8761,7 @@
id="g1456-9">
<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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="656.98151"
id="text1454-2"
@@ -8779,7 +8769,7 @@
sodipodi:role="line"
x="1090.7626"
y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1460-2">Pump 0</tspan></text>
</g>
</g>
@@ -8809,14 +8799,13 @@
id="text1471-6"
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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
id="tspan1469-1"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
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"
@@ -8846,7 +8835,7 @@
id="g1489-9">
<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"
+ 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:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1090.7626"
y="656.98151"
id="text1487-4"
@@ -8854,13 +8843,12 @@
sodipodi:role="line"
x="1090.7626"
y="656.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
id="tspan1493-7">Pump 2</tspan><tspan
id="tspan1485-8"
sodipodi:role="line"
x="1090.7626"
- y="706.98151"
- style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:0.99999994px" /></text>
+ y="706.98151" /></text>
</g>
</g>
<g
@@ -8889,14 +8877,13 @@
id="text1505-6"
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"
+ 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:1px;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"
+ style="text-align:center;text-anchor:middle;fill:#ff6600;stroke-width:1px"
y="656.98151"
x="1090.7626"
sodipodi:role="line"
id="tspan1511-1">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"
@@ -8906,7 +8893,7 @@
<text
inkscape:label="HMI:Display@user_role"
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.03883362px;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:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;fill:#ffff00;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.0388px;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:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;fill:#ffff00;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="2680.3477"
y="-398.63266"
id="text296-3"><tspan
@@ -8914,11 +8901,11 @@
id="tspan294-6"
x="2680.3477"
y="-398.63266"
- style="text-align:end;text-anchor:end;stroke-width:1px;fill:#ffff00;">user</tspan></text>
+ style="text-align:end;text-anchor:end;fill:#ffff00;stroke-width:1px">user</tspan></text>
<text
inkscape:label="HMI:Display@user_role"
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.03883362px;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:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;fill:#ffff00;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:50.0388px;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:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;fill:#ffff00;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1258.5922"
y="703.35767"
id="text296-3-7"><tspan
@@ -8943,14 +8930,162 @@
rx="30.536266" />
<text
xml:space="preserve"
- style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56.68354416px;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:1.42987251px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56.6835px;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:1.42987px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="3570.8057"
y="153.18002"
id="text240"><tspan
- style="stroke-width:1.42987251px"
+ style="stroke-width:1.42987px"
sodipodi:role="line"
id="tspan238"
x="3570.8057"
y="153.18002">login</tspan></text>
</g>
+ <g
+ transform="translate(-1072.3531,-905.86571)"
+ inkscape:label="HMI:VarInit:333@hmi_local_max_setting"
+ id="g3898">
+ <text
+ id="text3896"
+ y="-168.39357"
+ x="3726.6924"
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.6667px;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="-168.39357"
+ x="3726.6924"
+ id="tspan3892"
+ sodipodi:role="line">hmi_local_max_setting</tspan><tspan
+ y="-145.0602"
+ x="3726.6924"
+ sodipodi:role="line"
+ id="tspan11930">declaration of user_level HMI local variable</tspan><tspan
+ id="tspan3894"
+ y="-121.72682"
+ x="3726.6924"
+ sodipodi:role="line">(not a PLC variable)</tspan></text>
+ </g>
+ <g
+ id="g14107"
+ inkscape:label="HMI:Input@hmi_local_max_setting"
+ transform="matrix(0.35865594,0,0,0.35865594,22.072155,103.07442)">
+ <text
+ inkscape:label="value"
+ id="text14093"
+ 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="tspan14091"
+ 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="path14095"
+ 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="path14097"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-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="rect14099"
+ 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="path14101"
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-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="path14103"
+ 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="path14105"
+ 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
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:14.3462px;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.358656px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="114.11434"
+ y="130.74216"
+ id="text14111"
+ inkscape:label="setpoint_label"><tspan
+ sodipodi:role="line"
+ id="tspan14109"
+ x="114.11434"
+ y="130.74216"
+ style="stroke-width:0.358656px">MaxSetPoint</tspan></text>
</svg>