A3XX: Canvas MCDU Framework and First Pages

This commit is contained in:
Joshua Davidson 2017-12-07 13:31:29 -05:00
parent 47847b77d6
commit 2cfc6b39a9
12 changed files with 65511 additions and 2 deletions

View file

@ -1298,6 +1298,9 @@
<file>Aircraft/IDG-A32X/Models/Instruments/Upper-ECAM/Upper-ECAM.nas</file>
<file>Aircraft/IDG-A32X/Models/Instruments/Lower-ECAM/Lower-ECAM.nas</file>
</canvas_ecam>
<canvas_mcdu>
<file>Aircraft/IDG-A32X/Models/Instruments/MCDU/MCDU.nas</file>
</canvas_mcdu>
<icing>
<file>Aircraft/IDG-A32X/Nasal/icing.nas</file>
</icing>

View file

@ -144,7 +144,7 @@
<!-- Multi-purpose Control and Display Units -->
<model>
<path>Aircraft/IDG-A32X/Models/Instruments/MCDU1/MCDU1.xml</path>
<path>Aircraft/IDG-A32X/Models/Instruments/MCDU/MCDU1.xml</path>
<offsets>
<x-m>-0.35794</x-m>
<y-m>-0.18632</y-m>
@ -154,7 +154,7 @@
</model>
<model>
<path>Aircraft/IDG-A32X/Models/Instruments/MCDU2/MCDU2.xml</path>
<path>Aircraft/IDG-A32X/Models/Instruments/MCDU/MCDU2.xml</path>
<offsets>
<x-m>-0.35794</x-m>
<y-m>0.18632</y-m>

View file

