1
0
Fork 0

Merge branch 'dev' into 3D

This commit is contained in:
Jonathan Redpath 2021-11-09 09:44:15 +00:00
commit 8101bc8c86
11 changed files with 550 additions and 214 deletions

View file

@ -1713,6 +1713,14 @@
<serviceable type="bool">true</serviceable> <serviceable type="bool">true</serviceable>
</altimeter> </altimeter>
<altimeter n="6">
<indicated-altitude-ft type="double">0</indicated-altitude-ft>
<indicated-altitude-ft-pfd type="double">0</indicated-altitude-ft-pfd>
<oldqnh type="double">29.92</oldqnh>
<serviceable type="bool">true</serviceable>
<std type="bool">0</std>
</altimeter>
<chrono n="0"> <chrono n="0">
<started type="bool">0</started> <started type="bool">0</started>
<paused type="bool">0</paused> <paused type="bool">0</paused>

View file

@ -2878,7 +2878,6 @@
<type>pick</type> <type>pick</type>
<object-name>qnh_cpt_knb</object-name> <object-name>qnh_cpt_knb</object-name>
<object-name>qnh_fo_knb</object-name> <object-name>qnh_fo_knb</object-name>
<object-name>iesi_baro_knb</object-name>
<action> <action>
<button>0</button> <button>0</button>
<button>1</button> <button>1</button>
@ -3009,6 +3008,115 @@
</binding> </binding>
</action> </action>
</animation> </animation>
<animation>
<type>pick</type>
<object-name>iesi_baro_knb</object-name>
<action>
<button>0</button>
<button>1</button>
<repeatable>false</repeatable>
<binding>
<condition>
<or>
<greater-than-equals>
<property>systems/electrical/bus/dc-ess</property>
<value>25</value>
</greater-than-equals>
<and>
<greater-than-equals>
<property>/systems/electrical/bus/sub-bus/dc-hot-1-703</property>
<value>25</value>
</greater-than-equals>
<property>/systems/electrical/sources/si-1/inverter-control/relay-7xb</property>
</and>
</or>
</condition>
<command>nasal</command>
<script>
libraries.toggleSTDIESI();
</script>
</binding>
</action>
<action>
<button>3</button>
<repeatable>true</repeatable>
<binding>
<command>nasal</command>
<script>
setprop("/instrumentation/altimeter[6]/setting-inhg", getprop("/instrumentation/altimeter[6]/setting-inhg") + 0.01);
</script>
<condition>
<and>
<equals>
<property>instrumentation/altimeter[6]/std</property>
<value>0</value>
</equals>
<or>
<greater-than-equals>
<property>systems/electrical/bus/dc-ess</property>
<value>25</value>
</greater-than-equals>
<and>
<greater-than-equals>
<property>/systems/electrical/bus/sub-bus/dc-hot-1-703</property>
<value>25</value>
</greater-than-equals>
<property>/systems/electrical/sources/si-1/inverter-control/relay-7xb</property>
</and>
</or>
</and>
</condition>
</binding>
<binding>
<command>property-adjust</command>
<property>controls/switches/qnh-knb-iesi</property>
<step>1</step>
<min>0</min>
<max>200000</max>
<wrap>true</wrap>
</binding>
</action>
<action>
<button>4</button>
<repeatable>true</repeatable>
<binding>
<command>nasal</command>
<script>
setprop("/instrumentation/altimeter[6]/setting-inhg", getprop("/instrumentation/altimeter[6]/setting-inhg") - 0.01);
</script>
<condition>
<and>
<equals>
<property>instrumentation/altimeter[6]/std</property>
<value>0</value>
</equals>
<or>
<greater-than-equals>
<property>systems/electrical/bus/dc-ess</property>
<value>25</value>
</greater-than-equals>
<and>
<greater-than-equals>
<property>/systems/electrical/bus/sub-bus/dc-hot-1-703</property>
<value>25</value>
</greater-than-equals>
<property>/systems/electrical/sources/si-1/inverter-control/relay-7xb</property>
</and>
</or>
</and>
</condition>
</binding>
<binding>
<command>property-adjust</command>
<property>controls/switches/qnh-knb-iesi</property>
<step>-1</step>
<min>0</min>
<max>200000</max>
<wrap>true</wrap>
</binding>
</action>
</animation>
<animation> <animation>
<type>pick</type> <type>pick</type>

View file

