Showing 6 changed files with 739 additions and 643 deletions
+1
Nasal/EIS/none.nas
... ...
@@ -0,0 +1 @@
1
+displayClass.updateEIS = func;
+50
Nasal/EIS/single-engine.nas
... ...
@@ -0,0 +1,50 @@
1
+displayClass.showEIS = func (groups) {
2
+    canvas.parsesvg(me.screen, "Aircraft/Instruments-3d/zkv1000/Systems/EIS/single-engine.svg");
3
+    append(groups.show, 'EIS', 'POWER-pointer');
4
+    append(groups.text,
5
+            'RPM-text', 'EGT-text', 'CHT-text', 'FUEL-USED-text',
6
+            'FUEL-FLOW-text', 'MAN-Hg-text', 'POWER-PERCENT-text',
7
+            'RPM-text', 'BUS-V-text', 'BATT-text', 'PSI-text',
8
+            'OIL-TEMP-text'
9
+        );
10
+};
11
+
12
+displayClass.updateEIS = func {
13
+# displays Engine Informations System
14
+    var power = getprop('/controls/engines/engine/throttle') * getprop('/engines/engine/running');
15
+    me.screenElements['POWER-pointer']
16
+        .setRotation(D2R * 140 * power);
17
+    me.screenElements['POWER-PERCENT-text']
18
+        .setText(sprintf('% 3u', power * 100));
19
+    me.screenElements['RPM-text']
20
+        .setText(sprintf(math.round(getprop('/engines/engine/rpm'), 50)));
21
+    me.screenElements['MAN-Hg-text']
22
+        .setText(sprintf('%.1d', getprop('/engines/engine/mp-inhg')));
23
+    me.screenElements['FUEL-FLOW-text']
24
+        .setText(sprintf('%.1f', getprop('/engines/engine/fuel-flow-gph')));
25
+    if (math.mod(me._eis_count, 10) == 0) {
26
+        var psi = getprop('/engines/engine/oil-pressure-psi');
27
+        me.screenElements['PSI-text']
28
+            .setText(psi == nil ? '--' : sprintf('%u', psi));
29
+        me.screenElements['OIL-TEMP-text']
30
+            .setText(sprintf('%i', getprop('/engines/engine/oil-temperature-degf')));
31
+        var used_fuel = getprop('/instrumentation/zkv1000/eis/fuel-qty-at-start')
32
+                      - getprop('/consumables/fuel/tank/level-gal_us')
33
+                      - getprop('/consumables/fuel/tank[1]/level-gal_us');
34
+        me.screenElements['FUEL-USED-text']
35
+            .setText(sprintf('%.1d', used_fuel > 0 ? used_fuel : 0));
36
+        me.screenElements['BUS-V-text']
37
+            .setText(sprintf('%.1i', getprop('/systems/electrical/outputs/bus')));
38
+        me.screenElements['BATT-text']
39
+            .setText(sprintf('%+i', getprop('/systems/electrical/amps')));
40
+        var cht = getprop('/engines/engine/cht-degf');
41
+        me.screenElements['CHT-text']
42
+            .setText(cht == nil ? '--' : sprintf('%i', cht));
43
+        me.screenElements['EGT-text']
44
+            .setText(sprintf('%i', getprop('/engines/engine/egt-degf')));
45
+    }
46
+    settimer(func me.updateEIS(), 1);
47
+    me._eis_count += 1;
48
+};
49
+
50
+displayClass._eis_count = 0;
+9 -47
Nasal/display.nas
... ...
@@ -26,6 +26,13 @@ var displayClass = {
26 26
         if (role == 'MFD') {
27 27
             m.MFDMapTiles = MapTiles.new(m.display);
28 28
             m.MFDMapNavDisplay = MapNavDisplay.new(m.display);
29
+            var eis_dir = getprop('/sim/fg-aircraft') ~ '/Instruments-3d/zkv1000/Nasal/EIS/';
30
+            var eis_type = getprop('/instrumentation/zkv1000/eis/type');
31
+            if (eis_type == nil or
32
+                    (io.stat(eis_dir ~ eis_type ~ '.nas') == nil
33
+                     and print(eis_type ~ ' not found')))
34
+                eis_type = 'none';
35
+            io.load_nasal(eis_dir ~ eis_type ~ '.nas', 'zkv1000');
29 36
         }
30 37
 
31 38
         m._ias_vne = getprop('/instrumentation/zkv1000/alerts/Vne');
... ...
@@ -182,13 +189,8 @@ var displayClass = {
182 189
                 }
183 190
             }
184 191
             else {
185
-                append(groups.show, 'EIS', 'POWER-pointer');
186
-                append(groups.text,
187
-                        'RPM-text', 'EGT-text', 'CHT-text', 'FUEL-USED-text',
188
-                        'FUEL-FLOW-text', 'MAN-Hg-text', 'POWER-PERCENT-text',
189
-                        'RPM-text', 'BUS-V-text', 'BATT-text', 'PSI-text',
190
-                        'OIL-TEMP-text'
191
-                    );
192
+                if (contains(me.parents[0], 'showEIS'))
193
+                    me.showEIS(groups);
192 194
             }
193 195
 
194 196
             me.loadGroup(groups);
... ...
@@ -1162,46 +1164,6 @@ var displayClass = {
1162 1164
     },
1163 1165
 #}}}
1164 1166
 