@ -0,0 +1,685 @@
# A3XX MCDU
# Joshua Davidson (it0uchpods)
##############################################
# Copyright (c) Joshua Davidson (it0uchpods) #
##############################################
# MCDU Colors are different from Main Displays
# White: 1,1,1
# Blue: 0.0862,0.5176,0.6470
# Green: 0.0509,0.7529,0.2941
var MCDU_1 = nil;
var MCDU_2 = nil;
var MCDU1_display = nil;
var MCDU2_display = nil;
var default = "BoeingCDU-Large.ttf";
var bracket = "helvetica_medium.txf";
var normal = 70;
var small = 56;
var page = "";
var page1 = getprop("/MCDU[0]/page");
var page2 = getprop("/MCDU[1]/page");
var canvas_MCDU_base = {
init: func(canvas_group, file) {
var font_mapper = func(family, weight) {
return "BoeingCDU-Large.ttf";
};
canvas.parsesvg(canvas_group, file, {"font-mapper": font_mapper});
var svg_keys = me.getKeys();
foreach(var key; svg_keys) {
me[key] = canvas_group.getElementById(key);
var svg_keys = me.getKeys();
foreach (var key; svg_keys) {
me[key] = canvas_group.getElementById(key);
var clip_el = canvas_group.getElementById(key ~ "_clip");
if (clip_el != nil) {
clip_el.setVisible(0);
var tran_rect = clip_el.getTransformedBounds();
var clip_rect = sprintf("rect(%d,%d, %d,%d)",
tran_rect[1], # 0 ys
tran_rect[2], # 1 xe
tran_rect[3], # 2 ye
tran_rect[0]); #3 xs
# coordinates are top,right,bottom,left (ys, xe, ye, xs) ref: l621 of simgear/canvas/CanvasElement.cxx
me[key].set("clip", clip_rect);
me[key].set("clip-frame", canvas.Element.PARENT);
}
}
}
me.page = canvas_group;
return me;
},
getKeys: func() {
return ["Simple","Scratchpad","Simple_Title","Simple_PageNum","ArrowLeft","ArrowRight","Simple_L1","Simple_L2","Simple_L3","Simple_L4","Simple_L5","Simple_L6","Simple_L1S","Simple_L2S","Simple_L3S","Simple_L4S","Simple_L5S","Simple_L6S","Simple_L1_Arrow",
"Simple_L2_Arrow","Simple_L3_Arrow","Simple_L4_Arrow","Simple_L5_Arrow","Simple_L6_Arrow","Simple_R1","Simple_R2","Simple_R3","Simple_R4","Simple_R5","Simple_R6","Simple_R1S","Simple_R2S","Simple_R3S","Simple_R4S","Simple_R5S","Simple_R6S",
"Simple_R1_Arrow","Simple_R2_Arrow","Simple_R3_Arrow","Simple_R4_Arrow","Simple_R5_Arrow","Simple_R6_Arrow"];
},
update: func() {
if (getprop("/systems/electrical/bus/ac1") >= 110) {
MCDU_1.page.show();
MCDU_1.update();
} else {
MCDU_1.page.hide();
}
if (getprop("/systems/electrical/bus/ac2") >= 110) {
MCDU_2.page.show();
MCDU_2.update();
} else {
MCDU_2.page.hide();
}
},
updateCommon: func(i) {
page = getprop("/MCDU[" ~ i ~ "]/page");
if (page == "MCDU") {
me["Simple"].show();
me["Simple_Title"].setText(" MCDU MENU");
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
me["Simple_L1"].show();
me["Simple_L2"].show();
me["Simple_L3"].show();
me["Simple_L4"].show();
me["Simple_L5"].hide();
me["Simple_L6"].hide();
me["Simple_L1S"].hide();
me["Simple_L2S"].hide();
me["Simple_L3S"].hide();
me["Simple_L4S"].hide();
me["Simple_L5S"].hide();
me["Simple_L6S"].hide();
me["Simple_L1_Arrow"].show();
me["Simple_L2_Arrow"].show();
me["Simple_L3_Arrow"].show();
me["Simple_L4_Arrow"].show();
me["Simple_L5_Arrow"].hide();
me["Simple_L6_Arrow"].hide();
me["Simple_R1"].hide();
me["Simple_R2"].hide();
me["Simple_R3"].hide();
me["Simple_R4"].hide();
me["Simple_R5"].hide();
me["Simple_R6"].show();
me["Simple_R1S"].hide();
me["Simple_R2S"].hide();
me["Simple_R3S"].hide();
me["Simple_R4S"].hide();
me["Simple_R5S"].hide();
me["Simple_R6S"].hide();
me["Simple_R1_Arrow"].hide();
me["Simple_R2_Arrow"].hide();
me["Simple_R3_Arrow"].hide();
me["Simple_R4_Arrow"].hide();
me["Simple_R5_Arrow"].hide();
me["Simple_R6_Arrow"].show();
me["Simple_L1"].setFont(default);
me["Simple_L2"].setFont(default);
me["Simple_L3"].setFont(default);
me["Simple_L4"].setFont(default);
me["Simple_L5"].setFont(default);
me["Simple_L6"].setFont(default);
me["Simple_L1S"].setFont(default);
me["Simple_L2S"].setFont(default);
me["Simple_L3S"].setFont(default);
me["Simple_L4S"].setFont(default);
me["Simple_L5S"].setFont(default);
me["Simple_L6S"].setFont(default);
me["Simple_R1"].setFont(default);
me["Simple_R2"].setFont(default);
me["Simple_R3"].setFont(default);
me["Simple_R4"].setFont(default);
me["Simple_R5"].setFont(default);
me["Simple_R6"].setFont(default);
me["Simple_R1S"].setFont(default);
me["Simple_R2S"].setFont(default);
me["Simple_R3S"].setFont(default);
me["Simple_R4S"].setFont(default);
me["Simple_R5S"].setFont(default);
me["Simple_R6S"].setFont(default);
me["Simple_L1"].setFontSize(normal);
me["Simple_L2"].setFontSize(normal);
me["Simple_L3"].setFontSize(normal);
me["Simple_L4"].setFontSize(normal);
me["Simple_L5"].setFontSize(normal);
me["Simple_L6"].setFontSize(normal);
me["Simple_R1"].setFontSize(normal);
me["Simple_R2"].setFontSize(normal);
me["Simple_R3"].setFontSize(normal);
me["Simple_R4"].setFontSize(normal);
me["Simple_R5"].setFontSize(normal);
me["Simple_R6"].setFontSize(normal);
me["Simple_L2"].setColor(1,1,1);
me["Simple_L3"].setColor(1,1,1);
me["Simple_L4"].setColor(1,1,1);
me["Simple_L5"].setColor(1,1,1);
me["Simple_L6"].setColor(1,1,1);
me["Simple_L1S"].setColor(1,1,1);
me["Simple_L2S"].setColor(1,1,1);
me["Simple_L3S"].setColor(1,1,1);
me["Simple_L4S"].setColor(1,1,1);
me["Simple_L5S"].setColor(1,1,1);
me["Simple_L6S"].setColor(1,1,1);
me["Simple_L1_Arrow"].setColor(1,1,1);
me["Simple_L2_Arrow"].setColor(1,1,1);
me["Simple_L3_Arrow"].setColor(1,1,1);
me["Simple_L4_Arrow"].setColor(1,1,1);
me["Simple_L5_Arrow"].setColor(1,1,1);
me["Simple_L6_Arrow"].setColor(1,1,1);
me["Simple_R1"].setColor(1,1,1);
me["Simple_R2"].setColor(1,1,1);
me["Simple_R3"].setColor(1,1,1);
me["Simple_R4"].setColor(1,1,1);
me["Simple_R5"].setColor(1,1,1);
me["Simple_R6"].setColor(1,1,1);
me["Simple_R1S"].setColor(1,1,1);
me["Simple_R2S"].setColor(1,1,1);
me["Simple_R3S"].setColor(1,1,1);
me["Simple_R4S"].setColor(1,1,1);
me["Simple_R5S"].setColor(1,1,1);
me["Simple_R6S"].setColor(1,1,1);
me["Simple_R1_Arrow"].setColor(1,1,1);
me["Simple_R2_Arrow"].setColor(1,1,1);
me["Simple_R3_Arrow"].setColor(1,1,1);
me["Simple_R4_Arrow"].setColor(1,1,1);
me["Simple_R5_Arrow"].setColor(1,1,1);
me["Simple_R6_Arrow"].setColor(1,1,1);
if (getprop("/MCDU[" ~ i ~ "]/active") == 0) {
me["Simple_L1"].setText(" FMGC");
me["Simple_L1"].setColor(1,1,1);
} else if (getprop("/MCDU[" ~ i ~ "]/active") == 1) {
me["Simple_L1"].setText(" FMGC(SEL)");
me["Simple_L1"].setColor(0.0862,0.5176,0.6470);
} else if (getprop("/MCDU[" ~ i ~ "]/active") == 2) {
me["Simple_L1"].setText(" FMGC");
me["Simple_L1"].setColor(0.0509,0.7529,0.2941);
}
me["Simple_L2"].setText(" ACARS");
me["Simple_L3"].setText(" AIDS");
me["Simple_L4"].setText(" CFDS");
me["Simple_R6"].setText("RETURN ");
} else if (page == "STATUS") {
me["Simple"].show();
me["Simple_Title"].setText(sprintf("%s", getprop("/MCDUC/type")));
me["Simple_PageNum"].setText("X/X");
me["Simple_PageNum"].hide();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
me["Simple_L1"].show();
me["Simple_L2"].show();
me["Simple_L3"].show();
me["Simple_L4"].hide();
me["Simple_L5"].show();
me["Simple_L6"].show();
me["Simple_L1S"].show();
me["Simple_L2S"].show();
me["Simple_L3S"].show();
me["Simple_L4S"].hide();
me["Simple_L5S"].show();
me["Simple_L6S"].show();
me["Simple_L1_Arrow"].hide();
me["Simple_L2_Arrow"].hide();
me["Simple_L3_Arrow"].show();
me["Simple_L4_Arrow"].hide();
me["Simple_L5_Arrow"].hide();
me["Simple_L6_Arrow"].hide();
me["Simple_R1"].hide();
me["Simple_R2"].show();
me["Simple_R3"].hide();
me["Simple_R4"].hide();
me["Simple_R5"].hide();
me["Simple_R6"].show();
me["Simple_R1S"].hide();
me["Simple_R2S"].hide();
me["Simple_R3S"].hide();
me["Simple_R4S"].hide();
me["Simple_R5S"].hide();
me["Simple_R6S"].show();
me["Simple_R1_Arrow"].hide();
me["Simple_R2_Arrow"].hide();
me["Simple_R3_Arrow"].hide();
me["Simple_R4_Arrow"].hide();
me["Simple_R5_Arrow"].hide();
me["Simple_R6_Arrow"].show();
me["Simple_L1"].setFont(default);
me["Simple_L2"].setFont(default);
me["Simple_L3"].setFont(default);
me["Simple_L4"].setFont(default);
me["Simple_L5"].setFont(bracket);
me["Simple_L6"].setFont(default);
me["Simple_L1S"].setFont(default);
me["Simple_L2S"].setFont(default);
me["Simple_L3S"].setFont(default);
me["Simple_L4S"].setFont(default);
me["Simple_L5S"].setFont(default);
me["Simple_L6S"].setFont(default);
me["Simple_R1"].setFont(default);
me["Simple_R2"].setFont(default);
me["Simple_R3"].setFont(default);
me["Simple_R4"].setFont(default);
me["Simple_R5"].setFont(default);
me["Simple_R6"].setFont(default);
me["Simple_R1S"].setFont(default);
me["Simple_R2S"].setFont(default);
me["Simple_R3S"].setFont(default);
me["Simple_R4S"].setFont(default);
me["Simple_R5S"].setFont(default);
me["Simple_R6S"].setFont(default);
me["Simple_L1"].setFontSize(normal);
me["Simple_L2"].setFontSize(normal);
me["Simple_L3"].setFontSize(normal);
me["Simple_L4"].setFontSize(normal);
me["Simple_L5"].setFontSize(small);
me["Simple_L6"].setFontSize(normal);
me["Simple_R1"].setFontSize(normal);
me["Simple_R2"].setFontSize(normal);
me["Simple_R3"].setFontSize(normal);
me["Simple_R4"].setFontSize(normal);
me["Simple_R5"].setFontSize(normal);
me["Simple_R6"].setFontSize(normal);
me["Simple_L1"].setColor(0.0509,0.7529,0.2941);
me["Simple_L2"].setColor(0.0862,0.5176,0.6470);
me["Simple_L3"].setColor(0.0862,0.5176,0.6470);
me["Simple_L4"].setColor(1,1,1);
me["Simple_L5"].setColor(0.0862,0.5176,0.6470);
me["Simple_L6"].setColor(0.0509,0.7529,0.2941);
me["Simple_L1S"].setColor(1,1,1);
me["Simple_L2S"].setColor(1,1,1);
me["Simple_L3S"].setColor(1,1,1);
me["Simple_L4S"].setColor(1,1,1);
me["Simple_L5S"].setColor(1,1,1);
me["Simple_L6S"].setColor(1,1,1);
me["Simple_L1_Arrow"].setColor(1,1,1);
me["Simple_L2_Arrow"].setColor(0.0862,0.5176,0.6470);
me["Simple_L3_Arrow"].setColor(0.0862,0.5176,0.6470);
me["Simple_L4_Arrow"].setColor(1,1,1);
me["Simple_L5_Arrow"].setColor(1,1,1);
me["Simple_L6_Arrow"].setColor(1,1,1);
me["Simple_R1"].setColor(1,1,1);
me["Simple_R2"].setColor(0.0509,0.7529,0.2941);
me["Simple_R3"].setColor(1,1,1);
me["Simple_R4"].setColor(1,1,1);
me["Simple_R5"].setColor(1,1,1);
me["Simple_R6"].setColor(1,1,1);
me["Simple_R1S"].setColor(1,1,1);
me["Simple_R2S"].setColor(1,1,1);
me["Simple_R3S"].setColor(1,1,1);
me["Simple_R4S"].setColor(1,1,1);
me["Simple_R5S"].setColor(1,1,1);
me["Simple_R6S"].setColor(1,1,1);
me["Simple_R1_Arrow"].setColor(1,1,1);
me["Simple_R2_Arrow"].setColor(1,1,1);
me["Simple_R3_Arrow"].setColor(1,1,1);
me["Simple_R4_Arrow"].setColor(1,1,1);
me["Simple_R5_Arrow"].setColor(1,1,1);
me["Simple_R6_Arrow"].setColor(1,1,1);
me["Simple_L1"].setText(sprintf("%s", getprop("/MCDUC/eng")));
me["Simple_L2"].setText(sprintf("%s", " " ~ getprop("/FMGC/internal/navdatabase")));
me["Simple_L3"].setText(sprintf("%s", " " ~ getprop("/FMGC/internal/navdatabase2")));
me["Simple_L5"].setText("[ ]");
me["Simple_L6"].setText("+4.0/+0.0");
me["Simple_L1S"].setText(" ENG");
me["Simple_L2S"].setText(" ACTIVE NAV DATA BASE");
me["Simple_L3S"].setText(" SECOND NAV DATA BASE");
me["Simple_L5S"].setText("CHG CODE");
me["Simple_L6S"].setText("IDLE/PERF");
me["Simple_R2"].setText(sprintf("%s", getprop("/FMGC/internal/navdatabasecode") ~ " "));
me["Simple_R6"].setText("STATUS/XLOAD ");
me["Simple_R6S"].setText("SOFTWARE ");
} else if (page == "DATA") {
me["Simple"].show();
me["Simple_Title"].setText("DATA INDEX");
me["Simple_PageNum"].setText("1/2");
me["Simple_PageNum"].show();
me["ArrowLeft"].show();
me["ArrowRight"].show();
me["Simple_L1"].show();
me["Simple_L2"].show();
me["Simple_L3"].show();
me["Simple_L4"].show();
me["Simple_L5"].hide();
me["Simple_L6"].hide();
me["Simple_L1S"].show();
me["Simple_L2S"].show();
me["Simple_L3S"].show();
me["Simple_L4S"].hide();
me["Simple_L5S"].hide();
me["Simple_L6S"].hide();
me["Simple_L1_Arrow"].show();
me["Simple_L2_Arrow"].show();
me["Simple_L3_Arrow"].show();
me["Simple_L4_Arrow"].show();
me["Simple_L5_Arrow"].hide();
me["Simple_L6_Arrow"].hide();
me["Simple_R1"].hide();
me["Simple_R2"].hide();
me["Simple_R3"].hide();
me["Simple_R4"].hide();
me["Simple_R5"].show();
me["Simple_R6"].show();
me["Simple_R1S"].hide();
me["Simple_R2S"].hide();
me["Simple_R3S"].hide();
me["Simple_R4S"].hide();
me["Simple_R5S"].show();
me["Simple_R6S"].show();
me["Simple_R1_Arrow"].hide();
me["Simple_R2_Arrow"].hide();
me["Simple_R3_Arrow"].hide();
me["Simple_R4_Arrow"].hide();
me["Simple_R5_Arrow"].show();
me["Simple_R6_Arrow"].show();
me["Simple_L1"].setFont(default);
me["Simple_L2"].setFont(default);
me["Simple_L3"].setFont(default);
me["Simple_L4"].setFont(default);
me["Simple_L5"].setFont(default);
me["Simple_L6"].setFont(default);
me["Simple_L1S"].setFont(default);
me["Simple_L2S"].setFont(default);
me["Simple_L3S"].setFont(default);
me["Simple_L4S"].setFont(default);
me["Simple_L5S"].setFont(default);
me["Simple_L6S"].setFont(default);
me["Simple_R1"].setFont(default);
me["Simple_R2"].setFont(default);
me["Simple_R3"].setFont(default);
me["Simple_R4"].setFont(default);
me["Simple_R5"].setFont(default);
me["Simple_R6"].setFont(default);
me["Simple_R1S"].setFont(default);
me["Simple_R2S"].setFont(default);
me["Simple_R3S"].setFont(default);
me["Simple_R4S"].setFont(default);
me["Simple_R5S"].setFont(default);
me["Simple_R6S"].setFont(default);
me["Simple_L1"].setFontSize(normal);
me["Simple_L2"].setFontSize(normal);
me["Simple_L3"].setFontSize(normal);
me["Simple_L4"].setFontSize(normal);
me["Simple_L5"].setFontSize(normal);
me["Simple_L6"].setFontSize(normal);
me["Simple_R1"].setFontSize(normal);
me["Simple_R2"].setFontSize(normal);
me["Simple_R3"].setFontSize(normal);
me["Simple_R4"].setFontSize(normal);
me["Simple_R5"].setFontSize(normal);
me["Simple_R6"].setFontSize(normal);
me["Simple_L1"].setColor(1,1,1);
me["Simple_L2"].setColor(1,1,1);
me["Simple_L3"].setColor(1,1,1);
me["Simple_L4"].setColor(1,1,1);
me["Simple_L5"].setColor(1,1,1);
me["Simple_L6"].setColor(1,1,1);
me["Simple_L1S"].setColor(1,1,1);
me["Simple_L2S"].setColor(1,1,1);
me["Simple_L3S"].setColor(1,1,1);
me["Simple_L4S"].setColor(1,1,1);
me["Simple_L5S"].setColor(1,1,1);
me["Simple_L6S"].setColor(1,1,1);
me["Simple_L1_Arrow"].setColor(1,1,1);
me["Simple_L2_Arrow"].setColor(1,1,1);
me["Simple_L3_Arrow"].setColor(1,1,1);
me["Simple_L4_Arrow"].setColor(1,1,1);
me["Simple_L5_Arrow"].setColor(1,1,1);
me["Simple_L6_Arrow"].setColor(1,1,1);
me["Simple_R1"].setColor(1,1,1);
me["Simple_R2"].setColor(1,1,1);
me["Simple_R3"].setColor(1,1,1);
me["Simple_R4"].setColor(1,1,1);
me["Simple_R5"].setColor(1,1,1);
me["Simple_R6"].setColor(1,1,1);
me["Simple_R1S"].setColor(1,1,1);
me["Simple_R2S"].setColor(1,1,1);
me["Simple_R3S"].setColor(1,1,1);
me["Simple_R4S"].setColor(1,1,1);
me["Simple_R5S"].setColor(1,1,1);
me["Simple_R6S"].setColor(1,1,1);
me["Simple_R1_Arrow"].setColor(1,1,1);
me["Simple_R2_Arrow"].setColor(1,1,1);
me["Simple_R3_Arrow"].setColor(1,1,1);
me["Simple_R4_Arrow"].setColor(1,1,1);
me["Simple_R5_Arrow"].setColor(1,1,1);
me["Simple_R6_Arrow"].setColor(1,1,1);
me["Simple_L1"].setText(" MONITOR");
me["Simple_L2"].setText(" MONITOR");
me["Simple_L3"].setText(" MONITOR");
me["Simple_L4"].setText(" A/C STATUS");
me["Simple_L1S"].setText(" POSITION");
me["Simple_L2S"].setText(" IRS");
me["Simple_L3S"].setText(" GPS");
me["Simple_R5"].setText("FUNCTION ");
me["Simple_R6"].setText("FUNCTION ");
me["Simple_R5S"].setText("PRINT ");
me["Simple_R6S"].setText("AOC ");
} else if (page == "DATA2") {
me["Simple"].show();
me["Simple_Title"].setText("DATA INDEX");
me["Simple_PageNum"].setText("2/2");
me["Simple_PageNum"].show();
me["ArrowLeft"].show();
me["ArrowRight"].show();
me["Simple_L1"].show();
me["Simple_L2"].show();
me["Simple_L3"].show();
me["Simple_L4"].show();
me["Simple_L5"].show();
me["Simple_L6"].show();
me["Simple_L1S"].hide();
me["Simple_L2S"].hide();
me["Simple_L3S"].hide();
me["Simple_L4S"].hide();
me["Simple_L5S"].show();
me["Simple_L6S"].show();
me["Simple_L1_Arrow"].show();
me["Simple_L2_Arrow"].show();
me["Simple_L3_Arrow"].show();
me["Simple_L4_Arrow"].show();
me["Simple_L5_Arrow"].show();
me["Simple_L6_Arrow"].show();
me["Simple_R1"].show();
me["Simple_R2"].show();
me["Simple_R3"].show();
me["Simple_R4"].show();
me["Simple_R5"].hide();
me["Simple_R6"].hide();
me["Simple_R1S"].show();
me["Simple_R2S"].show();
me["Simple_R3S"].show();
me["Simple_R4S"].show();
me["Simple_R5S"].hide();
me["Simple_R6S"].hide();
me["Simple_R1_Arrow"].show();
me["Simple_R2_Arrow"].show();
me["Simple_R3_Arrow"].show();
me["Simple_R4_Arrow"].show();
me["Simple_R5_Arrow"].hide();
me["Simple_R6_Arrow"].hide();
me["Simple_L1"].setFont(default);
me["Simple_L2"].setFont(default);
me["Simple_L3"].setFont(default);
me["Simple_L4"].setFont(default);
me["Simple_L5"].setFont(default);
me["Simple_L6"].setFont(default);
me["Simple_L1S"].setFont(default);
me["Simple_L2S"].setFont(default);
me["Simple_L3S"].setFont(default);
me["Simple_L4S"].setFont(default);
me["Simple_L5S"].setFont(default);
me["Simple_L6S"].setFont(default);
me["Simple_R1"].setFont(default);
me["Simple_R2"].setFont(default);
me["Simple_R3"].setFont(default);
me["Simple_R4"].setFont(default);
me["Simple_R5"].setFont(default);
me["Simple_R6"].setFont(default);
me["Simple_R1S"].setFont(default);
me["Simple_R2S"].setFont(default);
me["Simple_R3S"].setFont(default);
me["Simple_R4S"].setFont(default);
me["Simple_R5S"].setFont(default);
me["Simple_R6S"].setFont(default);
me["Simple_L1"].setFontSize(normal);
me["Simple_L2"].setFontSize(normal);
me["Simple_L3"].setFontSize(normal);
me["Simple_L4"].setFontSize(normal);
me["Simple_L5"].setFontSize(normal);
me["Simple_L6"].setFontSize(normal);
me["Simple_R1"].setFontSize(normal);
me["Simple_R2"].setFontSize(normal);
me["Simple_R3"].setFontSize(normal);
me["Simple_R4"].setFontSize(normal);
me["Simple_R5"].setFontSize(normal);
me["Simple_R6"].setFontSize(normal);
me["Simple_L1"].setColor(1,1,1);
me["Simple_L2"].setColor(1,1,1);
me["Simple_L3"].setColor(1,1,1);
me["Simple_L4"].setColor(1,1,1);
me["Simple_L5"].setColor(1,1,1);
me["Simple_L6"].setColor(1,1,1);
me["Simple_L1S"].setColor(1,1,1);
me["Simple_L2S"].setColor(1,1,1);
me["Simple_L3S"].setColor(1,1,1);
me["Simple_L4S"].setColor(1,1,1);
me["Simple_L5S"].setColor(1,1,1);
me["Simple_L6S"].setColor(1,1,1);
me["Simple_L1_Arrow"].setColor(1,1,1);
me["Simple_L2_Arrow"].setColor(1,1,1);
me["Simple_L3_Arrow"].setColor(1,1,1);
me["Simple_L4_Arrow"].setColor(1,1,1);
me["Simple_L5_Arrow"].setColor(1,1,1);
me["Simple_L6_Arrow"].setColor(1,1,1);
me["Simple_R1"].setColor(1,1,1);
me["Simple_R2"].setColor(1,1,1);
me["Simple_R3"].setColor(1,1,1);
me["Simple_R4"].setColor(1,1,1);
me["Simple_R5"].setColor(1,1,1);
me["Simple_R6"].setColor(1,1,1);
me["Simple_R1S"].setColor(1,1,1);
me["Simple_R2S"].setColor(1,1,1);
me["Simple_R3S"].setColor(1,1,1);
me["Simple_R4S"].setColor(1,1,1);
me["Simple_R5S"].setColor(1,1,1);
me["Simple_R6S"].setColor(1,1,1);
me["Simple_R1_Arrow"].setColor(1,1,1);
me["Simple_R2_Arrow"].setColor(1,1,1);
me["Simple_R3_Arrow"].setColor(1,1,1);
me["Simple_R4_Arrow"].setColor(1,1,1);
me["Simple_R5_Arrow"].setColor(1,1,1);
me["Simple_R6_Arrow"].setColor(1,1,1);
me["Simple_L1"].setText(" WAYPOINTS");
me["Simple_L2"].setText(" NAVAIDS");
me["Simple_L3"].setText(" RUNWAYS");
me["Simple_L4"].setText(" ROUTES");
me["Simple_L5"].setText(" WINDS");
me["Simple_L6"].setText(" WINDS");
me["Simple_L5S"].setText(" ACTIVE F-PLN");
me["Simple_L6S"].setText(" SEC F-PLN");
me["Simple_R1"].setText("WAYPOINTS ");
me["Simple_R2"].setText("NAVAIDS ");
me["Simple_R3"].setText("RUNWAYS ");
me["Simple_R4"].setText("ROUTES ");
me["Simple_R1S"].setText("PILOTS ");
me["Simple_R2S"].setText("PILOTS ");
me["Simple_R3S"].setText("PILOTS ");
me["Simple_R4S"].setText("PILOTS ");
} else {
me["Simple"].hide();
me["ArrowLeft"].hide();
me["ArrowRight"].hide();
}
me["Scratchpad"].setText(sprintf("%s", getprop("/MCDU[" ~ i ~ "]/scratchpad")));
},
};
var canvas_MCDU_1 = {
new: func(canvas_group, file) {
var m = {parents: [canvas_MCDU_1, canvas_MCDU_base]};
m.init(canvas_group, file);
return m;
},
update: func() {
me.updateCommon(0);
},
};
var canvas_MCDU_2 = {
new: func(canvas_group, file) {
var m = {parents: [canvas_MCDU_2, canvas_MCDU_base]};
m.init(canvas_group, file);
return m;
},
update: func() {
me.updateCommon(1);
},
};
setlistener("sim/signals/fdm-initialized", func {
MCDU1_display = canvas.new({
"name": "MCDU1",
"size": [1024, 864],
"view": [1024, 864],
"mipmapping": 1
});
MCDU2_display = canvas.new({
"name": "MCDU2",
"size": [1024, 864],
"view": [1024, 864],
"mipmapping": 1
});
MCDU1_display.addPlacement({"node": "mcdu1.screen"});
MCDU2_display.addPlacement({"node": "mcdu2.screen"});
var group_MCDU1 = MCDU1_display.createGroup();
var group_MCDU2 = MCDU2_display.createGroup();
MCDU_1 = canvas_MCDU_1.new(group_MCDU1, "Aircraft/IDG-A32X/Models/Instruments/MCDU/res/mcdu.svg");
MCDU_2 = canvas_MCDU_2.new(group_MCDU2, "Aircraft/IDG-A32X/Models/Instruments/MCDU/res/mcdu.svg");
MCDU_update.start();
});
var MCDU_update = maketimer(0.2, func {
canvas_MCDU_base.update();
});
var showMCDU1 = func {
var dlg = canvas.Window.new([512, 432], "dialog").set("resize", 1);
dlg.setCanvas(MCDU1_display);
}
var showMCDU2 = func {
var dlg = canvas.Window.new([512, 432], "dialog").set("resize", 1);
dlg.setCanvas(MCDU2_display);
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,2 @@
Distance between lines:
147.948

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

View file

@ -0,0 +1,727 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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="1280"
height="1080"
viewBox="0 0 1024 864"
version="1.1"
id="svg2"
inkscape:version="0.91 r13725"
sodipodi:docname="mcdu.svg">
<metadata
id="metadata375">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs373" />
<sodipodi:namedview
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1"
objecttolerance="20"
gridtolerance="20"
guidetolerance="20"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1030"
id="namedview371"
showgrid="true"
inkscape:zoom="0.5"
inkscape:cx="879.32861"
inkscape:cy="507.41639"
inkscape:window-x="1592"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="Simple"
showguides="false"
inkscape:snap-global="false"
units="px">
<inkscape:grid
type="xygrid"
id="grid5153" />
</sodipodi:namedview>
<text
inkscape:label="#text4244"
transform="scale(0.991516,1.0085566)"
sodipodi:linespacing="125%"
id="Scratchpad"
y="836.87567"
x="20.138426"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;"
y="836.87567"
x="20.138426"
id="tspan4242"
sodipodi:role="line">SCRATCHPAD</tspan></text>
<g
inkscape:groupmode="layer"
id="Simple"
inkscape:label="Simple">
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="455.44571"
y="69.238258"
id="Simple_Title"
sodipodi:linespacing="125%"
transform="scale(0.991516,1.0085566)"
inkscape:label="#text4244"><tspan
sodipodi:role="line"
id="tspan4246"
x="455.44571"
y="69.238258"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1">TITLE</tspan></text>
<text
inkscape:label="#text4244"
transform="scale(0.991516,1.0085566)"
sodipodi:linespacing="125%"
id="Simple_PageNum"
y="69.238258"
x="819.37042"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;"
y="69.238258"
x="819.37042"
id="tspan4217"
sodipodi:role="line">X/X</tspan></text>
<circle
id="path4227"
style="fill:#000000;stroke:none"
cx="700.88422"
cy="15.471865"
r="1.5" />
<circle
id="path4229"
style="fill:#000000;stroke:none"
cx="763.95813"
cy="15.754708"
r="1.5" />
<circle
id="path4231"
style="fill:#000000;stroke:none"
cx="787.43408"
cy="16.320395"
r="1.5" />
<circle
id="path4233"
style="fill:#000000;stroke:none"
cx="796.48511"
cy="13.774809"
r="3" />
<text
inkscape:label="#text4244"
transform="scale(0.991516,1.0085566)"
sodipodi:linespacing="125%"
id="Simple_L1"
y="187.10254"
x="20.138426"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;"
y="187.10254"
x="20.138426"
id="tspan4256"
sodipodi:role="line">TEXT</tspan></text>
<g
transform="matrix(1.0000018,0,0,0.99998906,-895.98862,118.48532)"
inkscape:label="#g4241"
id="Simple_L1_Arrow"
style="fill:#ffffff;fill-opacity:1">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4158"
d="M 936.70791,32.6968 921.8587,47.4328"
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
<path
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
d="M 936.70791,62.1688 921.8587,47.4328"
id="path4160"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="20.138426"
y="304.457"
id="Simple_L2"
sodipodi:linespacing="125%"
transform="scale(0.991516,1.0085566)"
inkscape:label="#text4244"><tspan
sodipodi:role="line"
id="tspan4180"
x="20.138426"
y="304.457"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;">TEXT</tspan></text>
<g
id="Simple_L2_Arrow"
inkscape:label="#g4241"
transform="matrix(1.0000018,0,0,0.99998906,-895.98862,236.8439)"
style="fill:#ffffff;fill-opacity:1">
<path
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
d="M 936.70791,32.6968 921.8587,47.4328"
id="path4185"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4187"
d="M 936.70791,62.1688 921.8587,47.4328"
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
</g>
<text
inkscape:label="#text4244"
transform="scale(0.991516,1.0085566)"
sodipodi:linespacing="125%"
id="Simple_L3"
y="421.81125"
x="20.138426"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;"
y="421.81125"
x="20.138426"
id="tspan4191"
sodipodi:role="line">TEXT</tspan></text>
<g
transform="matrix(1.0000018,0,0,0.99998906,-895.98862,355.20229)"
inkscape:label="#g4241"
id="Simple_L3_Arrow"
style="fill:#ffffff;fill-opacity:1">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4195"
d="M 936.70791,32.6968 921.8587,47.4328"
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
<path
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
d="M 936.70791,62.1688 921.8587,47.4328"
id="path4197"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="20.138426"
y="539.16547"
id="Simple_L4"
sodipodi:linespacing="125%"
transform="scale(0.991516,1.0085566)"
inkscape:label="#text4244"><tspan
sodipodi:role="line"
id="tspan4201"
x="20.138426"
y="539.16547"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;">TEXT</tspan></text>
<g
id="Simple_L4_Arrow"
inkscape:label="#g4241"
transform="matrix(1.0000018,0,0,0.99998906,-895.98862,473.56068)"
style="fill:#ffffff;fill-opacity:1">
<path
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
d="M 936.70791,32.6968 921.8587,47.4328"
id="path4205"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4207"
d="M 936.70791,62.1688 921.8587,47.4328"
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
</g>
<text
inkscape:label="#text4244"
transform="scale(0.991516,1.0085566)"
sodipodi:linespacing="125%"
id="Simple_L5"
y="656.51971"
x="20.138426"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;"
y="656.51971"
x="20.138426"
id="tspan4211"
sodipodi:role="line">TEXT</tspan></text>
<g
transform="matrix(1.0000018,0,0,0.99998906,-895.98862,591.91913)"
inkscape:label="#g4241"
id="Simple_L5_Arrow"
style="fill:#ffffff;fill-opacity:1">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4215"
d="M 936.70791,32.6968 921.8587,47.4328"
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
<path
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
d="M 936.70791,62.1688 921.8587,47.4328"
id="path4217"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="20.138426"
y="773.87396"
id="Simple_L6"
sodipodi:linespacing="125%"
transform="scale(0.991516,1.0085566)"
inkscape:label="#text4244"><tspan
sodipodi:role="line"
id="tspan4232"
x="20.138426"
y="773.87396"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;">TEXT</tspan></text>
<g
id="Simple_L6_Arrow"
inkscape:label="#g4241"
transform="matrix(1.0000018,0,0,0.99998906,-895.98862,710.27754)"
style="fill:#ffffff;fill-opacity:1">
<path
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
d="M 936.70791,32.6968 921.8587,47.4328"
id="path4236"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4238"
d="M 936.70791,62.1688 921.8587,47.4328"
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="20.186277"
y="130.38777"
id="Simple_L1S"
sodipodi:linespacing="125%"
transform="scale(0.991516,1.0085566)"
inkscape:label="#text4244"><tspan
sodipodi:role="line"
id="tspan4269"
x="20.186277"
y="130.38777"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;">TEXT</tspan></text>
<text
inkscape:label="#text4244"
transform="scale(0.991516,1.0085566)"
sodipodi:linespacing="125%"
id="Simple_L2S"
y="247.74202"
x="20.186277"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;"
y="247.74202"
x="20.186277"
id="tspan4265"
sodipodi:role="line">TEXT</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="20.186277"
y="365.09625"
id="Simple_L3S"
sodipodi:linespacing="125%"
transform="scale(0.991516,1.0085566)"
inkscape:label="#text4244"><tspan
sodipodi:role="line"
id="tspan4261"
x="20.186277"
y="365.09625"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;">TEXT</tspan></text>
<text
inkscape:label="#text4244"
transform="scale(0.991516,1.0085566)"
sodipodi:linespacing="125%"
id="Simple_L4S"
y="482.4505"
x="20.186277"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;"
y="482.4505"
x="20.186277"
id="tspan4257"
sodipodi:role="line">TEXT</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="20.186277"
y="599.80499"
id="Simple_L5S"
sodipodi:linespacing="125%"
transform="scale(0.991516,1.0085566)"
inkscape:label="#text4244"><tspan
sodipodi:role="line"
id="tspan4247"
x="20.186277"
y="599.80499"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;">TEXT</tspan></text>
<text
inkscape:label="#text4244"
transform="scale(0.991516,1.0085566)"
sodipodi:linespacing="125%"
id="Simple_L6S"
y="717.159"
x="20.186277"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:start;text-anchor:start;fill:#ffffff;fill-opacity:1;"
y="717.159"
x="20.186277"
id="tspan4251"
sodipodi:role="line">TEXT</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="1022.194"
y="187.10254"
id="Simple_R1"
sodipodi:linespacing="125%"
transform="scale(0.991516,1.0085566)"
inkscape:label="#text4244"><tspan
sodipodi:role="line"
id="tspan4273"
x="1022.194"
y="187.10254"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;">TEXT</tspan></text>
<g
id="Simple_R1_Arrow"
inkscape:label="#g4241"
transform="matrix(-1.000002,0,0,0.99998904,1919.9892,118.48532)"
style="fill:#ffffff;fill-opacity:1">
<path
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
d="M 936.70791,32.6968 921.8587,47.4328"
id="path4277"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4279"
d="M 936.70791,62.1688 921.8587,47.4328"
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
</g>
<text
inkscape:label="#text4244"
transform="scale(0.991516,1.0085566)"
sodipodi:linespacing="125%"
id="Simple_R2"
y="304.457"
x="1022.194"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;"
y="304.457"
x="1022.194"
id="tspan4283"
sodipodi:role="line">TEXT</tspan></text>
<g
transform="matrix(-1.000002,0,0,0.99998904,1919.9892,236.84392)"
inkscape:label="#g4241"
id="Simple_R2_Arrow"
style="fill:#ffffff;fill-opacity:1">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4287"
d="M 936.70791,32.6968 921.8587,47.4328"
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
<path
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
d="M 936.70791,62.1688 921.8587,47.4328"
id="path4289"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="1022.194"
y="421.81125"
id="Simple_R3"
sodipodi:linespacing="125%"
transform="scale(0.991516,1.0085566)"
inkscape:label="#text4244"><tspan
sodipodi:role="line"
id="tspan4293"
x="1022.194"
y="421.81125"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;">TEXT</tspan></text>
<g
id="Simple_R3_Arrow"
inkscape:label="#g4241"
transform="matrix(-1.000002,0,0,0.99998904,1919.9892,355.20231)"
style="fill:#ffffff;fill-opacity:1">
<path
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
d="M 936.70791,32.6968 921.8587,47.4328"
id="path4297"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4299"
d="M 936.70791,62.1688 921.8587,47.4328"
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
</g>
<text
inkscape:label="#text4244"
transform="scale(0.991516,1.0085566)"
sodipodi:linespacing="125%"
id="Simple_R4"
y="539.16547"
x="1022.194"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;"
y="539.16547"
x="1022.194"
id="tspan4303"
sodipodi:role="line">TEXT</tspan></text>
<g
transform="matrix(-1.000002,0,0,0.99998904,1919.9892,473.5607)"
inkscape:label="#g4241"
id="Simple_R4_Arrow"
style="fill:#ffffff;fill-opacity:1">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4307"
d="M 936.70791,32.6968 921.8587,47.4328"
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
<path
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
d="M 936.70791,62.1688 921.8587,47.4328"
id="path4309"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="1022.194"
y="656.51971"
id="Simple_R5"
sodipodi:linespacing="125%"
transform="scale(0.991516,1.0085566)"
inkscape:label="#text4244"><tspan
sodipodi:role="line"
id="tspan4313"
x="1022.194"
y="656.51971"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;">TEXT</tspan></text>
<g
id="Simple_R5_Arrow"
inkscape:label="#g4241"
transform="matrix(-1.000002,0,0,0.99998904,1919.9892,591.91912)"
style="fill:#ffffff;fill-opacity:1">
<path
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
d="M 936.70791,32.6968 921.8587,47.4328"
id="path4317"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4319"
d="M 936.70791,62.1688 921.8587,47.4328"
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
</g>
<text
inkscape:label="#text4244"
transform="scale(0.991516,1.0085566)"
sodipodi:linespacing="125%"
id="Simple_R6"
y="773.87396"
x="1022.194"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:70px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;"
y="773.87396"
x="1022.194"
id="tspan4323"
sodipodi:role="line">TEXT</tspan></text>
<g
transform="matrix(-1.000002,0,0,0.99998904,1919.9892,710.27753)"
inkscape:label="#g4241"
id="Simple_R6_Arrow"
style="fill:#ffffff;fill-opacity:1">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4327"
d="M 936.70791,32.6968 921.8587,47.4328"
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1" />
<path
style="fill:#ffffff;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
d="M 936.70791,62.1688 921.8587,47.4328"
id="path4329"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<text
inkscape:label="#text4244"
transform="scale(0.991516,1.0085566)"
sodipodi:linespacing="125%"
id="Simple_R1S"
y="130.38777"
x="1020.2319"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;"
y="130.38777"
x="1020.2319"
id="tspan4333"
sodipodi:role="line">TEXT</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="1020.2319"
y="247.74202"
id="Simple_R2S"
sodipodi:linespacing="125%"
transform="scale(0.991516,1.0085566)"
inkscape:label="#text4244"><tspan
sodipodi:role="line"
id="tspan4337"
x="1020.2319"
y="247.74202"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;">TEXT</tspan></text>
<text
inkscape:label="#text4244"
transform="scale(0.991516,1.0085566)"
sodipodi:linespacing="125%"
id="Simple_R3S"
y="365.09625"
x="1020.2319"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;"
y="365.09625"
x="1020.2319"
id="tspan4341"
sodipodi:role="line">TEXT</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="1020.2319"
y="482.4505"
id="Simple_R4S"
sodipodi:linespacing="125%"
transform="scale(0.991516,1.0085566)"
inkscape:label="#text4244"><tspan
sodipodi:role="line"
id="tspan4345"
x="1020.2319"
y="482.4505"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;">TEXT</tspan></text>
<text
inkscape:label="#text4244"
transform="scale(0.991516,1.0085566)"
sodipodi:linespacing="125%"
id="Simple_R5S"
y="599.80475"
x="1020.2319"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;"
y="599.80475"
x="1020.2319"
id="tspan4349"
sodipodi:role="line">TEXT</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:71.89044189px;line-height:125%;font-family:sans-serif;text-align:start;letter-spacing:0px;word-spacing:0px;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
x="1020.2319"
y="717.159"
id="Simple_R6S"
sodipodi:linespacing="125%"
transform="scale(0.991516,1.0085566)"
inkscape:label="#text4244"><tspan
sodipodi:role="line"
id="tspan4353"
x="1020.2319"
y="717.159"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:56px;font-family:BoeingCDULarge;-inkscape-font-specification:BoeingCDULarge;text-align:end;text-anchor:end;fill:#ffffff;fill-opacity:1;">TEXT</tspan></text>
</g>
<g
id="ArrowLeft"
inkscape:label="#g4241"
transform="translate(-1.2,-0.2)">
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4235"
d="m 952.4036,47.432743 -28.52965,0"
style="fill:none;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 936.70791,32.6968 921.8587,47.4328"
id="path4237"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4239"
d="M 936.70791,62.1688 921.8587,47.4328"
style="fill:none;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
transform="matrix(-1,0,0,1,1911.9173,-0.2)"
inkscape:label="#g4241"
id="ArrowRight">
<path
style="fill:none;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 952.4036,47.432743 -28.52965,0"
id="path4248"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path4250"
d="M 936.70791,32.6968 921.8587,47.4328"
style="fill:none;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;stroke:#cdcdcd;stroke-width:4.07999992;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 936.70791,62.1688 921.8587,47.4328"
id="path4252"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 629 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 244 KiB