@ -6,10 +6,10 @@
var iesi_init = props.globals.initNode("/instrumentation/iesi/iesi-init", 0, "BOOL"); var iesi_init = props.globals.initNode("/instrumentation/iesi/iesi-init", 0, "BOOL");
var iesi_reset = props.globals.initNode("/instrumentation/iesi/att-reset", 0, "DOUBLE"); var iesi_reset = props.globals.initNode("/instrumentation/iesi/att-reset", 0, "DOUBLE");
var ASI = 0; var pinPrograms = {
var _showIESI = 0; metricAltitude: 1,
var _fast = 0; showInHg: 1,
var _IESITime = 0; };
var canvas_IESI = { var canvas_IESI = {
new: func(svg, name) { new: func(svg, name) {
@ -49,19 +49,27 @@ var canvas_IESI = {
obj.AI_horizon_trans = obj["AI_horizon"].createTransform(); obj.AI_horizon_trans = obj["AI_horizon"].createTransform();
obj.AI_horizon_rot = obj["AI_horizon"].createTransform(); obj.AI_horizon_rot = obj["AI_horizon"].createTransform();
obj._cachedInhg = nil;
obj._excessMotion = 0;
obj._fast = 0;
obj._IESITime = 0;
obj._showIESI = 0;
obj.ASI = 0;
obj.canReset = 0;
obj.isNegativeAlt = 0;
obj.middleAltOffset = nil; obj.middleAltOffset = nil;
obj.update_items = [ obj.update_items = [
props.UpdateManager.FromHashValue("airspeed", nil, func(val) { props.UpdateManager.FromHashValue("airspeed", nil, func(val) {
# Subtract 30, since the scale starts at 30, but don't allow less than 0, or more than 520 knots # Subtract 30, since the scale starts at 30, but don't allow less than 0, or more than 520 knots
if (val <= 30) { if (val <= 30) {
ASI = 0; obj.ASI = 0;
} else if (val >= 520) { } else if (val >= 520) {
ASI = 490; obj.ASI = 490;
} else { } else {
ASI = val - 30; obj.ASI = val - 30;
} }
obj["ASI_scale"].setTranslation(0, ASI * 8.295); obj["ASI_scale"].setTranslation(0, obj.ASI * 8.295);
}), }),
props.UpdateManager.FromHashList(["altitude","altitude_ind"], nil, func(val) { props.UpdateManager.FromHashList(["altitude","altitude_ind"], nil, func(val) {
if (val.altitude > 50000) { if (val.altitude > 50000) {
@ -72,10 +80,10 @@ var canvas_IESI = {
if (val.altitude < 0) { if (val.altitude < 0) {
obj["negText"].show(); obj["negText"].show();
obj["negText2"].show(); obj.isNegativeAlt = 1;
} else { } else {
obj["negText"].hide(); obj["negText"].hide();
obj["negText2"].hide(); obj.isNegativeAlt = 0;
} }
obj.altOffset = (val.altitude / 500) - int(val.altitude / 500); obj.altOffset = (val.altitude / 500) - int(val.altitude / 500);
@ -134,22 +142,21 @@ var canvas_IESI = {
obj["AI_bank"].setRotation(-val * D2R); obj["AI_bank"].setRotation(-val * D2R);
}), }),
props.UpdateManager.FromHashValue("skid", nil, func(val) { props.UpdateManager.FromHashValue("skid", nil, func(val) {
obj["AI_slipskid"].setTranslation(val, 0); if (abs(val) >= 84.99) {
obj["AI_slipskid"].hide();
} else {
obj["AI_slipskid"].setTranslation(-val, 0);
obj["AI_slipskid"].show();
}
}), }),
props.UpdateManager.FromHashList(["altimeter_mode","qnh_hpa","qnh_inhg"], nil, func(val) { props.UpdateManager.FromHashList(["altimeter_mode","qnh_hpa","qnh_inhg"], nil, func(val) {
obj.updateQNH(val); obj.updateQNH(val);
}), }),
]; ];
_showIESI = 0;
_fast = 0;
_IESITime = 0.0;
obj._cachedInhg = nil;
return obj; return obj;
}, },
getKeys: func() { getKeys: func() {
return ["IESI","IESI_Init","ASI_scale","ASI_mach","ASI_mach_decimal","AI_center","AI_horizon","AI_bank","AI_slipskid","ALT_scale","ALT_one","ALT_two","ALT_three","ALT_four","ALT_five","ALT_digits","ALT_tens","ALT_meters","QNH_setting","QNH_std","negText","negText2","AI_bank_scale"]; return ["IESI","IESI_Init","attRst","attRstRect","att90s","ATTflag","ATTflag_rect","ATTflag_text","ALTwarn","SPDwarn","ASI_scale","ASI_mach","ASI_mach_decimal","AI_center","AI_index","AI_horizon","AI_sky_bank","AI_bank","AI_bank_center","AI_slipskid","ALT_scale","ALT_one","ALT_two","ALT_three","ALT_four","ALT_five","ALT_digits","ALT_tens","ALT_meters","QNH_setting","QNH_std","negText","negText2","AI_bank_scale","metricM","metricBox"];
}, },
update: func(notification) { update: func(notification) {
if (notification.qnh_inhg != me._cachedInhg) { if (notification.qnh_inhg != me._cachedInhg) {
@ -162,13 +169,80 @@ var canvas_IESI = {
return; return;
} }
if (_IESITime + 90 >= notification.elapsedTime) { if (me._IESITime + 90 >= notification.elapsedTime) {
me["IESI"].hide(); if (notification.groundspeed > 2) {
me["IESI_Init"].show(); me._excessMotion = 1;
}
if (me._fast) {
me["IESI"].show();
me["IESI_Init"].hide();
me["AI_bank"].hide();
me["AI_bank_center"].hide();
me["AI_bank_scale"].hide();
me["AI_horizon"].hide();
me["AI_sky_bank"].hide();
me["ATTflag_text"].setText("ATT 10s");
me["ATTflag_text"].setColor(0,0,0);
me["ATTflag_rect"].setScale(1.5,1);
me["ATTflag_rect"].setTranslation(-250,0);
me["ATTflag_rect"].setColorFill(1,1,0);
me["ATTflag_rect"].setColor(1,1,0);
me["ATTflag"].show();
me["attRst"].hide();
me["attRstRect"].hide();
} else {
me["IESI"].hide();
me["IESI_Init"].show();
me["ATTflag"].hide();
}
return; return;
} else { } else {
me["IESI_Init"].hide(); if (pinPrograms.metricAltitude) {
me["IESI"].show(); me["ALT_meters"].show();
me["metricM"].show();
me["metricBox"].show();
if (me.isNegativeAlt) {
me["negText2"].show();
} else {
me["negText2"].hide();
}
} else {
me["ALT_meters"].hide();
me["metricM"].hide();
me["metricBox"].hide();
me["negText2"].hide();
}
if (!me._excessMotion) {
me["IESI_Init"].hide();
me["IESI"].show();
me["AI_bank"].show();
me["AI_bank_center"].show();
me["AI_bank_scale"].show();
me["AI_index"].show();
me["AI_horizon"].show();
me["AI_sky_bank"].show();
me["ATTflag"].hide();
} else {
me["IESI_Init"].hide();
me["IESI"].show();
me["AI_bank"].hide();
me["AI_bank_center"].hide();
me["AI_bank_scale"].hide();
me["AI_horizon"].hide();
me["AI_sky_bank"].hide();
me["ATTflag_text"].setText("ATT");
me["ATTflag_text"].setColor(1,0,0);
me["ATTflag_rect"].setScale(1,1);
me["ATTflag_rect"].setTranslation(0,0);
me["ATTflag_rect"].setColorFill(0,0,0);
me["ATTflag_rect"].setColor(0,0,0);
me["ATTflag"].show();
me["attRst"].show();
me["attRstRect"].show();
}
} }
foreach(var update_item; me.update_items) foreach(var update_item; me.update_items)
@ -181,7 +255,11 @@ var canvas_IESI = {
me["QNH_setting"].hide(); me["QNH_setting"].hide();
me["QNH_std"].show(); me["QNH_std"].show();
} else { } else {
me["QNH_setting"].setText(sprintf("%4.0f", notification.qnh_hpa) ~ "/" ~ sprintf("%2.2f", notification.qnh_inhg)); if (pinPrograms.showInHg) {
me["QNH_setting"].setText(sprintf("%4.0f", notification.qnh_hpa) ~ "/" ~ sprintf("%2.2f", notification.qnh_inhg));
} else {
me["QNH_setting"].setText(sprintf("%4.0f", notification.qnh_hpa));
}
me["QNH_setting"].show(); me["QNH_setting"].show();
me["QNH_std"].hide(); me["QNH_std"].hide();
} }
@ -189,47 +267,49 @@ var canvas_IESI = {
_transientVar: 0, _transientVar: 0,
updatePower: func(notification) { updatePower: func(notification) {
# todo 20W power consumption # todo 20W power consumption
if (notification.attReset == 1) { if (notification.attReset == 1 and me.canReset) {
if (notification.iesiInit and _IESITime + 90 >= notification.elapsedTime) { me.canReset = 0;
_fast = 1; me._excessMotion = 0;
} else { me._fast = 1;
_fast = 0;
}
iesi_init.setBoolValue(0); iesi_init.setBoolValue(0);
} else if (me._IESITime + 90 < notification.elapsedTime and notification.iesiInit and !me.canReset) {
me.canReset = 1;
} }
if (notification.dcEss >= 25 or (notification.relay7XB and notification.dcHot1 >= 25)) { if (notification.dcEss >= 25 or (notification.relay7XB and notification.dcHot1703 >= 25)) {
_showIESI = 1; me._showIESI = 1;
if (notification.acconfig != 1 and notification.iesiInit != 1) { if (notification.acconfig != 1 and notification.iesiInit != 1) {
iesi_init.setBoolValue(1); iesi_init.setBoolValue(1);
if (_fast) { if (me._fast) {
_IESITime = notification.elapsedTime - 80; me._IESITime = notification.elapsedTime - 80;
_fast = 0;
} else { } else {
_IESITime = notification.elapsedTime; me._IESITime = notification.elapsedTime;
} }
} else if (notification.acconfig == 1 and notification.iesiInit != 1) { } else if (notification.acconfig == 1 and notification.iesiInit != 1) {
iesi_init.setBoolValue(1); iesi_init.setBoolValue(1);
_IESITime = notification.elapsedTime - 87; me._IESITime = notification.elapsedTime - 87;
} }
} elsif (notification.iesiInit) { } elsif (notification.iesiInit) {
if (!me._transientVar) { if (!me._transientVar) {
me._transientVar = 1; me._transientVar = 1;
settimer(func() { settimer(func() {
if (systems.ELEC.Bus.dcEss.getValue() >= 25 or (systems.ELEC.Bus.dcHot1.getValue() >= 25 and systems.ELEC.Relay.relay7XB.getValue())) { if (systems.ELEC.Bus.dcEss.getValue() >= 25 or (systems.ELEC.Bus.dcHot1703.getValue() >= 25 and systems.ELEC.Relay.relay7XB.getValue())) {
me._transientVar = 0; me._transientVar = 0;
} else { } else {
_showIESI = 0; me.canReset = 0;
iesi_init.setBoolValue(0); me._excessMotion = 0;
me._fast = 0;
me._showIESI = 0;
me._transientVar = 0; me._transientVar = 0;
iesi_init.setBoolValue(0);
} }
}, 0.2); # 200ms delay power transients }, 0.2); # 200ms delay power transients
} }
} }
if (_showIESI and notification.iesiBrt > 0.01) { if (_showIESI and notification.iesiBrt > 0.01) {
pts.Instrumentation.Iesi.lcdOn.setBoolValue(1);
me.group.setVisible(1); me.group.setVisible(1);
pts.Instrumentation.Iesi.lcdOn.setBoolValue(1);
} else { } else {
me.group.setVisible(0); me.group.setVisible(0);
pts.Instrumentation.Iesi.lcdOn.setBoolValue(0); pts.Instrumentation.Iesi.lcdOn.setBoolValue(0);
@ -268,16 +348,16 @@ emesary.GlobalTransmitter.Register(A320IESI);
var input = { var input = {
"acconfig": "/systems/acconfig/autoconfig-running", "acconfig": "/systems/acconfig/autoconfig-running",
"airspeed": "/instrumentation/airspeed-indicator[0]/indicated-speed-kt", "airspeed": "/instrumentation/airspeed-indicator[0]/indicated-speed-kt",
"altitude": "/instrumentation/altimeter/indicated-altitude-ft", "altitude": "/instrumentation/altimeter[6]/indicated-altitude-ft",
"altitude_ind": "/instrumentation/altimeter/indicated-altitude-ft-pfd", "altitude_ind": "/instrumentation/altimeter[6]/indicated-altitude-ft-pfd",
"altimeter_mode": "/instrumentation/altimeter[0]/std", "altimeter_mode": "/instrumentation/altimeter[6]/std",
"attReset": "/instrumentation/iesi/att-reset", "attReset": "/instrumentation/iesi/att-reset",
"iesiBrt": "/controls/lighting/DU/iesi", "iesiBrt": "/controls/lighting/DU/iesi",
"iesiInit": "/instrumentation/iesi/iesi-init", "iesiInit": "/instrumentation/iesi/iesi-init",
"mach": "/instrumentation/airspeed-indicator/indicated-mach", "mach": "/instrumentation/airspeed-indicator/indicated-mach",
"pitch": "/instrumentation/iesi/pitch-deg", "pitch": "/instrumentation/iesi/pitch-deg",
"qnh_hpa": "/instrumentation/altimeter[0]/setting-hpa", "qnh_hpa": "/instrumentation/altimeter[6]/setting-hpa",
"qnh_inhg": "/instrumentation/altimeter[0]/setting-inhg", "qnh_inhg": "/instrumentation/altimeter[6]/setting-inhg",
"roll": "/orientation/roll-deg", "roll": "/orientation/roll-deg",
"skid": "/instrumentation/iesi/slip-skid", "skid": "/instrumentation/iesi/slip-skid",
"relay7XB": "/systems/electrical/sources/si-1/inverter-control/relay-7xb", "relay7XB": "/systems/electrical/sources/si-1/inverter-control/relay-7xb",

View file

@ -1,19 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg <svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1024pt" width="1024pt"
height="1024pt" height="1024pt"
viewBox="0 0 1024 1024" viewBox="0 0 1024 1024"
version="1.1" version="1.1"
id="svg2" id="svg2"
inkscape:version="0.91 r13725" inkscape:version="1.1 (c68e22c387, 2021-05-23)"
sodipodi:docname="iesi.svg"> sodipodi:docname="iesi.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
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/">
<metadata <metadata
id="metadata375"> id="metadata375">
<rdf:RDF> <rdf:RDF>
@ -38,16 +38,16 @@
inkscape:pageopacity="1" inkscape:pageopacity="1"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:window-width="1920" inkscape:window-width="1920"
inkscape:window-height="1017" inkscape:window-height="986"
id="namedview371" id="namedview371"
showgrid="true" showgrid="true"
inkscape:zoom="0.45254834" inkscape:zoom="0.93517029"
inkscape:cx="877.65465" inkscape:cx="815.35952"
inkscape:cy="962.66623" inkscape:cy="762.42799"
inkscape:window-x="1592" inkscape:window-x="-11"
inkscape:window-y="-8" inkscape:window-y="-11"
inkscape:window-maximized="1" inkscape:window-maximized="1"
inkscape:current-layer="IESI" inkscape:current-layer="ATTflag"
showguides="true" showguides="true"
inkscape:snap-global="false" inkscape:snap-global="false"
units="pt" units="pt"
@ -55,7 +55,9 @@
fit-margin-left="0" fit-margin-left="0"
fit-margin-right="0" fit-margin-right="0"
fit-margin-bottom="0" fit-margin-bottom="0"
borderlayer="false"> borderlayer="false"
inkscape:pagecheckerboard="0"
inkscape:document-units="pt">
<inkscape:grid <inkscape:grid
type="xygrid" type="xygrid"
id="grid5153" id="grid5153"
@ -65,85 +67,143 @@
<g <g
id="IESI_Init" id="IESI_Init"
inkscape:label="#g4490"> inkscape:label="#g4490">
<g
id="MsgBox"
inkscape:label="MsgBox">
<rect
y="720.3349"
x="304.32764"
height="91.330338"
width="406.27161"
id="rect4448"
style="fill:#c9d121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.17302;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<text
inkscape:label="#text979"
transform="scale(1.0000144,0.9999856)"
xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:0.75"
x="510.22949"
y="796.40295"
id="att90s"><tspan
sodipodi:role="line"
id="tspan4464"
x="510.22949"
y="796.40295"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke-width:0.75">INIT 90s</tspan></text>
</g>
<g
id="SPDwarn"
inkscape:label="SPDwarn">
<rect
style="fill:#c9d121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect4466"
width="243.81277"
height="91.330353"
x="16"
y="503.70544" />
<text
id="text4468"
y="579.77039"
x="137.55525"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:0.75"
xml:space="preserve"
transform="scale(1.0000144,0.9999856)"
inkscape:label="#text979"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke-width:0.75"
y="579.77039"
x="137.55525"
id="tspan4470"
sodipodi:role="line">SPD</tspan></text>
</g>
<g
id="ALTwarn"
inkscape:label="ALTwarn">
<rect
y="503.70544"
x="764.18719"
height="91.330353"
width="243.81277"
id="rect4472"
style="fill:#c9d121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<text
inkscape:label="#text979"
transform="scale(1.0000144,0.9999856)"
xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:0.75"
x="885.73169"
y="579.77039"
id="text4474"><tspan
sodipodi:role="line"
id="tspan4476"
x="885.73169"
y="579.77039"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke-width:0.75">ALT</tspan></text>
</g>
<g
id="ATTwarn">
<rect
style="fill:#c9d121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect4484"
width="243.81277"
height="91.330353"
x="390.0936"
y="287.07605" />
<text
id="text4486"
y="363.13785"
x="511.64346"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:0.75"
xml:space="preserve"
transform="scale(1.0000144,0.9999856)"
inkscape:label="#text979"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke-width:0.75"
y="363.13785"
x="511.64346"
id="tspan4488"
sodipodi:role="line">ATT</tspan></text>
</g>
</g>
<g
id="ATTflag">
<rect <rect
y="720.3349" y="720.3349"
x="330.414" x="304.32764"
height="91.330338" height="91.330338"
width="363.17239" width="406.27161"
id="rect4448" id="attRstRect"
style="fill:#c9d121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:#c9d121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.17302;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<text <text
inkscape:label="#text979" inkscape:label="#text979"
transform="scale(1.0000144,0.9999856)" transform="scale(1.0000144,0.9999856)"
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:0.75"
x="510.22949" x="510.22949"
y="796.40295" y="796.4032"
id="text4462"><tspan id="attRst"><tspan
sodipodi:role="line" sodipodi:role="line"
id="tspan4464" id="tspan1152"
x="510.22949" x="510.22949"
y="796.40295" y="796.4032"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke-width:0.75">INIT 90s</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke-width:0.75">ATT : RST</tspan></text>
<rect <rect
style="fill:#c9d121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect4466" id="ATTflag_rect"
width="243.81277"
height="91.330353"
x="16"
y="503.70544" />
<text
id="text4468"
y="579.77039"
x="137.55525"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:0.75"
xml:space="preserve"
transform="scale(1.0000144,0.9999856)"
inkscape:label="#text979"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke-width:0.75"
y="579.77039"
x="137.55525"
id="tspan4470"
sodipodi:role="line">SPD</tspan></text>
<rect
y="503.70544"
x="764.18719"
height="91.330353"
width="243.81277"
id="rect4472"
style="fill:#c9d121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<text
inkscape:label="#text979"
transform="scale(1.0000144,0.9999856)"
xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:0.75"
x="885.73169"
y="579.77039"
id="text4474"><tspan
sodipodi:role="line"
id="tspan4476"
x="885.73169"
y="579.77039"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke-width:0.75">ALT</tspan></text>
<rect
style="fill:#c9d121;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
id="rect4484"
width="243.81277" width="243.81277"
height="91.330353" height="91.330353"
x="390.0936" x="390.0936"
y="287.07605" /> y="287.07605" />
<text <text
id="text4486" id="ATTflag_text"
y="363.13785" y="363.13785"
x="511.64346" x="511.64346"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0.75"
xml:space="preserve" xml:space="preserve"
transform="scale(1.0000144,0.9999856)" transform="scale(1.0000144,0.9999856)"
inkscape:label="#text979"><tspan inkscape:label="ATTflag_text"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#000000;fill-opacity:1;stroke-width:0.75" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#ff0000;fill-opacity:1;stroke-width:0.75"
y="363.13785" y="363.13785"
x="511.64346" x="511.64346"
id="tspan4488" id="tspan1141"
sodipodi:role="line">ATT</tspan></text> sodipodi:role="line">ATT</tspan></text>
</g> </g>
<g <g
@ -158,7 +218,7 @@
inkscape:label="#g4312" inkscape:label="#g4312"
id="AI_background"> id="AI_background">
<rect <rect
style="opacity:1;fill:#47452e;fill-opacity:1;stroke:none;stroke-width:2.48752213;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" style="opacity:1;fill:#47452e;fill-opacity:1;stroke:none;stroke-width:2.48752;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="AI_ground" id="AI_ground"
width="1287.3096" width="1287.3096"
height="1536.7655" height="1536.7655"
@ -166,7 +226,7 @@
y="580.96881" y="580.96881"
inkscape:label="#rect5809" /> inkscape:label="#rect5809" />
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M -968.98051,576.16868 H 308.72909" d="M -968.98051,576.16868 H 308.72909"
id="path4602" id="path4602"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -178,10 +238,10 @@
height="1536.7656" height="1536.7656"
width="1287.3096" width="1287.3096"
id="AI_sky" id="AI_sky"
style="opacity:1;fill:#1fa7f8;fill-opacity:1;stroke:none;stroke-width:2.58921981;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> style="opacity:1;fill:#1fa7f8;fill-opacity:1;stroke:none;stroke-width:2.58922;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g> </g>
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 437.0192,370.16362 H 550.81858" d="M 437.0192,370.16362 H 550.81858"
id="path4328" id="path4328"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -191,9 +251,9 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4330" id="path4330"
d="m 478.8848,411.41322 h 30.07794" d="m 478.8848,411.41322 h 30.07794"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 464.4576,452.87162 h 58.9279" d="m 464.4576,452.87162 h 58.9279"
id="path4342" id="path4342"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -212,7 +272,7 @@
id="tspan4440-9" id="tspan4440-9"
sodipodi:role="line">10</tspan></text> sodipodi:role="line">10</tspan></text>
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 478.8848,494.1216 h 30.07794" d="m 478.8848,494.1216 h 30.07794"
id="path4354" id="path4354"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -222,9 +282,9 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4356" id="path4356"
d="M 437.0192,204.95642 H 550.81858" d="M 437.0192,204.95642 H 550.81858"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 478.8848,246.20602 h 30.07794" d="m 478.8848,246.20602 h 30.07794"
id="path4359" id="path4359"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -234,7 +294,7 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4361" id="path4361"
d="m 464.4576,287.66442 h 58.9279" d="m 464.4576,287.66442 h 58.9279"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75"
@ -253,9 +313,9 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4367" id="path4367"
d="m 478.8848,328.9144 h 30.07794" d="m 478.8848,328.9144 h 30.07794"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 437.0192,39.74922 H 550.81858" d="M 437.0192,39.74922 H 550.81858"
id="path4381" id="path4381"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -265,9 +325,9 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4383" id="path4383"
d="m 478.8848,80.99882 h 30.07794" d="m 478.8848,80.99882 h 30.07794"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 464.4576,122.45722 h 58.9279" d="m 464.4576,122.45722 h 58.9279"
id="path4385" id="path4385"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -286,7 +346,7 @@
id="tspan4389" id="tspan4389"
sodipodi:role="line">30</tspan></text> sodipodi:role="line">30</tspan></text>
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 478.8848,163.7072 h 30.07794" d="m 478.8848,163.7072 h 30.07794"
id="path4391" id="path4391"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -296,7 +356,7 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4393" id="path4393"
d="m 437.0192,-133.2965 113.79938,9e-5" d="m 437.0192,-133.2965 113.79938,9e-5"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75"
@ -311,7 +371,7 @@
y="-102.35725" y="-102.35725"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:72px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.75">40</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:72px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.75">40</tspan></text>
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60002518;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60003;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 422.019,-298.5035 143.79971,-1e-4" d="m 422.019,-298.5035 143.79971,-1e-4"
id="path4405" id="path4405"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -334,7 +394,7 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4441" id="path4441"
d="M 409.24083,-546.31398 H 578.59685" d="M 409.24083,-546.31398 H 578.59685"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:11.71118736;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:11.7112;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75"
@ -353,21 +413,21 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4465" id="path4465"
d="M 437.0192,700.3688 H 550.81858" d="M 437.0192,700.3688 H 550.81858"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<path <path
sodipodi:nodetypes="cc" sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4467" id="path4467"
d="m 478.8848,576.4112 h 30.07794" d="m 478.8848,576.4112 h 30.07794"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 464.4576,617.8696 h 58.9279" d="m 464.4576,617.8696 h 58.9279"
id="path4469" id="path4469"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /> sodipodi:nodetypes="cc" />
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 478.8848,659.11958 h 30.07794" d="m 478.8848,659.11958 h 30.07794"
id="path4471" id="path4471"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -386,13 +446,13 @@
y="693.37048" y="693.37048"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:72px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.75">10</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:72px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.75">10</tspan></text>
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 437.0192,865.36718 H 550.81858" d="M 437.0192,865.36718 H 550.81858"
id="path4477" id="path4477"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /> sodipodi:nodetypes="cc" />
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 478.8848,741.40958 h 30.07794" d="m 478.8848,741.40958 h 30.07794"
id="path4479" id="path4479"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -402,13 +462,13 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4481" id="path4481"
d="m 464.4576,782.86798 h 58.9279" d="m 464.4576,782.86798 h 58.9279"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<path <path
sodipodi:nodetypes="cc" sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4483" id="path4483"
d="m 478.8848,824.11796 h 30.07794" d="m 478.8848,824.11796 h 30.07794"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<text <text
inkscape:label="#text975" inkscape:label="#text975"
transform="scale(0.95383278,1.0484018)" transform="scale(0.95383278,1.0484018)"
@ -427,21 +487,21 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4489" id="path4489"
d="M 437.0192,1030.3657 H 550.81858" d="M 437.0192,1030.3657 H 550.81858"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<path <path
sodipodi:nodetypes="cc" sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4491" id="path4491"
d="m 478.8848,906.40805 h 30.07794" d="m 478.8848,906.40805 h 30.07794"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 464.4576,947.86645 h 58.9279" d="m 464.4576,947.86645 h 58.9279"
id="path4493" id="path4493"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" /> sodipodi:nodetypes="cc" />
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 478.8848,989.11645 h 30.07794" d="m 478.8848,989.11645 h 30.07794"
id="path4495" id="path4495"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -460,7 +520,7 @@
y="1008.1322" y="1008.1322"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:72px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.75">30</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:72px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.75">30</tspan></text>
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 437.0192,1195.3645 113.79938,-4e-4" d="m 437.0192,1195.3645 113.79938,-4e-4"
id="path4501" id="path4501"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -483,7 +543,7 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4513" id="path4513"
d="m 422.01904,1360.363 143.79963,-4e-4" d="m 422.01904,1360.363 143.79963,-4e-4"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60008335;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60008;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75"
@ -498,7 +558,7 @@
y="1322.894" y="1322.894"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:72px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.75">50</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:72px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.75">50</tspan></text>
<path <path
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:11.70345592;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:11.7035;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 409.35289,1608.1735 H 578.48483" d="M 409.35289,1608.1735 H 578.48483"
id="path4549" id="path4549"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -524,9 +584,9 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path883" id="path883"
d="m 455.77807,-179.16645 13.2497,9e-5 26.49939,55.28318 26.49939,-55.28318 h 13.2497 l -39.74909,87.686925 z" d="m 455.77807,-179.16645 13.2497,9e-5 26.49939,55.28318 26.49939,-55.28318 h 13.2497 l -39.74909,87.686925 z"
style="fill:none;stroke:#ff0000;stroke-width:5.69999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> style="fill:none;stroke:#ff0000;stroke-width:5.7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
style="fill:none;stroke:#ff0000;stroke-width:6.5999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;stroke:#ff0000;stroke-width:6.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 435.90352,-490.52034 19.87455,-2e-5 39.74909,82.92471 39.74909,-82.92471 h 19.87455 l -59.62364,131.53037 z" d="m 435.90352,-490.52034 19.87455,-2e-5 39.74909,82.92471 39.74909,-82.92471 h 19.87455 l -59.62364,131.53037 z"
id="path1765" id="path1765"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -536,15 +596,15 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path884" id="path884"
d="m 495.52716,-564.83101 -66.90421,-59.14217 h 59.49741 v 14.7583 h -11.11022 l 18.51702,19.61514 18.51702,-19.61514 h -11.11022 v -14.7583 h 59.49741 z" d="m 495.52716,-564.83101 -66.90421,-59.14217 h 59.49741 v 14.7583 h -11.11022 l 18.51702,19.61514 18.51702,-19.61514 h -11.11022 v -14.7583 h 59.49741 z"
style="fill:none;stroke:#ff0000;stroke-width:7.42500973;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> style="fill:none;stroke:#ff0000;stroke-width:7.42501;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
style="fill:none;stroke:#ff0000;stroke-width:5.69999981;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;stroke:#ff0000;stroke-width:5.7;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 535.27624,1241.2344 -13.2497,-10e-5 -26.49939,-55.2831 -26.49939,55.2831 h -13.2497 l 39.74909,-87.6869 z" d="m 535.27624,1241.2344 -13.2497,-10e-5 -26.49939,-55.2831 -26.49939,55.2831 h -13.2497 l 39.74909,-87.6869 z"
id="path1121" id="path1121"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccc" /> sodipodi:nodetypes="ccccccc" />
<path <path
style="fill:none;stroke:#ff0000;stroke-width:7.42500973;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;stroke:#ff0000;stroke-width:7.42501;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 495.52716,1626.6904 66.90421,59.1422 h -59.49741 v -14.7583 h 11.11022 l -18.51702,-19.6151 -18.51702,19.6151 h 11.11022 v 14.7583 h -59.49741 z" d="m 495.52716,1626.6904 66.90421,59.1422 h -59.49741 v -14.7583 h 11.11022 l -18.51702,-19.6151 -18.51702,19.6151 h 11.11022 v 14.7583 h -59.49741 z"
id="path1123" id="path1123"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -554,11 +614,11 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path1125" id="path1125"
d="m 555.1508,1552.3798 h -19.87455 l -39.74909,-82.9247 -39.74909,82.9247 h -19.87455 l 59.62364,-131.5304 z" d="m 555.1508,1552.3798 h -19.87455 l -39.74909,-82.9247 -39.74909,82.9247 h -19.87455 l 59.62364,-131.5304 z"
style="fill:none;stroke:#ff0000;stroke-width:6.5999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> style="fill:none;stroke:#ff0000;stroke-width:6.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g> </g>
</g> </g>
<rect <rect
style="opacity:1;fill:#1fa7f8;fill-opacity:1;stroke:none;stroke-width:2.58921981;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" style="opacity:1;fill:#1fa7f8;fill-opacity:1;stroke:none;stroke-width:2.58922;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="AI_sky_bank" id="AI_sky_bank"
width="663.18652" width="663.18652"
height="124.96" height="124.96"
@ -566,7 +626,7 @@
y="138.78481" y="138.78481"
inkscape:label="#rect5809" /> inkscape:label="#rect5809" />
<rect <rect
style="opacity:0.5;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:10.06530666;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" style="opacity:0.5;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:10.0653;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
id="AI_bank_scale_clip" id="AI_bank_scale_clip"
width="663.21997" width="663.21997"
height="229.7616" height="229.7616"
@ -574,7 +634,7 @@
y="138.67441" y="138.67441"
inkscape:label="#rect1094" /> inkscape:label="#rect1094" />
<rect <rect
style="opacity:0.46000001;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:1.27696717;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="opacity:0.46;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:1.27697;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="AI_horizon_clip" id="AI_horizon_clip"
width="663.21997" width="663.21997"
height="608.67889" height="608.67889"
@ -582,7 +642,7 @@
y="263.74457" y="263.74457"
inkscape:label="#rect9211" /> inkscape:label="#rect9211" />
<rect <rect
style="opacity:0.46000001;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:1.27696717;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="opacity:0.46;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:1.27697;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="ALT_scale_clip" id="ALT_scale_clip"
width="149.44177" width="149.44177"
height="733.63824" height="733.63824"
@ -797,7 +857,7 @@
height="733.63824" height="733.63824"
width="149.442" width="149.442"
id="ASI_scale_clip" id="ASI_scale_clip"
style="opacity:0.46000001;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:1.27696717;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> style="opacity:0.46;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:1.27697;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect <rect
y="494.39908" y="494.39908"
x="162.20856" x="162.20856"
@ -807,7 +867,7 @@
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<path <path
inkscape:label="#path905" inkscape:label="#path905"
style="fill:#c9d121;fill-opacity:1;stroke:none;stroke-width:2.71116304;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:#c9d121;fill-opacity:1;stroke:none;stroke-width:2.71116;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 208.99735,575.7414 v -76.791 l -44.33886,38.3955 z" d="m 208.99735,575.7414 v -76.791 l -44.33886,38.3955 z"
id="path928" id="path928"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -839,7 +899,7 @@
id="tspan4668" id="tspan4668"
sodipodi:role="line">.</tspan></text> sodipodi:role="line">.</tspan></text>
<rect <rect
style="opacity:0.46000001;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:1.27696717;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="opacity:0.46;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:1.27697;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="ALT_tens_clip" id="ALT_tens_clip"
width="115.84177" width="115.84177"
height="132.67148" height="132.67148"
@ -895,57 +955,57 @@
id="tspan911" id="tspan911"
x="923.88269" x="923.88269"
y="64.852898" y="64.852898"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30.83641052px;line-height:94.99999881%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75"> </tspan><tspan style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30.8364px;line-height:95%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75"> </tspan><tspan
id="tspan919" id="tspan919"
sodipodi:role="line" sodipodi:role="line"
x="923.88269" x="923.88269"
y="120.74973" y="120.74973"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87.00000048%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">40</tspan><tspan style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">40</tspan><tspan
id="tspan4300" id="tspan4300"
sodipodi:role="line" sodipodi:role="line"
x="923.88269" x="923.88269"
y="181.64972" y="181.64972"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87.00000048%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">20</tspan><tspan style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">20</tspan><tspan
id="tspan931" id="tspan931"
sodipodi:role="line" sodipodi:role="line"
x="923.88269" x="923.88269"
y="242.54973" y="242.54973"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87.00000048%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">00</tspan><tspan style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">00</tspan><tspan
id="tspan927" id="tspan927"
sodipodi:role="line" sodipodi:role="line"
x="923.88269" x="923.88269"
y="303.44974" y="303.44974"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87.00000048%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">80</tspan><tspan style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">80</tspan><tspan
id="tspan925" id="tspan925"
sodipodi:role="line" sodipodi:role="line"
x="923.88269" x="923.88269"
y="364.34973" y="364.34973"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87.00000048%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">60</tspan><tspan style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">60</tspan><tspan
id="tspan923" id="tspan923"
sodipodi:role="line" sodipodi:role="line"
x="923.88269" x="923.88269"
y="425.24973" y="425.24973"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87.00000048%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">40</tspan><tspan style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">40</tspan><tspan
id="tspan921" id="tspan921"
sodipodi:role="line" sodipodi:role="line"
x="923.88269" x="923.88269"
y="486.14972" y="486.14972"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87.00000048%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">20</tspan><tspan style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">20</tspan><tspan
id="tspan917" id="tspan917"
sodipodi:role="line" sodipodi:role="line"
x="923.88269" x="923.88269"
y="547.04974" y="547.04974"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87.00000048%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">00</tspan><tspan style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">00</tspan><tspan
id="tspan915" id="tspan915"
sodipodi:role="line" sodipodi:role="line"
x="923.88269" x="923.88269"
y="607.94971" y="607.94971"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87.00000048%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">80</tspan><tspan style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">80</tspan><tspan
id="tspan4302" id="tspan4302"
sodipodi:role="line" sodipodi:role="line"
x="923.88269" x="923.88269"
y="668.84973" y="668.84973"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87.00000048%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">60</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;line-height:87%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#0dc04b;fill-opacity:1;stroke-width:0.75">60</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:0.75"
@ -962,7 +1022,7 @@
<text <text
inkscape:label="#text975" inkscape:label="#text975"
transform="scale(0.95383277,1.0484018)" transform="scale(0.95383277,1.0484018)"
id="text4305" id="metricM"
y="98.899239" y="98.899239"
x="865.3996" x="865.3996"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#179ab7;fill-opacity:1;stroke:none;stroke-width:0.75"
@ -975,7 +1035,7 @@
<path <path
sodipodi:nodetypes="ccccc" sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path977" id="metricBox"
d="m 832.0951,113.3344 -384.0688,1.5e-4 V 37.703512 l 384.0688,-2e-5 2.6e-4,75.630908" d="m 832.0951,113.3344 -384.0688,1.5e-4 V 37.703512 l 384.0688,-2e-5 2.6e-4,75.630908"
style="fill:none;fill-opacity:1;stroke:#ffff00;stroke-width:8;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> style="fill:none;fill-opacity:1;stroke:#ffff00;stroke-width:8;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" />
<g <g
@ -983,7 +1043,7 @@
inkscape:label="#g4337" inkscape:label="#g4337"
transform="translate(0,0.14142136)"> transform="translate(0,0.14142136)">
<rect <rect
style="fill:#000000;fill-opacity:1;stroke:#c9d121;stroke-width:7.93546295;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:#000000;fill-opacity:1;stroke:#c9d121;stroke-width:7.93546;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="AI_center" id="AI_center"
width="33.584038" width="33.584038"
height="34.622162" height="34.622162"
@ -994,7 +1054,7 @@
id="g4844" id="g4844"
transform="matrix(1.4686607,0,0,1.4686142,-2.0784215,-172.08976)"> transform="matrix(1.4686607,0,0,1.4686142,-2.0784215,-172.08976)">
<rect <rect
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:8.10005665;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:8.10006;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4756-1" id="rect4756-1"
width="75.604637" width="75.604637"
height="12.91507" height="12.91507"
@ -1006,13 +1066,13 @@
height="14.347565" height="14.347565"
width="12.428999" width="12.428999"
id="rect4839" id="rect4839"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.3055582;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.30556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path <path
sodipodi:nodetypes="cccccccccccc" sodipodi:nodetypes="cccccccccccc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="rect4760-1" id="rect4760-1"
d="m 260.72373,473.84829 20.67975,-1.3e-4 v 15.43882 0 l 1.8e-4,12.84989 h -15.4389 l -0.14628,-12.84989 v 0 l -62.58577,-5e-5 v -15.43891 l 57.49102,2.1e-4 z" d="m 260.72373,473.84829 20.67975,-1.3e-4 v 15.43882 0 l 1.8e-4,12.84989 h -15.4389 l -0.14628,-12.84989 v 0 l -62.58577,-5e-5 v -15.43891 l 57.49102,2.1e-4 z"
style="fill:none;fill-opacity:1;stroke:#c9d121;stroke-width:3.54375005;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> style="fill:none;fill-opacity:1;stroke:#c9d121;stroke-width:3.54375;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g> </g>
<g <g
transform="matrix(-1.4686607,0,0,1.4686142,989.92242,-172.08976)" transform="matrix(-1.4686607,0,0,1.4686142,989.92242,-172.08976)"
@ -1023,16 +1083,16 @@
height="12.91507" height="12.91507"
width="75.604637" width="75.604637"
id="rect4327" id="rect4327"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:8.10005665;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:8.10006;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect <rect
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.3055582;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.30556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4329" id="rect4329"
width="12.428999" width="12.428999"
height="14.347565" height="14.347565"
x="267.34641" x="267.34641"
y="486.37204" /> y="486.37204" />
<path <path
style="fill:none;fill-opacity:1;stroke:#c9d121;stroke-width:3.54375005;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="fill:none;fill-opacity:1;stroke:#c9d121;stroke-width:3.54375;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 260.72373,473.84829 20.67975,-1.3e-4 v 15.43882 0 l 1.8e-4,12.84989 h -15.4389 l -0.14628,-12.84989 v 0 l -62.58577,-5e-5 v -15.43891 l 57.49102,2.1e-4 z" d="m 260.72373,473.84829 20.67975,-1.3e-4 v 15.43882 0 l 1.8e-4,12.84989 h -15.4389 l -0.14628,-12.84989 v 0 l -62.58577,-5e-5 v -15.43891 l 57.49102,2.1e-4 z"
id="path4331" id="path4331"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -1044,13 +1104,13 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="AI_bank_center" id="AI_bank_center"
d="m 529.71671,148.28357 h -71.591 l 35.7955,44.80749 z" d="m 529.71671,148.28357 h -71.591 l 35.7955,44.80749 z"
style="fill:#c9d121;fill-opacity:1;stroke:none;stroke-width:2.71116304;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:#c9d121;fill-opacity:1;stroke:none;stroke-width:2.71116;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
inkscape:label="#path905" /> inkscape:label="#path905" />
<g <g
id="AI_bank_scale" id="AI_bank_scale"
inkscape:label="#g4440"> inkscape:label="#g4440">
<path <path
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:9.63932705;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:9.63933;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 317.88376,240.26836 c 108.99082,-62.67251 243.08331,-62.67251 352.07413,-1e-5" d="m 317.88376,240.26836 c 108.99082,-62.67251 243.08331,-62.67251 352.07413,-1e-5"
id="path4693" id="path4693"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -1058,7 +1118,7 @@
<path <path
inkscape:transform-center-x="-182.2295" inkscape:transform-center-x="-182.2295"
inkscape:transform-center-y="-315.63076" inkscape:transform-center-y="-315.63076"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 667.59913,234.73514 17.09461,-29.60873" d="m 667.59913,234.73514 17.09461,-29.60873"
id="path4397-0" id="path4397-0"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -1069,7 +1129,7 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4710" id="path4710"
d="m 433.59773,193.47438 -5.93689,-33.6698" d="m 433.59773,193.47438 -5.93689,-33.6698"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
inkscape:transform-center-y="-358.92205" /> inkscape:transform-center-y="-358.92205" />
<path <path
inkscape:transform-center-x="-63.287645" inkscape:transform-center-x="-63.287645"
@ -1077,7 +1137,7 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4712" id="path4712"
d="m 554.23613,193.47438 5.93689,-33.6698" d="m 554.23613,193.47438 5.93689,-33.6698"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
inkscape:transform-center-y="-358.92205" /> inkscape:transform-center-y="-358.92205" />
<path <path
inkscape:transform-center-x="-124.65232" inkscape:transform-center-x="-124.65232"
@ -1085,7 +1145,7 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4714" id="path4714"
d="m 612.72255,209.14577 11.6934,-32.12735" d="m 612.72255,209.14577 11.6934,-32.12735"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
inkscape:transform-center-y="-342.47944" /> inkscape:transform-center-y="-342.47944" />
<path <path
inkscape:transform-center-x="124.65232" inkscape:transform-center-x="124.65232"
@ -1093,7 +1153,7 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4716" id="path4716"
d="m 375.11131,209.14577 -11.6934,-32.12735" d="m 375.11131,209.14577 -11.6934,-32.12735"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
inkscape:transform-center-y="-342.47944" /> inkscape:transform-center-y="-342.47944" />
<path <path
inkscape:transform-center-x="182.22951" inkscape:transform-center-x="182.22951"
@ -1101,11 +1161,11 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path4718" id="path4718"
d="M 320.23473,234.73514 303.14012,205.12641" d="M 320.23473,234.73514 303.14012,205.12641"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
inkscape:transform-center-y="-315.63076" /> inkscape:transform-center-y="-315.63076" />
<path <path
inkscape:transform-center-y="-257.71143" inkscape:transform-center-y="-257.71143"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 248.29321,289.93781 224.11778,265.76239" d="M 248.29321,289.93781 224.11778,265.76239"
id="path1086" id="path1086"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -1117,20 +1177,20 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path1088" id="path1088"
d="m 193.09054,361.87933 -29.60873,-17.0946" d="m 193.09054,361.87933 -29.60873,-17.0946"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
inkscape:transform-center-y="-182.2295" /> inkscape:transform-center-y="-182.2295" />
<path <path
sodipodi:nodetypes="cc" sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="path1090" id="path1090"
d="m 739.54065,289.93781 24.17543,-24.17543" d="m 739.54065,289.93781 24.17543,-24.17543"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
inkscape:transform-center-y="-257.71144" inkscape:transform-center-y="-257.71144"
inkscape:transform-center-x="-257.71143" /> inkscape:transform-center-x="-257.71143" />
<path <path
inkscape:transform-center-x="-315.63076" inkscape:transform-center-x="-315.63076"
inkscape:transform-center-y="-182.22951" inkscape:transform-center-y="-182.22951"
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.60000038;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:9.6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 794.74332,361.87933 29.60874,-17.09461" d="m 794.74332,361.87933 29.60874,-17.09461"
id="path1092" id="path1092"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -1147,11 +1207,11 @@
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
id="AI_bankt" id="AI_bankt"
d="m 433.21105,267.08957 30.0845,-10e-6 -15.04225,-25.28563 z" d="m 433.21105,267.08957 30.0845,-10e-6 -15.04225,-25.28563 z"
style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:3.99994254;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:3.99994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
inkscape:label="#path905" inkscape:label="#path905"
inkscape:transform-center-y="-258.88333" /> inkscape:transform-center-y="-258.88333" />
<path <path
style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:3.99994254;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:3.99994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 418.32961,292.18309 59.8472,-3e-5 -8.6432,-14.52797 h -42.5608 z" d="m 418.32961,292.18309 59.8472,-3e-5 -8.6432,-14.52797 h -42.5608 z"
id="AI_slipskid" id="AI_slipskid"
inkscape:connector-curvature="0" inkscape:connector-curvature="0"
@ -1161,7 +1221,7 @@
</g> </g>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:1.25;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75"
x="709.31647" x="709.31647"
y="462.7554" y="462.7554"
id="negText" id="negText"
@ -1170,20 +1230,20 @@
id="tspan1134" id="tspan1134"
x="709.31647" x="709.31647"
y="462.7554" y="462.7554"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#ffffff;fill-opacity:1;stroke-width:0.75">N</tspan><tspan style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#ffffff;fill-opacity:1;stroke-width:0.75">N</tspan><tspan
sodipodi:role="line" sodipodi:role="line"
x="709.31647" x="709.31647"
y="570.25537" y="570.25537"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#ffffff;fill-opacity:1;stroke-width:0.75" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#ffffff;fill-opacity:1;stroke-width:0.75"
id="tspan1138">E</tspan><tspan id="tspan1138">E</tspan><tspan
sodipodi:role="line" sodipodi:role="line"
x="709.31647" x="709.31647"
y="677.75537" y="677.75537"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#ffffff;fill-opacity:1;stroke-width:0.75" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:86px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#ffffff;fill-opacity:1;stroke-width:0.75"
id="tspan1140">G</tspan></text> id="tspan1140">G</tspan></text>
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:30px;line-height:1.25;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Bitstream Vera Sans';-inkscape-font-specification:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.75"
x="452.25" x="452.25"
y="100.9375" y="100.9375"
id="negText2" id="negText2"
@ -1192,7 +1252,7 @@
id="tspan1139" id="tspan1139"
x="452.25" x="452.25"
y="100.9375" y="100.9375"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#ffffff;fill-opacity:1;stroke-width:0.75">NEG</tspan></text> style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:74px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#ffffff;fill-opacity:1;stroke-width:0.75">NEG</tspan></text>
<g <g
id="ASI_scale" id="ASI_scale"
inkscape:label="#g1574"> inkscape:label="#g1574">
@ -1836,7 +1896,7 @@
sodipodi:nodetypes="cc" /> sodipodi:nodetypes="cc" />
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:12px;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75"
x="152.6562" x="152.6562"
y="-2704.3638" y="-2704.3638"
id="text4272-0" id="text4272-0"
@ -1865,7 +1925,7 @@
id="text4280-7" id="text4280-7"
y="-2862.5476" y="-2862.5476"
x="152.6562" x="152.6562"
style="font-style:normal;font-weight:normal;font-size:12px;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75"
xml:space="preserve"><tspan xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:75px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.75" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:75px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.75"
y="-2862.5476" y="-2862.5476"
@ -1886,7 +1946,7 @@
sodipodi:nodetypes="cc" /> sodipodi:nodetypes="cc" />
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:12px;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75"
x="152.6562" x="152.6562"
y="-3020.7312" y="-3020.7312"
id="text4288-2" id="text4288-2"
@ -1915,7 +1975,7 @@
id="text4296-7" id="text4296-7"
y="-3178.9148" y="-3178.9148"
x="152.6562" x="152.6562"
style="font-style:normal;font-weight:normal;font-size:12px;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75"
xml:space="preserve"><tspan xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:75px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.75" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:75px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke-width:0.75"
y="-3178.9148" y="-3178.9148"
@ -1936,7 +1996,7 @@
sodipodi:nodetypes="cc" /> sodipodi:nodetypes="cc" />
<text <text
xml:space="preserve" xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:12px;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75" style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.75"
x="152.6562" x="152.6562"
y="-3337.0984" y="-3337.0984"
id="text4304-2" id="text4304-2"

Before

Width:  |  Height:  |  Size: 115 KiB

After

Width:  |  Height:  |  Size: 118 KiB

View file

@ -6,7 +6,6 @@
var dualFailNode = props.globals.initNode("/ECAM/dual-failure-enabled", 0, "BOOL"); var dualFailNode = props.globals.initNode("/ECAM/dual-failure-enabled", 0, "BOOL");
var apWarn = props.globals.getNode("/it-autoflight/output/ap-warning", 1); var apWarn = props.globals.getNode("/it-autoflight/output/ap-warning", 1);
var athrWarn = props.globals.getNode("/it-autoflight/output/athr-warning", 1); var athrWarn = props.globals.getNode("/it-autoflight/output/athr-warning", 1);
var emerGen = props.globals.getNode("/controls/electrical/switches/emer-gen", 1);
var acconfig_weight_kgs = props.globals.getNode("/systems/acconfig/options/weight-kgs", 1); var acconfig_weight_kgs = props.globals.getNode("/systems/acconfig/options/weight-kgs", 1);
var state1Node = props.globals.getNode("/engines/engine[0]/state", 1); var state1Node = props.globals.getNode("/engines/engine[0]/state", 1);

View file

@ -165,6 +165,17 @@ var toggleSTD = func() {
} }
} }
var toggleSTDIESI = func() {
if (pts.Instrumentation.Altimeter.stdIESI.getBoolValue()) {
pts.Instrumentation.Altimeter.settingInhgIESI.setValue(pts.Instrumentation.Altimeter.oldQnhIESI.getValue());
pts.Instrumentation.Altimeter.stdIESI.setBoolValue(0);
} else {
pts.Instrumentation.Altimeter.oldQnhIESI.setValue(pts.Instrumentation.Altimeter.settingInhgIESI.getValue());
pts.Instrumentation.Altimeter.settingInhgIESI.setValue(29.92);
pts.Instrumentation.Altimeter.stdIESI.setBoolValue(1);
}
}
# Commonality # Commonality
var apPanel = { var apPanel = {
apDisc: func() { apDisc: func() {

View file

@ -165,6 +165,10 @@ var Instrumentation = {
oldQnh: props.globals.getNode("/instrumentation/altimeter[0]/oldqnh"), oldQnh: props.globals.getNode("/instrumentation/altimeter[0]/oldqnh"),
settingInhg: props.globals.getNode("/instrumentation/altimeter[0]/setting-inhg"), settingInhg: props.globals.getNode("/instrumentation/altimeter[0]/setting-inhg"),
std: props.globals.getNode("/instrumentation/altimeter[0]/std"), std: props.globals.getNode("/instrumentation/altimeter[0]/std"),
indicatedFtIESI: props.globals.getNode("/instrumentation/altimeter[6]/indicated-altitude-ft"),
oldQnhIESI: props.globals.getNode("/instrumentation/altimeter[6]/oldqnh"),
settingInhgIESI: props.globals.getNode("/instrumentation/altimeter[6]/setting-inhg"),
stdIESI: props.globals.getNode("/instrumentation/altimeter[6]/std"),
}, },
Clock: { Clock: {
indicatedString: props.globals.getNode("/instrumentation/clock/indicated-string"), indicatedString: props.globals.getNode("/instrumentation/clock/indicated-string"),

View file

@ -0,0 +1,60 @@
# Octal's Distance Zooming
# Copyright (c) 2020 Josh Davidson (Octal450)
# Based on PropertyRule file by onox
var distance = 0;
var min_dist = 0;
var max_dist = 0;
var canChangeZOffset = 0;
var decStep = -5;
var incStep = 5;
var fovZoom = func(d) {
canChangeZOffset = pts.Sim.CurrentView.name.getValue() == "Helicopter View";
if (pts.Sim.CurrentView.zOffsetM.getValue() <= -50) {
decStep = -10;
} else {
decStep = -5;
}
if (pts.Sim.CurrentView.zOffsetM.getValue() < -50) { # Not a typo, the conditions are different
incStep = 10;
} else {
incStep = 5;
}
if (d == -1) {
if (canChangeZOffset) {
distance = pts.Sim.CurrentView.zOffsetM.getValue();
min_dist = pts.Sim.CurrentView.zOffsetMinM.getValue();
distance = math.round(std.min(-min_dist, distance + incStep) / incStep, 0.1) * incStep;
pts.Sim.CurrentView.zOffsetM.setValue(distance);
gui.popupTip(sprintf("%d meters", abs(distance)));
} else {
view.decrease();
}
} else if (d == 1) {
if (canChangeZOffset) {
distance = pts.Sim.CurrentView.zOffsetM.getValue();
max_dist = pts.Sim.CurrentView.zOffsetMaxM.getValue();
distance = math.round(std.max(-max_dist, distance + decStep) / decStep, 0.1) * decStep;
pts.Sim.CurrentView.zOffsetM.setValue(distance);
gui.popupTip(sprintf("%d meters", abs(distance)));
} else {
view.increase();
}
} else if (d == 0) {
if (canChangeZOffset) {
pts.Sim.CurrentView.zOffsetM.setValue(pts.Sim.CurrentView.zOffsetDefault.getValue() * -1);
gui.popupTip(sprintf("%d meters", pts.Sim.CurrentView.zOffsetDefault.getValue()));
} else {
pts.Sim.CurrentView.fieldOfView.setValue(pts.Sim.View.Config.defaultFieldOfViewDeg.getValue());
gui.popupTip(sprintf("FOV: %.1f", pts.Sim.CurrentView.fieldOfView.getValue()));
}
}
}

View file

@ -26,7 +26,9 @@ var ELEC = {
dc1: props.globals.getNode("/systems/electrical/bus/dc-1"), dc1: props.globals.getNode("/systems/electrical/bus/dc-1"),
dc2: props.globals.getNode("/systems/electrical/bus/dc-2"), dc2: props.globals.getNode("/systems/electrical/bus/dc-2"),
dcHot1: props.globals.getNode("/systems/electrical/bus/dc-hot-1"), dcHot1: props.globals.getNode("/systems/electrical/bus/dc-hot-1"),
dcHot1703: props.globals.getNode("/systems/electrical/bus/sub-bus/dc-hot-1-703"),
dcHot2: props.globals.getNode("/systems/electrical/bus/dc-hot-2"), dcHot2: props.globals.getNode("/systems/electrical/bus/dc-hot-2"),
dcHot2704: props.globals.getNode("/systems/electrical/bus/sub-bus/dc-hot-2-704"),
}, },
Fail: { Fail: {
acEssBusFault: props.globals.getNode("/systems/failures/electrical/ac-ess-bus"), acEssBusFault: props.globals.getNode("/systems/failures/electrical/ac-ess-bus"),
@ -264,6 +266,7 @@ var input = {
"dcEss": "/systems/electrical/bus/dc-ess", "dcEss": "/systems/electrical/bus/dc-ess",
"dcEssShed": "/systems/electrical/bus/dc-ess-shed", "dcEssShed": "/systems/electrical/bus/dc-ess-shed",
"dcHot1": "/systems/electrical/bus/dc-hot-1", "dcHot1": "/systems/electrical/bus/dc-hot-1",
"dcHot1703": "/systems/electrical/bus/sub-bus/dc-hot-1-703",
"dcHot2": "/systems/electrical/bus/dc-hot-2", "dcHot2": "/systems/electrical/bus/dc-hot-2",
}; };

View file

@ -91,7 +91,10 @@
<name>altimeter</name> <!-- standby, measure directly, not via ADR --> <name>altimeter</name> <!-- standby, measure directly, not via ADR -->
<number>6</number> <number>6</number>
<static-pressure>/systems/static[2]/pressure-inhg</static-pressure> <static-pressure>/systems/static[2]/pressure-inhg</static-pressure>
<quantum>0</quantum>
<tau>0.1</tau> <tau>0.1</tau>
<encode-mode-c>0</encode-mode-c>
<encode-mode-s>0</encode-mode-s>
</altimeter> </altimeter>
<attitude-indicator> <attitude-indicator>

View file

@ -543,11 +543,11 @@
<expression> <expression>
<table> <table>
<property>/fdm/jsbsim/accelerations/Ny</property> <property>/fdm/jsbsim/accelerations/Ny</property>
<entry><ind>-0.20</ind><dep>-105</dep></entry> <entry><ind>-0.20</ind><dep>-85</dep></entry>
<entry><ind>-0.01</ind><dep> 0</dep></entry> <entry><ind>-0.01</ind><dep> 0</dep></entry>
<entry><ind> 0.00</ind><dep> 0</dep></entry> <entry><ind> 0.00</ind><dep> 0</dep></entry>
<entry><ind> 0.01</ind><dep> 0</dep></entry> <entry><ind> 0.01</ind><dep> 0</dep></entry>
<entry><ind> 0.20</ind><dep> 105</dep></entry> <entry><ind> 0.20</ind><dep> 85</dep></entry>
</table> </table>
</expression> </expression>
</input> </input>