Version 1.0.0 (2025-10-12): Frisch
BIN
duc/00_ablauf.odt
Normal file
BIN
duc/01_duc_textcodierung.odt
Normal file
BIN
duc/01_duc_textcodierung_vorlagen.odt
Normal file
BIN
duc/02_duc_code39.odt
Normal file
BIN
duc/02_duc_code39_karten.pdf
Normal file
BIN
duc/02_duc_code39_lsg.odt
Normal file
BIN
duc/03_duc_bildcodierung.odt
Normal file
BIN
duc/03_duc_bildcodierung_gitter.odg
Normal file
BIN
duc/03_duc_bildcodierung_lsg.odt
Normal file
BIN
duc/Beispielbilder (ChatGPT)/auto.png
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
duc/Beispielbilder (ChatGPT)/baum.png
Normal file
|
After Width: | Height: | Size: 1.5 MiB |
BIN
duc/Beispielbilder (ChatGPT)/boot.png
Normal file
|
After Width: | Height: | Size: 693 KiB |
BIN
duc/Beispielbilder (ChatGPT)/fisch 2.png
Normal file
|
After Width: | Height: | Size: 644 KiB |
BIN
duc/Beispielbilder (ChatGPT)/fisch.png
Normal file
|
After Width: | Height: | Size: 1.3 MiB |
BIN
duc/Beispielbilder (ChatGPT)/flugzeug.png
Normal file
|
After Width: | Height: | Size: 1.4 MiB |
BIN
duc/Beispielbilder (ChatGPT)/hase.png
Normal file
|
After Width: | Height: | Size: 673 KiB |
BIN
duc/Beispielbilder (ChatGPT)/haus.png
Normal file
|
After Width: | Height: | Size: 883 KiB |
BIN
duc/Beispielbilder (ChatGPT)/herz.png
Normal file
|
After Width: | Height: | Size: 957 KiB |
BIN
duc/Beispielbilder (ChatGPT)/hirsch.png
Normal file
|
After Width: | Height: | Size: 628 KiB |
BIN
duc/Beispielbilder (ChatGPT)/hund.png
Normal file
|
After Width: | Height: | Size: 658 KiB |
BIN
duc/Beispielbilder (ChatGPT)/katze.png
Normal file
|
After Width: | Height: | Size: 1 MiB |
BIN
duc/Beispielbilder (ChatGPT)/pferd.png
Normal file
|
After Width: | Height: | Size: 752 KiB |
BIN
duc/Beispielbilder (ChatGPT)/schirm.png
Normal file
|
After Width: | Height: | Size: 753 KiB |
BIN
duc/Beispielbilder (ChatGPT)/smiley 3.png
Normal file
|
After Width: | Height: | Size: 716 KiB |
BIN
duc/BilderRastern.exe
Normal file
95
duc/Code39-Generator/index.html
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd" xml:lang="de-DE">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>
|
||||
Code39-Generator
|
||||
</title>
|
||||
<script type="text/javascript" src="jquery-1.9.1.js"></script>
|
||||
<style type="text/css">
|
||||
body
|
||||
{
|
||||
font-family: Arial;
|
||||
margin: 40px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p>Text: <input id="txt" onkeyup="javascript:generate39();" onchange="javascript:generate39();" value="INFORMATIK" /></p>
|
||||
<p>Code39:</p>
|
||||
<p id="error">aa</p>
|
||||
<canvas id="cnv39" width="256" height="100"></canvas>
|
||||
<div style="position: fixed; bottom: 10px; right: 10px; font-size:80%;">
|
||||
<p xmlns:cc="http://creativecommons.org/ns#" xmlns:dct="http://purl.org/dc/terms/"><a property="dct:title" rel="cc:attributionURL" href="https://tools.info-bw.de/code39/">Code39-Generator</a> von <span property="cc:attributionName"><a href="mailto:rainer.helfrich@zsl-rstue.de">Rainer Helfrich</a></span> lizenziert als <a href="https://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC BY-SA 4.0<img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1" alt=""><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1" alt=""><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/sa.svg?ref=chooser-v1" alt=""></a></p>
|
||||
</div>
|
||||
</body>
|
||||
<script type="text/javascript">//<![CDATA[
|
||||
const chars="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-. *$/+%";
|
||||
const codes=new Array(
|
||||
"111221211","211211112","112211112","212211111","111221112","211221111","112221111","111211212",
|
||||
"211211211","112211211","211112112","112112112","212112111","111122112","211122111","112122111",
|
||||
"111112212","211112211","112112211","111122211","211111122","112111122","212111121","111121122",
|
||||
"211121121","112121121","111111222","211111221","112111221","111121221","221111112","122111112",
|
||||
"222111111","121121112","221121111","122121111","121111212","221111211","122111211","121121211",
|
||||
"121212111","121211121","121112121","111212121");
|
||||
function generate39()
|
||||
{
|
||||
var input = "*"+document.getElementById("txt").value+"*";
|
||||
const canvas = document.getElementById('cnv39');
|
||||
if (input.length == 2)
|
||||
{
|
||||
document.getElementById("error").textContent = "Leerer Text";
|
||||
canvas.style.display="none";
|
||||
return;
|
||||
}
|
||||
canvas.style.display="";
|
||||
var w = input.length * 13*2 - 2;
|
||||
document.getElementById("error").textContent = "";
|
||||
document.getElementById("cnv39").width = w;
|
||||
var img = new ImageData(w, 100);
|
||||
var x = 0;
|
||||
for (var i = 0; i < input.length; i++)
|
||||
{
|
||||
var idx = chars.indexOf(input[i]);
|
||||
if (idx < 0)
|
||||
{
|
||||
document.getElementById("error").textContent = "Ungültiges Zeichen '"+input[i]+"'.";
|
||||
return;
|
||||
}
|
||||
var code = codes[idx];
|
||||
if (i < input.length-1)
|
||||
code += "1";
|
||||
for (var j = 0; j < code.length; j++)
|
||||
{
|
||||
zeichneFarbe(img, x, w, j % 2 == 0);
|
||||
x++;
|
||||
if (code[j] == '2')
|
||||
{
|
||||
zeichneFarbe(img, x, w, j % 2 == 0);
|
||||
x++;
|
||||
}
|
||||
}
|
||||
}
|
||||
const ctx = canvas.getContext('2d');
|
||||
ctx.putImageData(img, 0, 0);
|
||||
}
|
||||
function zeichneFarbe(imgdata, x, width, bit)
|
||||
{
|
||||
for (var y = 0; y < 100; y++)
|
||||
{
|
||||
for (var i = 0; i < 3; i++)
|
||||
{
|
||||
imgdata.data[4*(y*width+2*x)+i] = bit ? 0 : 255;
|
||||
}
|
||||
imgdata.data[4*(y*width+2*x)+3] = 255;
|
||||
for (var i = 0; i < 3; i++)
|
||||
{
|
||||
imgdata.data[4*(y*width+2*x+1)+i] = bit ? 0 : 255;
|
||||
}
|
||||
imgdata.data[4*(y*width+2*x+1)+3] = 255;
|
||||
}
|
||||
}
|
||||
generate39();
|
||||
//]]></script>
|
||||
</html>
|
||||
BIN
duc/Material/Deutsche_Fingeralphabet.jpg
Normal file
|
After Width: | Height: | Size: 406 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/A.jpg
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/B.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/C.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/D.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/E.jpg
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/F.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/G.jpg
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/H.jpg
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/I.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/J.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/K.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/L.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/M.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/N.jpg
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/O.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/P.jpg
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/Q.jpg
Normal file
|
After Width: | Height: | Size: 9.6 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/R.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/S.jpg
Normal file
|
After Width: | Height: | Size: 9.8 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/Sch.jpg
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/T.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/U.jpg
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/V.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/W.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/X.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/Y.jpg
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/Z.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/Ä.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/Ö.jpg
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
duc/Material/Fingeralphabet Einzelbilder/Ü.jpg
Normal file
|
After Width: | Height: | Size: 12 KiB |
8
duc/Material/Fingeralphabet-Videos.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
Erklärung der Buchstaben:
|
||||
https://www.youtube.com/watch?v=UpNnIo80V8M
|
||||
Übungen (z.B. langsamer abspielen):
|
||||
Level 1-3:
|
||||
https://www.youtube.com/watch?v=-uKrwF2cKPY
|
||||
https://www.youtube.com/watch?v=neSdBJRu9Tk
|
||||
https://www.youtube.com/watch?v=Lmoy6K4ew3w
|
||||
Mehr davon: https://www.youtube.com/@gebaerdenservice/videos
|
||||
BIN
duc/Material/Informatik - Barcode Code-39 Vorlage (Mittag).odg
Normal file
310
duc/Material/morse.drawio
Normal file
|
|
@ -0,0 +1,310 @@
|
|||
<mxfile host="Electron" agent="Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/24.7.5 Chrome/126.0.6478.183 Electron/31.3.0 Safari/537.36" version="24.7.5">
|
||||
<diagram name="Page-1" id="97916047-d0de-89f5-080d-49f4d83e522f">
|
||||
<mxGraphModel dx="1195" dy="698" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1.5" pageWidth="1169" pageHeight="827" background="none" math="0" shadow="0">
|
||||
<root>
|
||||
<mxCell id="0" />
|
||||
<mxCell id="1" parent="0" />
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-57" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;entryX=0;entryY=0.75;entryDx=0;entryDy=0;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-55" target="WOqUL5JCup-MIi7DiAmT-56">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="70" y="30" as="targetPoint" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-130" value="<span style="font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);">-</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;labelBorderColor=none;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-57">
|
||||
<mxGeometry x="-0.4504" y="1" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-60" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-55" target="WOqUL5JCup-MIi7DiAmT-59">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="90" y="505" as="targetPoint" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-143" value="<span style="text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;">.</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-60">
|
||||
<mxGeometry x="-0.1041" y="-6" relative="1" as="geometry">
|
||||
<mxPoint y="1" as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-55" value="" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;fillStyle=solid;fillColor=#000000;" vertex="1" parent="1">
|
||||
<mxGeometry y="305.64703168680376" width="10" height="10" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-62" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-56" target="WOqUL5JCup-MIi7DiAmT-61">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-131" value="<span style="font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);">-</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-62">
|
||||
<mxGeometry x="-0.0014" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-71" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-56" target="WOqUL5JCup-MIi7DiAmT-70">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-144" value="<span style="text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;">.</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-71">
|
||||
<mxGeometry x="0.1798" y="1" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-56" value="<font style="font-size: 20px;"><font style="font-size: 20px;">T&nbsp;</font></font><font style="background-color: transparent; font-size: 20px;"><span style="font-size: 20px;">-</span></font>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="60" y="213.82411217802166" width="50" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-66" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-59" target="WOqUL5JCup-MIi7DiAmT-65">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-142" value="<span style="font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);">-</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-66">
|
||||
<mxGeometry x="-0.3303" y="-2" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-68" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-59" target="WOqUL5JCup-MIi7DiAmT-67">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-153" value="<span style="text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;">.</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-68">
|
||||
<mxGeometry x="-0.2195" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-59" value="E&nbsp;<span style="font-size: 20px;">.</span>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="60" y="382.4699511955858" width="50" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-92" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-61" target="WOqUL5JCup-MIi7DiAmT-91">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-132" value="<span style="text-wrap: wrap; background-color: rgb(251, 251, 251);">.</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-92">
|
||||
<mxGeometry x="-0.0772" y="-1" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-95" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-61" target="WOqUL5JCup-MIi7DiAmT-94">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-145" value="<span style="text-wrap: wrap; background-color: rgb(251, 251, 251);">-</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-95">
|
||||
<mxGeometry x="0.0779" y="6" relative="1" as="geometry">
|
||||
<mxPoint x="-1" as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-61" value="M&nbsp;<span style="font-size: 20px;">-</span><span style="font-size: 20px;">-</span>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="160" y="126.56099171874209" width="65" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-83" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-65" target="WOqUL5JCup-MIi7DiAmT-72">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-141" value="<span style="font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);">-</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-83">
|
||||
<mxGeometry x="-0.1594" y="-2" relative="1" as="geometry">
|
||||
<mxPoint x="1" as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-85" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-65" target="WOqUL5JCup-MIi7DiAmT-84">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-154" value="<span style="text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;">.</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-85">
|
||||
<mxGeometry x="-0.046" y="1" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-65" value="A&nbsp;<span style="font-size: 20px;">.</span><span style="font-size: 20px;">-</span>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="160" y="357.41171268306357" width="65" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-82" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-67" target="WOqUL5JCup-MIi7DiAmT-74">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-140" value="<span style="text-wrap: wrap; background-color: rgb(251, 251, 251);">.</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-82">
|
||||
<mxGeometry x="0.1583" y="-3" relative="1" as="geometry">
|
||||
<mxPoint x="1" as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-89" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-67" target="WOqUL5JCup-MIi7DiAmT-88">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-152" value="<span style="text-wrap: wrap; background-color: rgb(251, 251, 251);">-</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-89">
|
||||
<mxGeometry x="0.1143" y="2" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-67" value="I&nbsp;<span style="font-size: 20px;">.</span><span style="font-size: 20px;">.</span>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="160" y="419.9433784747507" width="65" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-77" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-70" target="WOqUL5JCup-MIi7DiAmT-76">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-134" value="<span style="font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);">-</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-77">
|
||||
<mxGeometry x="0.0096" y="6" relative="1" as="geometry">
|
||||
<mxPoint x="1" as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-81" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-70" target="WOqUL5JCup-MIi7DiAmT-80">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-155" value="<span style="text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;">.</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-81">
|
||||
<mxGeometry x="0.0072" y="1" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-70" value="<span style="font-size: 20px;"><font style="font-size: 20px;">N&nbsp;<span style="background-color: initial; font-size: 20px;">-.</span></font></span>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="160" y="217.96169283137735" width="65" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-72" value="W&nbsp;<span style="font-size: 20px;">.</span><span style="font-size: 20px;">-</span><span style="font-size: 20px;">-</span>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="275" y="339.30819601799635" width="80" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-103" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-74" target="WOqUL5JCup-MIi7DiAmT-102">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-202" value="<span style="font-family: &quot;Courier New&quot;; font-size: 20px; font-weight: 700; text-wrap: wrap; background-color: rgb(251, 251, 251);">-</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-103">
|
||||
<mxGeometry x="0.1789" y="1" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-194" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-74" target="WOqUL5JCup-MIi7DiAmT-193">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-195" value="<span style="font-weight: 700; text-wrap: wrap; background-color: rgb(251, 251, 251);"><font style="font-size: 20px;" face="Courier New">.</font></span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-194">
|
||||
<mxGeometry x="0.1968" y="1" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-74" value="S&nbsp;..." style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="275" y="491.93902803886033" width="80" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-117" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-76" target="WOqUL5JCup-MIi7DiAmT-116">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-135" value="<span style="font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);">-</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-117">
|
||||
<mxGeometry x="0.2" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-120" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-76" target="WOqUL5JCup-MIi7DiAmT-119">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-147" value="<span style="text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;">.</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-120">
|
||||
<mxGeometry x="0.1333" y="3" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-76" value="K&nbsp;<span style="font-size: 20px;">-</span><span style="font-size: 20px;">.</span><span style="font-size: 20px;">-</span>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="275" y="185.36381649138852" width="80" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-122" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-80" target="WOqUL5JCup-MIi7DiAmT-121">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-136" value="<span style="font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);">-</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-122">
|
||||
<mxGeometry x="0.0667" y="6" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-124" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-80" target="WOqUL5JCup-MIi7DiAmT-123">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-148" value="<span style="text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;">.</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-124">
|
||||
<mxGeometry x="-0.2667" y="-4" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-80" value="D&nbsp;<span style="font-size: 20px;">-</span><span style="font-size: 20px;">.</span><span style="font-size: 20px;">.</span>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="275" y="258.69714982472186" width="80" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-187" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1.011;exitY=0.506;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;orthogonal=1;exitPerimeter=0;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-84" target="WOqUL5JCup-MIi7DiAmT-186">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="645" y="2013.9435971396638" as="sourcePoint" />
|
||||
<mxPoint x="694.6" y="2025.3185971396638" as="targetPoint" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-189" value="<span style="font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);">.</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];textShadow=1;fontFamily=Courier New;fontSize=20;fontStyle=1" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-187">
|
||||
<mxGeometry x="-0.4101" y="-1" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-84" value="R&nbsp;<span style="font-size: 20px;">.</span><span style="font-size: 20px;">-</span><span style="font-size: 20px;">.</span>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="275" y="396.64152935132967" width="80" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-107" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-88" target="WOqUL5JCup-MIi7DiAmT-106">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-151" value="<span style="text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;">.</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-107">
|
||||
<mxGeometry x="-0.32" y="1" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-88" value="U&nbsp;..-" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="275" y="438.605694705527" width="80" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-170" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-91" target="WOqUL5JCup-MIi7DiAmT-169">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-199" value="<span style="font-family: &quot;Courier New&quot;; font-size: 20px; font-weight: 700; text-wrap: wrap; background-color: rgb(251, 251, 251);">-</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-170">
|
||||
<mxGeometry x="-0.3573" y="-1" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-173" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;" edge="1" parent="1" source="WOqUL5JCup-MIi7DiAmT-91" target="WOqUL5JCup-MIi7DiAmT-172">
|
||||
<mxGeometry relative="1" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-200" value="<span style="font-family: &quot;Courier New&quot;; font-size: 20px; font-weight: 700; text-wrap: wrap; background-color: rgb(251, 251, 251);">.</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-173">
|
||||
<mxGeometry x="0.0447" y="-1" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-91" value="G&nbsp;--." style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="275" y="109.59609815576896" width="80" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-94" value="O&nbsp;---" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="275" y="56.262764822435614" width="80" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-102" value="V ...-" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="405" y="472" width="90" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-106" value="F ..-." style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="405" y="440" width="90" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-116" value="Y&nbsp;<span style="font-size: 20px;">-</span><span style="font-size: 20px;">.</span><span style="font-size: 20px;">-</span><span style="font-size: 20px;">-</span>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="405" y="165" width="90" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-119" value="C&nbsp;<span style="font-size: 20px;">-</span><span style="font-size: 20px;">.</span><span style="font-size: 20px;">-</span><span style="font-size: 20px;">.</span>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="405" y="205" width="90" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-121" value="X&nbsp;<span style="font-size: 20px;">-</span><span style="font-size: 20px;">.</span><span style="font-size: 20px;">.</span><span style="font-size: 20px;">-</span>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="405" y="240" width="90" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-123" value="B&nbsp;<span style="font-size: 20px;">-</span><span style="font-size: 20px;">.</span><span style="font-size: 20px;">.</span><span style="font-size: 20px;">.</span>" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="405" y="280" width="90" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-163" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;exitX=0.994;exitY=0.192;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="1" target="WOqUL5JCup-MIi7DiAmT-167" source="WOqUL5JCup-MIi7DiAmT-72">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="820" y="1087.6" as="sourcePoint" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-164" value="<span style="font-size: 20px; text-wrap: wrap; background-color: rgb(251, 251, 251);">-</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-163">
|
||||
<mxGeometry x="0.0667" y="6" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-165" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;orthogonal=1;fontFamily=Courier New;fontStyle=1;fontSize=20;exitX=1;exitY=0.75;exitDx=0;exitDy=0;" edge="1" parent="1" target="WOqUL5JCup-MIi7DiAmT-168" source="WOqUL5JCup-MIi7DiAmT-72">
|
||||
<mxGeometry relative="1" as="geometry">
|
||||
<mxPoint x="820" y="1037.6" as="sourcePoint" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-166" value="<span style="text-wrap: wrap; background-color: rgb(251, 251, 251); font-size: 20px;">.</span>" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];fontFamily=Courier New;fontStyle=1;fontSize=20;textShadow=1;" vertex="1" connectable="0" parent="WOqUL5JCup-MIi7DiAmT-165">
|
||||
<mxGeometry x="-0.2667" y="-4" relative="1" as="geometry">
|
||||
<mxPoint as="offset" />
|
||||
</mxGeometry>
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-167" value="J&nbsp;.---" style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="405" y="320" width="90" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-168" value="P .--." style="rounded=1;whiteSpace=wrap;html=1;fontFamily=Courier New;fontStyle=1;fontSize=20;" vertex="1" parent="1">
|
||||
<mxGeometry x="405" y="360" width="90" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-169" value="Q&nbsp;--.-" style="whiteSpace=wrap;html=1;fontSize=20;fontFamily=Courier New;rounded=1;fontStyle=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="405" y="90" width="90" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-172" value="Z&nbsp;--.." style="whiteSpace=wrap;html=1;fontSize=20;fontFamily=Courier New;rounded=1;fontStyle=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="405" y="130" width="90" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-186" value="<span style="color: rgb(0, 0, 0); font-family: &quot;Courier New&quot;; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(251, 251, 251); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;">L&nbsp;</span><span style="forced-color-adjust: none; color: rgb(0, 0, 0); font-family: &quot;Courier New&quot;; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(251, 251, 251); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">.</span><span style="forced-color-adjust: none; color: rgb(0, 0, 0); font-family: &quot;Courier New&quot;; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(251, 251, 251); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">-</span><span style="forced-color-adjust: none; color: rgb(0, 0, 0); font-family: &quot;Courier New&quot;; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(251, 251, 251); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">.</span><span style="forced-color-adjust: none; color: rgb(0, 0, 0); font-family: &quot;Courier New&quot;; font-size: 20px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 700; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: rgb(251, 251, 251); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">.</span>" style="whiteSpace=wrap;html=1;fontSize=20;fontFamily=Courier New;rounded=1;fontStyle=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="405" y="397" width="90" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
<mxCell id="WOqUL5JCup-MIi7DiAmT-193" value="H&nbsp;...." style="whiteSpace=wrap;html=1;fontSize=20;fontFamily=Courier New;rounded=1;fontStyle=1;" vertex="1" parent="1">
|
||||
<mxGeometry x="405" y="512" width="90" height="25" as="geometry" />
|
||||
</mxCell>
|
||||
</root>
|
||||
</mxGraphModel>
|
||||
</diagram>
|
||||
</mxfile>
|
||||
4
duc/Material/morse.drawio.svg
Normal file
|
After Width: | Height: | Size: 221 KiB |
BIN
duc/comic_con.jpg
Normal file
|
After Width: | Height: | Size: 4.8 MiB |