1165
-    updateEIS : func {
1166
-# displays Engine Informations System {{{
1167
-        var power = getprop('/controls/engines/engine/throttle') * getprop('/engines/engine/running');
1168
-        me.screenElements['POWER-pointer']
1169
-            .setRotation(D2R * 140 * power);
1170
-        me.screenElements['POWER-PERCENT-text']
1171
-            .setText(sprintf('%u', power));
1172
-        me.screenElements['RPM-text']
1173
-            .setText(sprintf(math.round(getprop('/engines/engine/rpm'), 50)));
1174
-        me.screenElements['MAN-Hg-text']
1175
-            .setText(sprintf('%.1d', getprop('/engines/engine/mp-inhg')));
1176
-        me.screenElements['FUEL-FLOW-text']
1177
-            .setText(sprintf('%.1f', getprop('/engines/engine/fuel-flow-gph')));
1178
-        if (math.mod(me._eis_count, 10) == 0) {
1179
-            var psi = getprop('/engines/engine/oil-pressure-psi');
1180
-            me.screenElements['PSI-text']
1181
-                .setText(psi == nil ? '--' : sprintf('%u', psi));
1182
-            me.screenElements['OIL-TEMP-text']
1183
-                .setText(sprintf('%i', getprop('/engines/engine/oil-temperature-degf')));
1184
-            var used_fuel = getprop('/instrumentation/zkv1000/eis/fuel-qty-at-start')
1185
-                          - getprop('/consumables/fuel/tank/level-gal_us')
1186
-                          - getprop('/consumables/fuel/tank[1]/level-gal_us');
1187
-            me.screenElements['FUEL-USED-text']
1188
-                .setText(sprintf('%.1d', used_fuel > 0 ? used_fuel : 0));
1189
-            me.screenElements['BUS-V-text']
1190
-                .setText(sprintf('%.1i', getprop('/systems/electrical/outputs/bus')));
1191
-            me.screenElements['BATT-text']
1192
-                .setText(sprintf('%+i', getprop('/systems/electrical/amps')));
1193
-            var cht = getprop('/engines/engine/cht-degf');
1194
-            me.screenElements['CHT-text']
1195
-                .setText(cht == nil ? '--' : sprintf('%i', cht));
1196
-            me.screenElements['EGT-text']
1197
-                .setText(sprintf('%i', getprop('/engines/engine/egt-degf')));
1198
-        }
1199
-        settimer(func me.updateEIS(), 1);
1200
-        me._eis_count += 1;
1201
-    },
1202
-    _eis_count : 0,
1203
-#}}}
1204
-
1205 1167
     updateOMI : func {
1206 1168
 # display marker baecon Outer, Middle, Inner {{{
1207 1169
         var marker = nil;
+11
README.md
... ...
@@ -83,6 +83,7 @@ Please report bug at <seb.marque@free.fr>.
83 83
 * ![][60%]
84 84
   * TMR/REF ![][ongoing]
85 85
 * ![][50%]
86
+  * EIS: separation for aircraft specifics (selected by the zkv1000 config)
86 87
   * EIS: animations for temperature for YaSim and JSBSim
87 88
 * ![][40%]
88 89
   * use of [maketimer()](http://wiki.flightgear.org/Nasal_library#maketimer.28.29) instead of [settimer()](http://wiki.flightgear.org/Nasal_library#settimer.28.29) when possible
... ...
@@ -132,6 +133,16 @@ If not set, defaults to 999 knots
132 133
           <Vne>170</Vne>
133 134
         </alerts>
134 135
 
136
+### EIS
137
+To tells the zkv1000 which kind of engines equip your aircraft, and the associated EIS
138
+
139
+        <eis>
140
+          <type>single-engine</type>
141
+        </eis>
142
+
143
+Defaults to `none`, available entries are the `.nas` files located in `Nasal/EIS/` directory.
144
+If you want to add yours, just copy the `Systems/EIS/single-engine.svg`, modify it to fit your needs, and refer to it in a function named `displayClass.showEIS`, another very important function is `displayClass.updateEIS` (example in [Nasal/EIS/single-engine.nas](Nasal/EIS/single-engine.nas))
145
+
135 146
 ## 3D models
136 147
 In the definition of your flightdeck (here are the values for the installation in the Lancair 235 in which I develop the device)
137 148
 put it everywhere you want to
+668
Systems/EIS/single-engine.svg
... ...
@@ -0,0 +1,668 @@
1
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+<svg
5
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+   xmlns:cc="http://creativecommons.org/ns#"
7
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+   xmlns:svg="http://www.w3.org/2000/svg"
9
+   xmlns="http://www.w3.org/2000/svg"
10
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+   sodipodi:docname="single-engine.svg"
13
+   inkscape:version="0.92.1 r15371"
14
+   version="1.1"
15
+   id="svg3140"
16
+   height="768"
17
+   width="1024"
18
+   enable-background="new">
19
+  <sodipodi:namedview
20
+     id="base"
21
+     pagecolor="#323232"
22
+     bordercolor="#666666"
23
+     borderopacity="1"
24
+     inkscape:pageopacity="1"
25
+     inkscape:pageshadow="2"
26
+     inkscape:zoom="1.3147768"
27
+     inkscape:cx="306.08714"
28
+     inkscape:cy="423.55484"
29
+     inkscape:document-units="px"
30
+     inkscape:current-layer="svg3140"
31
+     showgrid="false"
32
+     showguides="false"
33
+     inkscape:guide-bbox="true"
34
+     inkscape:window-width="1600"
35
+     inkscape:window-height="836"
36
+     inkscape:window-x="0"
37
+     inkscape:window-y="27"
38
+     inkscape:window-maximized="1"
39
+     inkscape:snap-grids="true"
40
+     inkscape:snap-to-guides="true"
41
+     inkscape:object-paths="true"
42
+     inkscape:measure-start="704,654"
43
+     inkscape:measure-end="704,313"
44
+     objecttolerance="10"
45
+     guidetolerance="10" />
46
+  <defs
47
+     id="defs3142" />
48
+  <metadata
49
+     id="metadata3145">
50
+    <rdf:RDF>
51
+      <cc:Work
52
+         rdf:about="">
53
+        <dc:format>image/svg+xml</dc:format>
54
+        <dc:type
55
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
56
+        <dc:title></dc:title>
57
+        <cc:license
58
+           rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
59
+      </cc:Work>
60
+      <cc:License
61
+         rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
62
+        <cc:permits
63
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
64
+        <cc:permits
65
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
66
+        <cc:permits
67
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
68
+      </cc:License>
69
+    </rdf:RDF>
70
+  </metadata>
71
+  <g
72
+     id="EIS"
73
+     inkscape:label="EIS"
74
+     transform="translate(-4.3733663,0.47536589)"
75
+     style="display:inline">
76
+    <rect
77
+       inkscape:label="EIS-bg"
78
+       ry="0"
79
+       y="55.494141"
80
+       x="4.1832199"
81
+       height="687.15924"
82
+       width="144.49799"
83
+       id="EIS-bg"
84
+       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke:#fffffb;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
85
+    <path
86
+       inkscape:connector-curvature="0"
87
+       id="path6240"
88
+       d="M 57.815125,308.41625 V 283.5"
89
+       style="fill:none;fill-rule:evenodd;stroke:#ffff00;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
90
+    <text
91
+       transform="scale(0.92969988,1.0756159)"
92
+       id="text6022"
93
+       y="182.50244"
94
+       x="9.43291"
95
+       style="font-style:normal;font-weight:normal;font-size:19.83359718px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.9296999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
96
+       xml:space="preserve"><tspan
97
+         style="fill:#ffffff;stroke-width:0.9296999px"
98
+         y="182.50244"
99
+         x="9.43291"
100
+         id="tspan6020"
101
+         sodipodi:role="line">Man &quot;Hg</tspan></text>
102
+    <path
103
+       inkscape:connector-curvature="0"
104
+       id="path6315"
105
+       d="M 115.4958,302.78993 V 217.27732"
106
+       style="fill:none;fill-rule:evenodd;stroke:#00ff00;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
107
+    <path
108
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.13543296;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
109
+       d="m 13.123366,130.6229 h 15.91865"
110
+       id="path5973"
111
+       inkscape:connector-curvature="0" />
112
+    <path
113
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00ff26;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.26425219;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
114
+       d="M 73.685547,69.429688 C 67.561189,69.681521 61.407716,70.903805 55.453125,73.162109 31.634762,82.195326 16.532567,105.70344 18.330078,130.99609 l 7.246094,-0.51562 C 24.004814,108.37 37.160127,87.869801 58.029297,79.955078 78.898467,72.040355 102.48822,78.622845 116.1543,96.158203 l 5.73047,-4.466797 C 110.17155,76.661819 92.058622,68.674186 73.685547,69.429688 Z"
115
+       id="EIS-POWER-INT"
116
+       inkscape:connector-curvature="0" />
117
+    <path
118
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.13543296;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
119
+       d="M 113.3993,98.558221 125.69121,88.443269"
120
+       id="path5973-7"
121
+       inkscape:connector-curvature="0" />
122
+    <path
123
+       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffffb;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.64653611;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
124
+       d="m 73.533203,65.023438 c -6.66473,0.269648 -13.360911,1.576356 -19.84375,3.986328 -25.931357,9.639886 -42.364013,34.706784 -40.40625,61.708984 l 2.638672,-0.19141 C 14.04984,104.70754 29.740996,80.735689 54.611328,71.490234 79.481661,62.24478 107.63052,69.945502 123.91406,90.425781 l 2.07227,-1.648437 C 113.23126,72.734928 93.527394,64.214491 73.533203,65.023438 Z"
125
+       id="EIS-POWER-EXT"
126
+       inkscape:connector-curvature="0" />
127
+    <text
128
+       id="text5998"
129
+       y="134.31935"
130
+       x="34.957985"
131
+       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
132
+       xml:space="preserve"><tspan
133
+         id="tspan6000"
134
+         style="fill:#ffffff"
135
+         y="134.31935"
136
+         x="34.957985"
137
+         sodipodi:role="line">%Pwr</tspan></text>
138
+    <text
139
+       id="text6010"
140
+       y="167.79832"
141
+       x="6.8722954"
142
+       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
143
+       xml:space="preserve"><tspan
144
+         style="fill:#ffffff"
145
+         y="167.79832"
146
+         x="6.8722954"
147
+         id="tspan6008"
148
+         sodipodi:role="line">RPM</tspan></text>
149
+    <text
150
+       id="text6018"
151
+       y="149.7899"
152
+       x="162.92123"
153
+       style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
154
+       xml:space="preserve"><tspan
155
+         y="185.18053"
156
+         x="162.92123"
157
+         id="tspan6016"
158
+         sodipodi:role="line" /></text>
159
+    <path
160
+       inkscape:connector-curvature="0"
161
+       id="path6028"
162
+       d="M 7.7521819,207.24899 H 144.94342"
163
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
164
+    <path
165
+       inkscape:connector-curvature="0"
166
+       id="path6028-5"
167
+       d="M 7.222726,351.38464 H 144.41397"
168
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
169
+    <path
170
+       inkscape:connector-curvature="0"
171
+       id="path6028-5-3"
172
+       d="M 7.874968,381.26051 H 145.06621"
173
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
174
+    <path
175
+       inkscape:connector-curvature="0"
176
+       id="path6240-0"
177
+       d="M 23.394958,308.41628 V 283.50003"
178
+       style="fill:none;fill-rule:evenodd;stroke:#ffff00;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
179
+    <path
180
+       inkscape:connector-curvature="0"
181
+       id="path6290"
182
+       d="M 57.815125,283.5 V 223.4622"
183
+       style="fill:none;fill-rule:evenodd;stroke:#00ff00;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
184
+    <path
185
+       inkscape:connector-curvature="0"
186
+       id="path6060"
187
+       d="m 27.761368,221.51937 v 86.89688"
188
+       style="fill:none;fill-rule:evenodd;stroke:#fffff2;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
189
+    <path
190
+       inkscape:connector-curvature="0"
191
+       id="path6290-8"
192
+       d="m 23.529412,283.19538 v -60.0378"
193
+       style="fill:none;fill-rule:evenodd;stroke:#00ff00;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
194
+    <path
195
+       inkscape:connector-curvature="0"
196
+       id="path6060-5"
197
+       d="m 53.761368,221.51937 v 86.89688"
198
+       style="fill:none;fill-rule:evenodd;stroke:#fffff2;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
199
+    <path
200
+       inkscape:connector-curvature="0"
201
+       id="path6077"
202
+       d="M 11.831933,308.41625 H 27.761368"
203
+       style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
204
+    <path
205
+       inkscape:connector-curvature="0"
206
+       id="path6077-6"
207
+       d="M 53.761368,308.41625 H 69.690803"
208
+       style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
209
+    <path
210
+       inkscape:connector-curvature="0"
211
+       id="path6094"
212
+       d="M 12.504201,292.70589 H 27.761368"
213
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
214
+    <path
215
+       inkscape:connector-curvature="0"
216
+       id="path6094-2"
217
+       d="M 12.504201,277.2269 H 27.761368"
218
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
219
+    <path
220
+       inkscape:connector-curvature="0"
221
+       id="path6094-2-9"
222
+       d="M 12.504201,262.16808 H 27.761368"
223
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
224
+    <path
225
+       inkscape:connector-curvature="0"
226
+       id="path6094-2-9-1"
227
+       d="M 12.504201,247.24371 H 27.761368"
228
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
229
+    <path
230
+       inkscape:connector-curvature="0"
231
+       id="path6094-2-9-1-2"
232
+       d="M 12.504201,232.05043 H 27.761368"
233
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
234
+    <path
235
+       inkscape:connector-curvature="0"
236
+       id="path6094-2-9-1-2-7"
237
+       d="M 54.319326,231.91598 H 69.576493"
238
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
239
+    <path
240
+       inkscape:connector-curvature="0"
241
+       id="path6094-2-9-1-2-7-0"
242
+       d="M 53.761368,247.51262 H 69.018535"
243
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
244
+    <path
245
+       inkscape:connector-curvature="0"
246
+       id="path6094-2-9-1-2-7-0-9"
247
+       d="M 53.761368,262.16808 H 69.018535"
248
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
249
+    <path
250
+       inkscape:connector-curvature="0"
251
+       id="path6094-2-9-1-2-7-0-9-3"
252
+       d="M 53.761368,277.36136 H 69.018535"
253
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
254
+    <path
255
+       inkscape:connector-curvature="0"
256
+       id="path6094-2-9-1-2-7-0-9-3-6"
257
+       d="M 53.761368,292.55464 H 69.018535"
258
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
259
+    <path
260
+       inkscape:connector-curvature="0"
261
+       id="path6313"
262
+       d="m 104.73949,217.27732 h 14.78992 v 85.51261 h -14.92437"
263
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
264
+    <text
265
+       id="text6319"
266
+       y="327.62103"
267
+       x="15.592001"
268
+       style="font-style:normal;font-weight:normal;font-size:21.33333397px;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"
269
+       xml:space="preserve"><tspan
270
+         y="327.62103"
271
+         x="15.592001"
272
+         id="tspan6317"
273
+         sodipodi:role="line">L</tspan></text>
274
+    <text
275
+       id="text6323"
276
+       y="328.00134"
277
+       x="54.76215"
278
+       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
279
+       xml:space="preserve"><tspan
280
+         style="fill:#ffffff"
281
+         y="328.00134"
282
+         x="54.76215"
283
+         id="tspan6321"
284
+         sodipodi:role="line">R</tspan></text>
285
+    <text
286
+       transform="scale(0.90107439,1.1097863)"
287
+       id="text6327"
288
+       y="312.85434"
289
+       x="30.637159"
290
+       style="font-style:normal;font-weight:normal;font-size:19.22292137px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.90107441px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
291
+       xml:space="preserve"><tspan
292
+         style="stroke-width:0.90107441px"
293
+         y="312.85434"
294
+         x="30.637159"
295
+         id="tspan6325"
296
+         sodipodi:role="line">Gal</tspan></text>
297
+    <text
298
+       transform="scale(0.7983482,1.2525863)"
299
+       id="text6331"
300
+       y="276.27679"
301
+       x="93.839203"
302
+       style="font-style:normal;font-weight:normal;font-size:17.03142929px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.79834819px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
303
+       xml:space="preserve"><tspan
304
+         style="fill:#ffffff;stroke-width:0.79834819px"
305
+         y="276.27679"
306
+         x="93.839203"
307
+         id="tspan6329"
308
+         sodipodi:role="line">FFlow GPH</tspan></text>
309
+    <text
310
+       transform="scale(0.81190307,1.2316741)"
311
+       id="text6339"
312
+       y="303.97409"
313
+       x="13.149561"
314
+       style="font-style:normal;font-weight:normal;font-size:17.3205986px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.81190306px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
315
+       xml:space="preserve"><tspan
316
+         style="fill:#ffffff;stroke-width:0.81190306px"
317
+         y="303.97409"
318
+         x="13.149561"
319
+         id="tspan6337"
320
+         sodipodi:role="line">Gal Used</tspan></text>
321
+    <text
322
+       transform="scale(0.83303795,1.2004255)"
323
+       id="text6347"
324
+       y="339.7652"
325
+       x="10.483387"
326
+       style="font-style:normal;font-weight:normal;font-size:17.77147675px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.83303797px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
327
+       xml:space="preserve"><tspan
328
+         style="fill:#ffffff;stroke-width:0.83303797px"
329
+         y="339.7652"
330
+         x="10.483387"
331
+         id="tspan6345"
332
+         sodipodi:role="line">Oil °F</tspan></text>
333
+    <text
334
+       transform="scale(0.87485548,1.1430459)"
335
+       id="text6355"
336
+       y="398.40866"
337
+       x="8.5804186"
338
+       style="font-style:normal;font-weight:normal;font-size:18.66358376px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.87485546px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
339
+       xml:space="preserve"><tspan
340
+         style="fill:#ffffff;stroke-width:0.87485546px"
341
+         y="398.40866"
342
+         x="8.5804186"
343
+         id="tspan6353"
344
+         sodipodi:role="line">Oil PSI</tspan></text>
345
+    <text
346
+       transform="scale(0.88772678,1.1264727)"
347
+       id="text6363"
348
+       y="445.45694"
349
+       x="8.7181797"
350
+       style="font-style:normal;font-weight:normal;font-size:18.93817139px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.88772678px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
351
+       xml:space="preserve"><tspan
352
+         style="fill:#ffffff;stroke-width:0.88772678px"
353
+         y="445.45694"
354
+         x="8.7181797"
355
+         id="tspan6361"
356
+         sodipodi:role="line">Batt1 A</tspan></text>
357
+    <text
358
+       transform="scale(0.86681236,1.1536522)"
359
+       id="text6371"
360
+       y="459.35574"
361
+       x="9.0171661"
362
+       style="font-style:normal;font-weight:normal;font-size:18.49199677px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.86681235px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
363
+       xml:space="preserve"><tspan
364
+         style="fill:#ffffff;stroke-width:0.86681235px"
365
+         y="459.35574"
366
+         x="9.0171661"
367
+         id="tspan6369"
368
+         sodipodi:role="line">Ess Bus V</tspan></text>
369
+    <path
370
+       inkscape:connector-curvature="0"
371
+       id="path6490-2"
372
+       d="m 136.2689,546.82352 v 7.12606"
373
+       style="fill:none;fill-rule:evenodd;stroke:#fff700;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
374
+    <path
375
+       inkscape:connector-curvature="0"
376
+       id="path6490"
377
+       d="m 136.33613,539.69748 v 7.12606"
378
+       style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
379
+    <path
380
+       inkscape:connector-curvature="0"
381
+       id="path6377"
382
+       d="m 128.40336,600.60505 h 11.96638 v -60.90757 h -7.66386"
383
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
384
+    <path
385
+       inkscape:connector-curvature="0"
386
+       id="path6379"
387
+       d="m 132.70588,594.13269 h 7.66386"
388
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
389
+    <path
390
+       inkscape:connector-curvature="0"
391
+       id="path6379-7"
392
+       d="m 132.70588,580.16807 h 7.66386"
393
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
394
+    <path
395
+       inkscape:connector-curvature="0"
396
+       id="path6379-7-9"
397
+       d="m 132.70588,566.9916 h 7.66386"
398
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
399
+    <path
400
+       inkscape:connector-curvature="0"
401
+       id="path6379-7-9-2"
402
+       d="m 132.70588,553.94958 h 7.66386"
403
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
404
+    <path
405
+       inkscape:connector-curvature="0"
406
+       id="path6441"
407
+       d="m 128.13445,587.15967 h 12.23529"
408
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
409
+    <path
410
+       inkscape:connector-curvature="0"
411
+       id="path6441-7"
412
+       d="m 127.93278,546.82354 h 12.23529"
413
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
414
+    <path
415
+       inkscape:connector-curvature="0"
416
+       id="path6441-5"
417
+       d="m 128.06723,560.13446 h 12.23529"
418
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
419
+    <path
420
+       inkscape:connector-curvature="0"
421
+       id="path6441-9"
422
+       d="m 128.13445,574.11765 h 12.23529"
423
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
424
+    <path
425
+       inkscape:connector-curvature="0"
426
+       id="path6482"
427
+       d="m 7.986147,412.42631 v 15.78215 H 140.7083 v -16.16244"
428
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
429
+    <path
430
+       inkscape:connector-curvature="0"
431
+       id="path6484"
432
+       d="M 27.666295,424.19163 H 136.43001"
433
+       style="fill:none;fill-rule:evenodd;stroke:#00fe00;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
434
+    <path
435
+       inkscape:connector-curvature="0"
436
+       id="path6488"
437
+       d="m 138.3077,420.69767 v 7.03542"
438
+       style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:3.75436258;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
439
+    <text
440
+       transform="scale(0.80339161,1.244723)"
441
+       id="text6509"
442
+       y="512.87439"
443
+       x="12.693493"
444
+       style="font-style:normal;font-weight:normal;font-size:17.13902092px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.80339164px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
445
+       xml:space="preserve"><tspan
446
+         style="fill:#ffffff;stroke-width:0.80339164px"
447
+         y="512.87439"
448
+         x="12.693493"
449
+         id="tspan6507"
450
+         sodipodi:role="line">CHT °F</tspan></text>
451
+    <text
452
+       transform="scale(0.80974932,1.2349501)"
453
+       id="text6517"
454
+       y="600.53174"
455
+       x="12.181236"
456
+       style="font-style:normal;font-weight:normal;font-size:17.27465248px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.80974936px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
457
+       xml:space="preserve"><tspan
458
+         style="fill:#ffffff;stroke-width:0.80974936px"
459
+         y="600.53174"
460
+         x="12.181236"
461
+         id="tspan6515"
462
+         sodipodi:role="line">EGT °F</tspan></text>
463
+    <path
464
+       inkscape:connector-curvature="0"
465
+       id="path6523"
466
+       d="m 128.53781,704.53782 h 11.83193 v -60.2353 H 128.2689"
467
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
468
+    <path
469
+       inkscape:connector-curvature="0"
470
+       id="path6525"
471
+       d="m 127.93614,694.50948 h 12.10084"
472
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
473
+    <path
474
+       inkscape:connector-curvature="0"
475
+       id="path6525-2"
476
+       d="M 128.00276,684.76343 H 140.1036"
477
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
478
+    <path
479
+       inkscape:connector-curvature="0"
480
+       id="path6525-2-8"
481
+       d="m 127.90769,674.68568 h 12.10084"
482
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
483
+    <path
484
+       inkscape:connector-curvature="0"
485
+       id="path6525-2-8-9"
486
+       d="M 128.00276,664.65545 H 140.1036"
487
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
488
+    <path
489
+       inkscape:connector-curvature="0"
490
+       id="path6660"
491
+       d="m 140.32801,459.77276 v 15.2117 H 8.3664397 v -15.592"
492
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
493
+    <path
494
+       inkscape:connector-curvature="0"
495
+       id="path6525-2-8-9-7"
496
+       d="m 127.90769,654.5777 h 12.10084"
497
+       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
498
+    <path
499
+       inkscape:label="FUEL-LEFT-pointer"
500
+       inkscape:connector-curvature="0"
501
+       id="FUEL-LEFT-pointer"
502
+       d="M 9.6974642,216.57556 V 229.2203 L 23.529412,223.15758 Z"
503
+       style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
504
+    <path
505
+       inkscape:label="FUEL-RIGHT-pointer"
506
+       inkscape:connector-curvature="0"
507
+       id="FUEL-RIGHT-pointer"
508
+       d="M 70.491083,230.01514 V 217.3704 l -13.831948,6.06272 z"
509
+       style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
510
+    <path
511
+       inkscape:label="FUEL-FLOW-pointer"
512
+       inkscape:connector-curvature="0"
513
+       id="FUEL-FLOW-pointer"
514
+       d="m 103.49283,296.21263 v 12.64474 l 13.83195,-6.06272 z"
515
+       style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
516
+    <path
517
+       inkscape:label="POWER-pointer"
518
+       inkscape:connector-curvature="0"
519
+       id="POWER-pointer"
520
+       d="M 33.222396,137.12864 V 124.4839 l -13.831948,6.06272 z"
521
+       style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
522
+       inkscape:transform-center-x="48.516168"
523
+       inkscape:transform-center-y="0.93744449" />
524
+    <path
525
+       inkscape:label="OIL-TEMP-pointer"
526
+       inkscape:connector-curvature="0"
527
+       id="OIL-TEMP-pointer"
528
+       d="M 14.58045,412.19432 H 1.93571 l 6.06272,13.83195 z"
529
+       style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
530
+    <path
531
+       inkscape:label="PSI-pointer"
532
+       inkscape:connector-curvature="0"
533
+       id="PSI-pointer"
534
+       d="M 15.150888,459.16045 H 2.5061485 l 6.06272,13.83195 z"
535
+       style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
536
+    <text
537
+       inkscape:label="EGT-text"
538
+       id="EGT-text"
539
+       y="740.30255"
540
+       x="84.705879"
541
+       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
542
+       xml:space="preserve"><tspan
543
+         style="fill:#ffffff"
544
+         y="740.30255"
545
+         x="84.705879"
546
+         id="tspan6519"
547
+         sodipodi:role="line">9999</tspan></text>
548
+    <text
549
+       inkscape:label="CHT-text"
550
+       id="CHT-text"
551
+       y="635.69745"
552
+       x="98.957985"
553
+       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
554
+       xml:space="preserve"><tspan
555
+         style="fill:#ffffff"
556
+         y="635.69745"
557
+         x="98.957985"
558
+         id="tspan6511"
559
+         sodipodi:role="line">999</tspan></text>
560
+    <text
561
+       inkscape:label="FUEL-USED-text"
562
+       id="FUEL-USED-text"
563
+       y="374.39703"
564
+       x="96.214058"
565
+       style="font-style:normal;font-weight:normal;font-size:21.33333397px;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"
566
+       xml:space="preserve"><tspan
567
+         y="374.39703"
568
+         x="96.214058"
569
+         id="tspan6341"
570
+         sodipodi:role="line">99.9</tspan></text>
571
+    <text
572
+       inkscape:label="FUEL-FLOW-text"
573
+       id="FUEL-FLOW-text"
574
+       y="326.09988"
575
+       x="90.509666"
576
+       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
577
+       xml:space="preserve"><tspan
578
+         style="fill:#ffffff"
579
+         y="326.09988"
580
+         x="90.509666"
581
+         id="tspan6333"
582
+         sodipodi:role="line">99.9</tspan></text>
583
+    <text
584
+       inkscape:label="MAN-Hg-text"
585
+       id="MAN-Hg-text"
586
+       y="198.4538"
587
+       x="93.579834"
588
+       style="font-style:normal;font-weight:normal;font-size:24px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
589
+       xml:space="preserve"><tspan
590
+         style="fill:#ffffff"
591
+         y="198.4538"
592
+         x="93.579834"
593
+         id="tspan6024"
594
+         sodipodi:role="line">99.9</tspan></text>
595
+    <text
596
+       inkscape:label="POWER-PERCENT-text"
597
+       id="POWER-PERCENT-text"
598
+       y="136.60506"
599
+       x="94.117638"
600
+       style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
601
+       xml:space="preserve"><tspan
602
+         style="fill:#ffffff"
603
+         y="136.60506"
604
+         x="94.117638"
605
+         id="tspan6004"
606
+         sodipodi:role="line">100</tspan></text>
607
+    <text
608
+       inkscape:label="RPM-text"
609
+       id="RPM-text"
610
+       y="167.26051"
611
+       x="82.823524"
612
+       style="font-style:normal;font-weight:normal;font-size:24px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
613
+       xml:space="preserve"><tspan
614
+         style="fill:#ffffff"
615
+         y="167.26051"
616
+         x="82.823524"
617
+         id="tspan6012"
618
+         sodipodi:role="line">9950</tspan></text>
619
+    <text
620
+       inkscape:label="BUS-V-text"
621
+       id="BUS-V-text"
622
+       y="529.55646"
623
+       x="96.21405"
624
+       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
625
+       xml:space="preserve"><tspan
626
+         style="fill:#ffffff"
627
+         y="529.55646"
628
+         x="96.21405"
629
+         id="tspan6373"
630
+         sodipodi:role="line">99.9</tspan></text>
631
+    <text
632
+       inkscape:label="BATT-text"
633
+       id="BATT-text"
634
+       y="502.17538"
635
+       x="96.974648"
636
+       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
637
+       xml:space="preserve"><tspan
638
+         style="fill:#ffffff"
639
+         y="502.17538"
640
+         x="96.974648"
641
+         id="tspan6365"
642
+         sodipodi:role="line">+99</tspan></text>
643
+    <text
644
+       inkscape:label="PSI-text"
645
+       id="PSI-text"
646
+       y="453.21817"
647
+       x="114.08781"
648
+       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
649
+       xml:space="preserve"><tspan
650
+         style="fill:#ffffff"
651
+         y="453.21817"
652
+         x="114.08781"
653
+         id="tspan6357"
654
+         sodipodi:role="line">99</tspan></text>
655
+    <text
656
+       inkscape:label="OIL-TEMP-text"
657
+       id="OIL-TEMP-text"
658
+       y="406.34164"
659
+       x="101.53815"
660
+       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
661
+       xml:space="preserve"><tspan
662
+         style="fill:#ffffff"
663
+         y="406.34164"
664
+         x="101.53815"
665
+         id="tspan6349"
666
+         sodipodi:role="line">999</tspan></text>
667
+  </g>
668
+</svg>
-596
Systems/screen.svg
... ...
@@ -8290,600 +8290,4 @@
8290 8290
            style="font-size:40px;line-height:1.25;font-family:sans-serif">NO GPS POSITION</tspan></text>
8291 8291
     </g>
8292 8292
   </g>
8293
-  <g
8294
-     id="EIS"
8295
-     inkscape:label="EIS"
8296
-     transform="translate(-4.3733663,0.47536589)">
8297
-    <rect
8298
-       inkscape:label="EIS-bg"
8299
-       ry="0"
8300
-       y="55.494141"
8301
-       x="4.1832199"
8302
-       height="687.15924"
8303
-       width="144.49799"
8304
-       id="EIS-bg"
8305
-       style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke:#fffffb;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8306
-    <path
8307
-       inkscape:connector-curvature="0"
8308
-       id="path6240"
8309
-       d="M 57.815125,308.41625 V 283.5"
8310
-       style="fill:none;fill-rule:evenodd;stroke:#ffff00;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8311
-    <text
8312
-       transform="scale(0.92969988,1.0756159)"
8313
-       id="text6022"
8314
-       y="182.50244"
8315
-       x="9.43291"
8316
-       style="font-style:normal;font-weight:normal;font-size:19.83359718px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.9296999px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8317
-       xml:space="preserve"><tspan
8318
-         style="fill:#ffffff;stroke-width:0.9296999px"
8319
-         y="182.50244"
8320
-         x="9.43291"
8321
-         id="tspan6020"
8322
-         sodipodi:role="line">Man &quot;Hg</tspan></text>
8323
-    <path
8324
-       inkscape:connector-curvature="0"
8325
-       id="path6315"
8326
-       d="M 115.4958,302.78993 V 217.27732"
8327
-       style="fill:none;fill-rule:evenodd;stroke:#00ff00;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8328
-    <path
8329
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.13543296;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
8330
-       d="m 13.123366,130.6229 h 15.91865"
8331
-       id="path5973"
8332
-       inkscape:connector-curvature="0" />
8333
-    <path
8334
-       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#00ff26;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.26425219;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
8335
-       d="M 73.685547,69.429688 C 67.561189,69.681521 61.407716,70.903805 55.453125,73.162109 31.634762,82.195326 16.532567,105.70344 18.330078,130.99609 l 7.246094,-0.51562 C 24.004814,108.37 37.160127,87.869801 58.029297,79.955078 78.898467,72.040355 102.48822,78.622845 116.1543,96.158203 l 5.73047,-4.466797 C 110.17155,76.661819 92.058622,68.674186 73.685547,69.429688 Z"
8336
-       id="EIS-POWER-INT"
8337
-       inkscape:connector-curvature="0" />
8338
-    <path
8339
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.13543296;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
8340
-       d="M 113.3993,98.558221 125.69121,88.443269"
8341
-       id="path5973-7"
8342
-       inkscape:connector-curvature="0" />
8343
-    <path
8344
-       style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#fffffb;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.64653611;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
8345
-       d="m 73.533203,65.023438 c -6.66473,0.269648 -13.360911,1.576356 -19.84375,3.986328 -25.931357,9.639886 -42.364013,34.706784 -40.40625,61.708984 l 2.638672,-0.19141 C 14.04984,104.70754 29.740996,80.735689 54.611328,71.490234 79.481661,62.24478 107.63052,69.945502 123.91406,90.425781 l 2.07227,-1.648437 C 113.23126,72.734928 93.527394,64.214491 73.533203,65.023438 Z"
8346
-       id="EIS-POWER-EXT"
8347
-       inkscape:connector-curvature="0" />
8348
-    <text
8349
-       id="text5998"
8350
-       y="134.31935"
8351
-       x="34.957985"
8352
-       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8353
-       xml:space="preserve"><tspan
8354
-         id="tspan6000"
8355
-         style="fill:#ffffff"
8356
-         y="134.31935"
8357
-         x="34.957985"
8358
-         sodipodi:role="line">%Pwr</tspan></text>
8359
-    <text
8360
-       id="text6010"
8361
-       y="167.79832"
8362
-       x="6.8722954"
8363
-       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8364
-       xml:space="preserve"><tspan
8365
-         style="fill:#ffffff"
8366
-         y="167.79832"
8367
-         x="6.8722954"
8368
-         id="tspan6008"
8369
-         sodipodi:role="line">RPM</tspan></text>
8370
-    <text
8371
-       id="text6018"
8372
-       y="149.7899"
8373
-       x="162.92123"
8374
-       style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8375
-       xml:space="preserve"><tspan
8376
-         y="185.18053"
8377
-         x="162.92123"
8378
-         id="tspan6016"
8379
-         sodipodi:role="line" /></text>
8380
-    <path
8381
-       inkscape:connector-curvature="0"
8382
-       id="path6028"
8383
-       d="M 7.7521819,207.24899 H 144.94342"
8384
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8385
-    <path
8386
-       inkscape:connector-curvature="0"
8387
-       id="path6028-5"
8388
-       d="M 7.222726,351.38464 H 144.41397"
8389
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8390
-    <path
8391
-       inkscape:connector-curvature="0"
8392
-       id="path6028-5-3"
8393
-       d="M 7.874968,381.26051 H 145.06621"
8394
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8395
-    <path
8396
-       inkscape:connector-curvature="0"
8397
-       id="path6240-0"
8398
-       d="M 23.394958,308.41628 V 283.50003"
8399
-       style="fill:none;fill-rule:evenodd;stroke:#ffff00;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8400
-    <path
8401
-       inkscape:connector-curvature="0"
8402
-       id="path6290"
8403
-       d="M 57.815125,283.5 V 223.4622"
8404
-       style="fill:none;fill-rule:evenodd;stroke:#00ff00;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8405
-    <path
8406
-       inkscape:connector-curvature="0"
8407
-       id="path6060"
8408
-       d="m 27.761368,221.51937 v 86.89688"
8409
-       style="fill:none;fill-rule:evenodd;stroke:#fffff2;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8410
-    <path
8411
-       inkscape:connector-curvature="0"
8412
-       id="path6290-8"
8413
-       d="m 23.529412,283.19538 v -60.0378"
8414
-       style="fill:none;fill-rule:evenodd;stroke:#00ff00;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8415
-    <path
8416
-       inkscape:connector-curvature="0"
8417
-       id="path6060-5"
8418
-       d="m 53.761368,221.51937 v 86.89688"
8419
-       style="fill:none;fill-rule:evenodd;stroke:#fffff2;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8420
-    <path
8421
-       inkscape:connector-curvature="0"
8422
-       id="path6077"
8423
-       d="M 11.831933,308.41625 H 27.761368"
8424
-       style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8425
-    <path
8426
-       inkscape:connector-curvature="0"
8427
-       id="path6077-6"
8428
-       d="M 53.761368,308.41625 H 69.690803"
8429
-       style="fill:#ffffff;fill-rule:evenodd;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8430
-    <path
8431
-       inkscape:connector-curvature="0"
8432
-       id="path6094"
8433
-       d="M 12.504201,292.70589 H 27.761368"
8434
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8435
-    <path
8436
-       inkscape:connector-curvature="0"
8437
-       id="path6094-2"
8438
-       d="M 12.504201,277.2269 H 27.761368"
8439
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8440
-    <path
8441
-       inkscape:connector-curvature="0"
8442
-       id="path6094-2-9"
8443
-       d="M 12.504201,262.16808 H 27.761368"
8444
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8445
-    <path
8446
-       inkscape:connector-curvature="0"
8447
-       id="path6094-2-9-1"
8448
-       d="M 12.504201,247.24371 H 27.761368"
8449
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8450
-    <path
8451
-       inkscape:connector-curvature="0"
8452
-       id="path6094-2-9-1-2"
8453
-       d="M 12.504201,232.05043 H 27.761368"
8454
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8455
-    <path
8456
-       inkscape:connector-curvature="0"
8457
-       id="path6094-2-9-1-2-7"
8458
-       d="M 54.319326,231.91598 H 69.576493"
8459
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8460
-    <path
8461
-       inkscape:connector-curvature="0"
8462
-       id="path6094-2-9-1-2-7-0"
8463
-       d="M 53.761368,247.51262 H 69.018535"
8464
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8465
-    <path
8466
-       inkscape:connector-curvature="0"
8467
-       id="path6094-2-9-1-2-7-0-9"
8468
-       d="M 53.761368,262.16808 H 69.018535"
8469
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8470
-    <path
8471
-       inkscape:connector-curvature="0"
8472
-       id="path6094-2-9-1-2-7-0-9-3"
8473
-       d="M 53.761368,277.36136 H 69.018535"
8474
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8475
-    <path
8476
-       inkscape:connector-curvature="0"
8477
-       id="path6094-2-9-1-2-7-0-9-3-6"
8478
-       d="M 53.761368,292.55464 H 69.018535"
8479
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8480
-    <path
8481
-       inkscape:connector-curvature="0"
8482
-       id="path6313"
8483
-       d="m 104.73949,217.27732 h 14.78992 v 85.51261 h -14.92437"
8484
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8485
-    <text
8486
-       id="text6319"
8487
-       y="327.62103"
8488
-       x="15.592001"
8489
-       style="font-style:normal;font-weight:normal;font-size:21.33333397px;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"
8490
-       xml:space="preserve"><tspan
8491
-         y="327.62103"
8492
-         x="15.592001"
8493
-         id="tspan6317"
8494
-         sodipodi:role="line">L</tspan></text>
8495
-    <text
8496
-       id="text6323"
8497
-       y="328.00134"
8498
-       x="54.76215"
8499
-       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8500
-       xml:space="preserve"><tspan
8501
-         style="fill:#ffffff"
8502
-         y="328.00134"
8503
-         x="54.76215"
8504
-         id="tspan6321"
8505
-         sodipodi:role="line">R</tspan></text>
8506
-    <text
8507
-       transform="scale(0.90107439,1.1097863)"
8508
-       id="text6327"
8509
-       y="312.85434"
8510
-       x="30.637159"
8511
-       style="font-style:normal;font-weight:normal;font-size:19.22292137px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.90107441px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8512
-       xml:space="preserve"><tspan
8513
-         style="stroke-width:0.90107441px"
8514
-         y="312.85434"
8515
-         x="30.637159"
8516
-         id="tspan6325"
8517
-         sodipodi:role="line">Gal</tspan></text>
8518
-    <text
8519
-       transform="scale(0.7983482,1.2525863)"
8520
-       id="text6331"
8521
-       y="276.27679"
8522
-       x="93.839203"
8523
-       style="font-style:normal;font-weight:normal;font-size:17.03142929px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.79834819px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8524
-       xml:space="preserve"><tspan
8525
-         style="fill:#ffffff;stroke-width:0.79834819px"
8526
-         y="276.27679"
8527
-         x="93.839203"
8528
-         id="tspan6329"
8529
-         sodipodi:role="line">FFlow GPH</tspan></text>
8530
-    <text
8531
-       transform="scale(0.81190307,1.2316741)"
8532
-       id="text6339"
8533
-       y="303.97409"
8534
-       x="13.149561"
8535
-       style="font-style:normal;font-weight:normal;font-size:17.3205986px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.81190306px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8536
-       xml:space="preserve"><tspan
8537
-         style="fill:#ffffff;stroke-width:0.81190306px"
8538
-         y="303.97409"
8539
-         x="13.149561"
8540
-         id="tspan6337"
8541
-         sodipodi:role="line">Gal Used</tspan></text>
8542
-    <text
8543
-       transform="scale(0.83303795,1.2004255)"
8544
-       id="text6347"
8545
-       y="339.7652"
8546
-       x="10.483387"
8547
-       style="font-style:normal;font-weight:normal;font-size:17.77147675px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.83303797px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8548
-       xml:space="preserve"><tspan
8549
-         style="fill:#ffffff;stroke-width:0.83303797px"
8550
-         y="339.7652"
8551
-         x="10.483387"
8552
-         id="tspan6345"
8553
-         sodipodi:role="line">Oil °F</tspan></text>
8554
-    <text
8555
-       transform="scale(0.87485548,1.1430459)"
8556
-       id="text6355"
8557
-       y="398.40866"
8558
-       x="8.5804186"
8559
-       style="font-style:normal;font-weight:normal;font-size:18.66358376px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.87485546px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8560
-       xml:space="preserve"><tspan
8561
-         style="fill:#ffffff;stroke-width:0.87485546px"
8562
-         y="398.40866"
8563
-         x="8.5804186"
8564
-         id="tspan6353"
8565
-         sodipodi:role="line">Oil PSI</tspan></text>
8566
-    <text
8567
-       transform="scale(0.88772678,1.1264727)"
8568
-       id="text6363"
8569
-       y="445.45694"
8570
-       x="8.7181797"
8571
-       style="font-style:normal;font-weight:normal;font-size:18.93817139px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.88772678px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8572
-       xml:space="preserve"><tspan
8573
-         style="fill:#ffffff;stroke-width:0.88772678px"
8574
-         y="445.45694"
8575
-         x="8.7181797"
8576
-         id="tspan6361"
8577
-         sodipodi:role="line">Batt1 A</tspan></text>
8578
-    <text
8579
-       transform="scale(0.86681236,1.1536522)"
8580
-       id="text6371"
8581
-       y="459.35574"
8582
-       x="9.0171661"
8583
-       style="font-style:normal;font-weight:normal;font-size:18.49199677px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.86681235px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8584
-       xml:space="preserve"><tspan
8585
-         style="fill:#ffffff;stroke-width:0.86681235px"
8586
-         y="459.35574"
8587
-         x="9.0171661"
8588
-         id="tspan6369"
8589
-         sodipodi:role="line">Ess Bus V</tspan></text>
8590
-    <path
8591
-       inkscape:connector-curvature="0"
8592
-       id="path6490-2"
8593
-       d="m 136.2689,546.82352 v 7.12606"
8594
-       style="fill:none;fill-rule:evenodd;stroke:#fff700;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8595
-    <path
8596
-       inkscape:connector-curvature="0"
8597
-       id="path6490"
8598
-       d="m 136.33613,539.69748 v 7.12606"
8599
-       style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8600
-    <path
8601
-       inkscape:connector-curvature="0"
8602
-       id="path6377"
8603
-       d="m 128.40336,600.60505 h 11.96638 v -60.90757 h -7.66386"
8604
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8605
-    <path
8606
-       inkscape:connector-curvature="0"
8607
-       id="path6379"
8608
-       d="m 132.70588,594.13269 h 7.66386"
8609
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8610
-    <path
8611
-       inkscape:connector-curvature="0"
8612
-       id="path6379-7"
8613
-       d="m 132.70588,580.16807 h 7.66386"
8614
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8615
-    <path
8616
-       inkscape:connector-curvature="0"
8617
-       id="path6379-7-9"
8618
-       d="m 132.70588,566.9916 h 7.66386"
8619
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8620
-    <path
8621
-       inkscape:connector-curvature="0"
8622
-       id="path6379-7-9-2"
8623
-       d="m 132.70588,553.94958 h 7.66386"
8624
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8625
-    <path
8626
-       inkscape:connector-curvature="0"
8627
-       id="path6441"
8628
-       d="m 128.13445,587.15967 h 12.23529"
8629
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8630
-    <path
8631
-       inkscape:connector-curvature="0"
8632
-       id="path6441-7"
8633
-       d="m 127.93278,546.82354 h 12.23529"
8634
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8635
-    <path
8636
-       inkscape:connector-curvature="0"
8637
-       id="path6441-5"
8638
-       d="m 128.06723,560.13446 h 12.23529"
8639
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8640
-    <path
8641
-       inkscape:connector-curvature="0"
8642
-       id="path6441-9"
8643
-       d="m 128.13445,574.11765 h 12.23529"
8644
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8645
-    <path
8646
-       inkscape:connector-curvature="0"
8647
-       id="path6482"
8648
-       d="m 7.986147,412.42631 v 15.78215 H 140.7083 v -16.16244"
8649
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8650
-    <path
8651
-       inkscape:connector-curvature="0"
8652
-       id="path6484"
8653
-       d="M 27.666295,424.19163 H 136.43001"
8654
-       style="fill:none;fill-rule:evenodd;stroke:#00fe00;stroke-width:7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8655
-    <path
8656
-       inkscape:connector-curvature="0"
8657
-       id="path6488"
8658
-       d="m 138.3077,420.69767 v 7.03542"
8659
-       style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:3.75436258;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
8660
-    <text
8661
-       transform="scale(0.80339161,1.244723)"
8662
-       id="text6509"
8663
-       y="512.87439"
8664
-       x="12.693493"
8665
-       style="font-style:normal;font-weight:normal;font-size:17.13902092px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.80339164px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8666
-       xml:space="preserve"><tspan
8667
-         style="fill:#ffffff;stroke-width:0.80339164px"
8668
-         y="512.87439"
8669
-         x="12.693493"
8670
-         id="tspan6507"
8671
-         sodipodi:role="line">CHT °F</tspan></text>
8672
-    <text
8673
-       transform="scale(0.80974932,1.2349501)"
8674
-       id="text6517"
8675
-       y="600.53174"
8676
-       x="12.181236"
8677
-       style="font-style:normal;font-weight:normal;font-size:17.27465248px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.80974936px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8678
-       xml:space="preserve"><tspan
8679
-         style="fill:#ffffff;stroke-width:0.80974936px"
8680
-         y="600.53174"
8681
-         x="12.181236"
8682
-         id="tspan6515"
8683
-         sodipodi:role="line">EGT °F</tspan></text>
8684
-    <path
8685
-       inkscape:connector-curvature="0"
8686
-       id="path6523"
8687
-       d="m 128.53781,704.53782 h 11.83193 v -60.2353 H 128.2689"
8688
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8689
-    <path
8690
-       inkscape:connector-curvature="0"
8691
-       id="path6525"
8692
-       d="m 127.93614,694.50948 h 12.10084"
8693
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8694
-    <path
8695
-       inkscape:connector-curvature="0"
8696
-       id="path6525-2"
8697
-       d="M 128.00276,684.76343 H 140.1036"
8698
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8699
-    <path
8700
-       inkscape:connector-curvature="0"
8701
-       id="path6525-2-8"
8702
-       d="m 127.90769,674.68568 h 12.10084"
8703
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8704
-    <path
8705
-       inkscape:connector-curvature="0"
8706
-       id="path6525-2-8-9"
8707
-       d="M 128.00276,664.65545 H 140.1036"
8708
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8709
-    <path
8710
-       inkscape:connector-curvature="0"
8711
-       id="path6660"
8712
-       d="m 140.32801,459.77276 v 15.2117 H 8.3664397 v -15.592"
8713
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8714
-    <path
8715
-       inkscape:connector-curvature="0"
8716
-       id="path6525-2-8-9-7"
8717
-       d="m 127.90769,654.5777 h 12.10084"
8718
-       style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8719
-    <path
8720
-       inkscape:label="FUEL-LEFT-pointer"
8721
-       inkscape:connector-curvature="0"
8722
-       id="FUEL-LEFT-pointer"
8723
-       d="M 9.6974642,216.57556 V 229.2203 L 23.529412,223.15758 Z"
8724
-       style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8725
-    <path
8726
-       inkscape:label="FUEL-RIGHT-pointer"
8727
-       inkscape:connector-curvature="0"
8728
-       id="FUEL-RIGHT-pointer"
8729
-       d="M 70.491083,230.01514 V 217.3704 l -13.831948,6.06272 z"
8730
-       style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8731
-    <path
8732
-       inkscape:label="FUEL-FLOW-pointer"
8733
-       inkscape:connector-curvature="0"
8734
-       id="FUEL-FLOW-pointer"
8735
-       d="m 103.49283,296.21263 v 12.64474 l 13.83195,-6.06272 z"
8736
-       style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8737
-    <path
8738
-       inkscape:label="POWER-pointer"
8739
-       inkscape:connector-curvature="0"
8740
-       id="POWER-pointer"
8741
-       d="M 33.222396,137.12864 V 124.4839 l -13.831948,6.06272 z"
8742
-       style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8743
-       inkscape:transform-center-x="48.516168"
8744
-       inkscape:transform-center-y="0.93744449" />
8745
-    <path
8746
-       inkscape:label="OIL-TEMP-pointer"
8747
-       inkscape:connector-curvature="0"
8748
-       id="OIL-TEMP-pointer"
8749
-       d="M 14.58045,412.19432 H 1.93571 l 6.06272,13.83195 z"
8750
-       style="fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8751
-    <path
8752
-       inkscape:label="PSI-pointer"
8753
-       inkscape:connector-curvature="0"
8754
-       id="PSI-pointer"
8755
-       d="M 15.150888,459.16045 H 2.5061485 l 6.06272,13.83195 z"
8756
-       style="display:inline;fill:#ffffff;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
8757
-    <text
8758
-       inkscape:label="EGT-text"
8759
-       id="EGT-text"
8760
-       y="740.30255"
8761
-       x="84.705879"
8762
-       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8763
-       xml:space="preserve"><tspan
8764
-         style="fill:#ffffff"
8765
-         y="740.30255"
8766
-         x="84.705879"
8767
-         id="tspan6519"
8768
-         sodipodi:role="line">9999</tspan></text>
8769
-    <text
8770
-       inkscape:label="CHT-text"
8771
-       id="CHT-text"
8772
-       y="635.69745"
8773
-       x="98.957985"
8774
-       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8775
-       xml:space="preserve"><tspan
8776
-         style="fill:#ffffff"
8777
-         y="635.69745"
8778
-         x="98.957985"
8779
-         id="tspan6511"
8780
-         sodipodi:role="line">999</tspan></text>
8781
-    <text
8782
-       inkscape:label="FUEL-USED-text"
8783
-       id="FUEL-USED-text"
8784
-       y="374.39703"
8785
-       x="96.214058"
8786
-       style="font-style:normal;font-weight:normal;font-size:21.33333397px;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"
8787
-       xml:space="preserve"><tspan
8788
-         y="374.39703"
8789
-         x="96.214058"
8790
-         id="tspan6341"
8791
-         sodipodi:role="line">99.9</tspan></text>
8792
-    <text
8793
-       inkscape:label="FUEL-FLOW-text"
8794
-       id="FUEL-FLOW-text"
8795
-       y="326.09988"
8796
-       x="90.509666"
8797
-       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8798
-       xml:space="preserve"><tspan
8799
-         style="fill:#ffffff"
8800
-         y="326.09988"
8801
-         x="90.509666"
8802
-         id="tspan6333"
8803
-         sodipodi:role="line">99.9</tspan></text>
8804
-    <text
8805
-       inkscape:label="MAN-Hg-text"
8806
-       id="MAN-Hg-text"
8807
-       y="198.4538"
8808
-       x="93.579834"
8809
-       style="font-style:normal;font-weight:normal;font-size:24px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8810
-       xml:space="preserve"><tspan
8811
-         style="fill:#ffffff"
8812
-         y="198.4538"
8813
-         x="93.579834"
8814
-         id="tspan6024"
8815
-         sodipodi:role="line">99.9</tspan></text>
8816
-    <text
8817
-       inkscape:label="POWER-PERCENT-text"
8818
-       id="POWER-PERCENT-text"
8819
-       y="136.60506"
8820
-       x="94.117638"
8821
-       style="font-style:normal;font-weight:normal;font-size:26.66666603px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8822
-       xml:space="preserve"><tspan
8823
-         style="fill:#ffffff"
8824
-         y="136.60506"
8825
-         x="94.117638"
8826
-         id="tspan6004"
8827
-         sodipodi:role="line">100</tspan></text>
8828
-    <text
8829
-       inkscape:label="RPM-text"
8830
-       id="RPM-text"
8831
-       y="167.26051"
8832
-       x="82.823524"
8833
-       style="font-style:normal;font-weight:normal;font-size:24px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8834
-       xml:space="preserve"><tspan
8835
-         style="fill:#ffffff"
8836
-         y="167.26051"
8837
-         x="82.823524"
8838
-         id="tspan6012"
8839
-         sodipodi:role="line">9950</tspan></text>
8840
-    <text
8841
-       inkscape:label="BUS-V-text"
8842
-       id="BUS-V-text"
8843
-       y="529.55646"
8844
-       x="96.21405"
8845
-       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8846
-       xml:space="preserve"><tspan
8847
-         style="fill:#ffffff"
8848
-         y="529.55646"
8849
-         x="96.21405"
8850
-         id="tspan6373"
8851
-         sodipodi:role="line">99.9</tspan></text>
8852
-    <text
8853
-       inkscape:label="BATT-text"
8854
-       id="BATT-text"
8855
-       y="502.17538"
8856
-       x="96.974648"
8857
-       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8858
-       xml:space="preserve"><tspan
8859
-         style="fill:#ffffff"
8860
-         y="502.17538"
8861
-         x="96.974648"
8862
-         id="tspan6365"
8863
-         sodipodi:role="line">+99</tspan></text>
8864
-    <text
8865
-       inkscape:label="PSI-text"
8866
-       id="PSI-text"
8867
-       y="453.21817"
8868
-       x="114.08781"
8869
-       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8870
-       xml:space="preserve"><tspan
8871
-         style="fill:#ffffff"
8872
-         y="453.21817"
8873
-         x="114.08781"
8874
-         id="tspan6357"
8875
-         sodipodi:role="line">99</tspan></text>
8876
-    <text
8877
-       inkscape:label="OIL-TEMP-text"
8878
-       id="OIL-TEMP-text"
8879
-       y="406.34164"
8880
-       x="101.53815"
8881
-       style="font-style:normal;font-weight:normal;font-size:21.33333397px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
8882
-       xml:space="preserve"><tspan
8883
-         style="fill:#ffffff"
8884
-         y="406.34164"
8885
-         x="101.53815"
8886
-         id="tspan6349"
8887
-         sodipodi:role="line">999</tspan></text>
8888
-  </g>
8889 8293
 </svg>