textual-paint/screenshot.svg

245 lines
267 KiB
XML
Raw Normal View History

<svg class="rich-terminal" viewBox="0 0 1238 1026.0" xmlns="http://www.w3.org/2000/svg">
<!-- Generated with Rich https://www.textualize.io -->
<style>
@font-face {
font-family: "Fira Code";
src: local("FiraCode-Regular"),
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff2/FiraCode-Regular.woff2") format("woff2"),
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff/FiraCode-Regular.woff") format("woff");
font-style: normal;
font-weight: 400;
Add textual screenshot to readme This took a lot of trial and error to get this working. - First I had to figure out how to copy the terminal output as HTML. I had to configure keybindings for Select All and Copy As HTML in the Ubuntu terminal. - GitHub doesn't support line-height in markdown, so I came up with using an SVG with <foreignObject> to contain the screenshot HTML. - GitHub doesn't support inline SVG, so I had to use <img>, that's fine. An external file is cleaner anyways. - I spent a long time trying to fix the seams between rows of text. `line-height: <font-size>` is not `line-height: 1`! I think I tried `line-height: 1` first, but it wasn't working for some reason so I tried a bajillion things, having mentally discounted it, before circling back to it and trying it again and it actually worked. - I spent a long time futzing about with SVG viewports and units. - The text was staggered due to some of the Unicode characters, so I developed a script to fix that up. I managed to achieve a nice development cycle for this, but only near the end of developing it. Most of the time while working on it I was copying and pasting the updated code into the console after hitting up up enter to re-run grapheme-splitter's JS. The next commit will apply this script. - All in all, getting this screenshot working took basically all day! Compare that to my first day of progress on this project, having never used the Textual framework before, and also having not used Python for a while. In summary, coding is a land of contrasts. - VS Code's markdown rendering isn't working with the ch/lh units.
2023-04-14 09:21:27 +03:00
}
@font-face {
font-family: "Fira Code";
src: local("FiraCode-Bold"),
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff2/FiraCode-Bold.woff2") format("woff2"),
url("https://cdnjs.cloudflare.com/ajax/libs/firacode/6.2.0/woff/FiraCode-Bold.woff") format("woff");
font-style: bold;
font-weight: 700;
Add textual screenshot to readme This took a lot of trial and error to get this working. - First I had to figure out how to copy the terminal output as HTML. I had to configure keybindings for Select All and Copy As HTML in the Ubuntu terminal. - GitHub doesn't support line-height in markdown, so I came up with using an SVG with <foreignObject> to contain the screenshot HTML. - GitHub doesn't support inline SVG, so I had to use <img>, that's fine. An external file is cleaner anyways. - I spent a long time trying to fix the seams between rows of text. `line-height: <font-size>` is not `line-height: 1`! I think I tried `line-height: 1` first, but it wasn't working for some reason so I tried a bajillion things, having mentally discounted it, before circling back to it and trying it again and it actually worked. - I spent a long time futzing about with SVG viewports and units. - The text was staggered due to some of the Unicode characters, so I developed a script to fix that up. I managed to achieve a nice development cycle for this, but only near the end of developing it. Most of the time while working on it I was copying and pasting the updated code into the console after hitting up up enter to re-run grapheme-splitter's JS. The next commit will apply this script. - All in all, getting this screenshot working took basically all day! Compare that to my first day of progress on this project, having never used the Textual framework before, and also having not used Python for a while. In summary, coding is a land of contrasts. - VS Code's markdown rendering isn't working with the ch/lh units.
2023-04-14 09:21:27 +03:00
}
.terminal-1154856745-matrix {
font-family: Fira Code, monospace;
font-size: 20px;
line-height: 24.4px;
font-variant-east-asian: full-width;
}
Add textual screenshot to readme This took a lot of trial and error to get this working. - First I had to figure out how to copy the terminal output as HTML. I had to configure keybindings for Select All and Copy As HTML in the Ubuntu terminal. - GitHub doesn't support line-height in markdown, so I came up with using an SVG with <foreignObject> to contain the screenshot HTML. - GitHub doesn't support inline SVG, so I had to use <img>, that's fine. An external file is cleaner anyways. - I spent a long time trying to fix the seams between rows of text. `line-height: <font-size>` is not `line-height: 1`! I think I tried `line-height: 1` first, but it wasn't working for some reason so I tried a bajillion things, having mentally discounted it, before circling back to it and trying it again and it actually worked. - I spent a long time futzing about with SVG viewports and units. - The text was staggered due to some of the Unicode characters, so I developed a script to fix that up. I managed to achieve a nice development cycle for this, but only near the end of developing it. Most of the time while working on it I was copying and pasting the updated code into the console after hitting up up enter to re-run grapheme-splitter's JS. The next commit will apply this script. - All in all, getting this screenshot working took basically all day! Compare that to my first day of progress on this project, having never used the Textual framework before, and also having not used Python for a while. In summary, coding is a land of contrasts. - VS Code's markdown rendering isn't working with the ch/lh units.
2023-04-14 09:21:27 +03:00
.terminal-1154856745-title {
font-size: 18px;
font-weight: bold;
font-family: arial;
Add textual screenshot to readme This took a lot of trial and error to get this working. - First I had to figure out how to copy the terminal output as HTML. I had to configure keybindings for Select All and Copy As HTML in the Ubuntu terminal. - GitHub doesn't support line-height in markdown, so I came up with using an SVG with <foreignObject> to contain the screenshot HTML. - GitHub doesn't support inline SVG, so I had to use <img>, that's fine. An external file is cleaner anyways. - I spent a long time trying to fix the seams between rows of text. `line-height: <font-size>` is not `line-height: 1`! I think I tried `line-height: 1` first, but it wasn't working for some reason so I tried a bajillion things, having mentally discounted it, before circling back to it and trying it again and it actually worked. - I spent a long time futzing about with SVG viewports and units. - The text was staggered due to some of the Unicode characters, so I developed a script to fix that up. I managed to achieve a nice development cycle for this, but only near the end of developing it. Most of the time while working on it I was copying and pasting the updated code into the console after hitting up up enter to re-run grapheme-splitter's JS. The next commit will apply this script. - All in all, getting this screenshot working took basically all day! Compare that to my first day of progress on this project, having never used the Textual framework before, and also having not used Python for a while. In summary, coding is a land of contrasts. - VS Code's markdown rendering isn't working with the ch/lh units.
2023-04-14 09:21:27 +03:00
}
.terminal-1154856745-r1 { fill: #c5c8c6 }
.terminal-1154856745-r2 { fill: #1e1e1e }
.terminal-1154856745-r3 { fill: #6f6f6f }
.terminal-1154856745-r4 { fill: #1c1d1e }
.terminal-1154856745-r5 { fill: #ffffff }
.terminal-1154856745-r6 { fill: #101010 }
.terminal-1154856745-r7 { fill: #000000 }
.terminal-1154856745-r8 { fill: #9ea4a9 }
.terminal-1154856745-r9 { fill: #800000 }
.terminal-1154856745-r10 { fill: #808040 }
.terminal-1154856745-r11 { fill: #804000 }
.terminal-1154856745-r12 { fill: #b2b9be }
.terminal-1154856745-r13 { fill: #f1f8fd }
.terminal-1154856745-r14 { fill: #ddedf9;font-weight: bold }
.terminal-1154856745-r15 { fill: #1c1d1e;font-weight: bold }
.terminal-1154856745-r16 { fill: #c7cdd2 }
.terminal-1154856745-r17 { fill: #ffff00 }
.terminal-1154856745-r18 { fill: #212121 }
.terminal-1154856745-r19 { fill: #c0c0c0 }
.terminal-1154856745-r20 { fill: #1c1c1c;font-weight: bold }
.terminal-1154856745-r21 { fill: #0000ff }
.terminal-1154856745-r22 { fill: #ff0000 }
.terminal-1154856745-r23 { fill: #80ffff }
.terminal-1154856745-r24 { fill: #808080 }
.terminal-1154856745-r25 { fill: #c6c6c6 }
.terminal-1154856745-r26 { fill: #1c1c1c;font-style: italic; }
.terminal-1154856745-r27 { fill: #1c1c1c }
.terminal-1154856745-r28 { fill: #808000 }
.terminal-1154856745-r29 { fill: #507bb3 }
.terminal-1154856745-r30 { fill: #dde6ed;font-weight: bold }
.terminal-1154856745-r31 { fill: #001541 }
.terminal-1154856745-r32 { fill: #efefef }
</style>
<defs>
<clipPath id="terminal-1154856745-clip-terminal">
<rect x="0" y="0" width="1219.0" height="975.0" />
</clipPath>
<clipPath id="terminal-1154856745-line-0">
<rect x="0" y="1.5" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-1">
<rect x="0" y="25.9" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-2">
<rect x="0" y="50.3" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-3">
<rect x="0" y="74.7" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-4">
<rect x="0" y="99.1" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-5">
<rect x="0" y="123.5" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-6">
<rect x="0" y="147.9" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-7">
<rect x="0" y="172.3" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-8">
<rect x="0" y="196.7" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-9">
<rect x="0" y="221.1" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-10">
<rect x="0" y="245.5" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-11">
<rect x="0" y="269.9" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-12">
<rect x="0" y="294.3" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-13">
<rect x="0" y="318.7" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-14">
<rect x="0" y="343.1" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-15">
<rect x="0" y="367.5" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-16">
<rect x="0" y="391.9" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-17">
<rect x="0" y="416.3" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-18">
<rect x="0" y="440.7" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-19">
<rect x="0" y="465.1" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-20">
<rect x="0" y="489.5" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-21">
<rect x="0" y="513.9" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-22">
<rect x="0" y="538.3" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-23">
<rect x="0" y="562.7" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-24">
<rect x="0" y="587.1" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-25">
<rect x="0" y="611.5" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-26">
<rect x="0" y="635.9" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-27">
<rect x="0" y="660.3" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-28">
<rect x="0" y="684.7" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-29">
<rect x="0" y="709.1" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-30">
<rect x="0" y="733.5" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-31">
<rect x="0" y="757.9" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-32">
<rect x="0" y="782.3" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-33">
<rect x="0" y="806.7" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-34">
<rect x="0" y="831.1" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-35">
<rect x="0" y="855.5" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-36">
<rect x="0" y="879.9" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-37">
<rect x="0" y="904.3" width="1220" height="24.65"/>
</clipPath>
<clipPath id="terminal-1154856745-line-38">
<rect x="0" y="928.7" width="1220" height="24.65"/>
</clipPath>
</defs>
Add textual screenshot to readme This took a lot of trial and error to get this working. - First I had to figure out how to copy the terminal output as HTML. I had to configure keybindings for Select All and Copy As HTML in the Ubuntu terminal. - GitHub doesn't support line-height in markdown, so I came up with using an SVG with <foreignObject> to contain the screenshot HTML. - GitHub doesn't support inline SVG, so I had to use <img>, that's fine. An external file is cleaner anyways. - I spent a long time trying to fix the seams between rows of text. `line-height: <font-size>` is not `line-height: 1`! I think I tried `line-height: 1` first, but it wasn't working for some reason so I tried a bajillion things, having mentally discounted it, before circling back to it and trying it again and it actually worked. - I spent a long time futzing about with SVG viewports and units. - The text was staggered due to some of the Unicode characters, so I developed a script to fix that up. I managed to achieve a nice development cycle for this, but only near the end of developing it. Most of the time while working on it I was copying and pasting the updated code into the console after hitting up up enter to re-run grapheme-splitter's JS. The next commit will apply this script. - All in all, getting this screenshot working took basically all day! Compare that to my first day of progress on this project, having never used the Textual framework before, and also having not used Python for a while. In summary, coding is a land of contrasts. - VS Code's markdown rendering isn't working with the ch/lh units.
2023-04-14 09:21:27 +03:00
<rect fill="#292929" stroke="rgba(255,255,255,0.35)" stroke-width="1" x="1" y="1" width="1236" height="1024" rx="8"/><text class="terminal-1154856745-title" fill="#c5c8c6" text-anchor="middle" x="618" y="27">Paint</text>
<g transform="translate(26,22)">
<circle cx="0" cy="0" r="7" fill="#ff5f57"/>
<circle cx="22" cy="0" r="7" fill="#febc2e"/>
<circle cx="44" cy="0" r="7" fill="#28c840"/>
</g>
<g transform="translate(9, 41)" clip-path="url(#terminal-1154856745-clip-terminal)">
<rect fill="#e9e9e9" x="0" y="1.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#e9e9e9" x="12.2" y="1.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#e9e9e9" x="24.4" y="1.5" width="61" height="24.65" shape-rendering="crispEdges"/><rect fill="#e9e9e9" x="85.4" y="1.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#e9e9e9" x="97.6" y="1.5" width="317.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#e9e9e9" x="414.8" y="1.5" width="97.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#e9e9e9" x="512.4" y="1.5" width="256.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#e9e9e9" x="768.6" y="1.5" width="329.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#e9e9e9" x="1098" y="1.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#e9e9e9" x="1110.2" y="1.5" width="0" height="24.65" shape-rendering="crispEdges"/><rect fill="#e9e9e9" x="1110.2" y="1.5" width="97.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#e9e9e9" x="1207.8" y="1.5" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="0" y="25.9" width="73.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="73.2" y="25.9" width="73.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="146.4" y="25.9" width="73.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="219.6" y="25.9" width="85.4" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="305" y="25.9" width="97.6" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="402.6" y="25.9" width="73.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="475.8" y="25.9" width="744.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="0" y="50.3" width="0" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="0" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="12.2" y="50.3" width="48.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="61" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="73.2" y="50.3" width="0" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="73.2" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="85.4" y="50.3" width="48.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="134.2" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="146.4" y="50.3" width="0" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="146.4" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="158.6" y="50.3" width="48.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="207.4" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="219.6" y="50.3" width="0" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="219.6" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="231.8" y="50.3" width="61" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="292.8" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="305" y="50.3" width="0" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="305" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="317.2" y="50.3" width="73.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="390.4" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="402.6" y="50.3" width="0" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="402.6" y="50.3" width="12.2" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="414.8" y="50.3" width="48.8" height="24.65" shape-rendering="crispEdges"/><rect fill="#dce3e8" x="463.6" y="50.3"
<g class="terminal-1154856745-matrix">
<text class="terminal-1154856745-r2" x="12.2" y="20" textLength="12.2" clip-path="url(#terminal-1154856745-line-0)"></text><text class="terminal-1154856745-r2" x="414.8" y="20" textLength="97.6" clip-path="url(#terminal-1154856745-line-0)">Paint&#160;&#160;</text><text class="terminal-1154856745-r3" x="512.4" y="20" textLength="256.2" clip-path="url(#terminal-1154856745-line-0)">scroll_and_candle.ans</text><text class="terminal-1154856745-r1" x="1220" y="20" textLength="12.2" clip-path="url(#terminal-1154856745-line-0)">
</text><text class="terminal-1154856745-r1" x="1220" y="44.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-1)">
</text><text class="terminal-1154856745-r4" x="12.2" y="68.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-2)">File</text><text class="terminal-1154856745-r4" x="85.4" y="68.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-2)">Edit</text><text class="terminal-1154856745-r4" x="158.6" y="68.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-2)">View</text><text class="terminal-1154856745-r4" x="231.8" y="68.8" textLength="61" clip-path="url(#terminal-1154856745-line-2)">Image</text><text class="terminal-1154856745-r4" x="317.2" y="68.8" textLength="73.2" clip-path="url(#terminal-1154856745-line-2)">Colors</text><text class="terminal-1154856745-r4" x="414.8" y="68.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-2)">Help</text><text class="terminal-1154856745-r1" x="1220" y="68.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-2)">
</text><text class="terminal-1154856745-r1" x="1220" y="93.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-3)">
</text><text class="terminal-1154856745-r5" x="12.2" y="117.6" textLength="73.2" clip-path="url(#terminal-1154856745-line-4)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r5" x="97.6" y="117.6" textLength="73.2" clip-path="url(#terminal-1154856745-line-4)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r1" x="1220" y="117.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-4)">
</text><text class="terminal-1154856745-r4" x="36.6" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)"></text><text class="terminal-1154856745-r4" x="122" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)"></text><text class="terminal-1154856745-r7" x="207.4" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="219.6" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="231.8" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="244" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">_</text><text class="terminal-1154856745-r7" x="256.2" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">_</text><text class="terminal-1154856745-r7" x="268.4" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="280.6" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="292.8" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="305" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="317.2" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">_</text><text class="terminal-1154856745-r7" x="329.4" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="341.6" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="353.8" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="366" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="378.2" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="390.4" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="402.6" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="414.8" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">_</text><text class="terminal-1154856745-r7" x="427" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">_</text><text class="terminal-1154856745-r7" x="439.2" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">_</text><text class="terminal-1154856745-r7" x="451.4" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="463.6" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="475.8" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="488" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="500.2" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="512.4" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">=</text><text class="terminal-1154856745-r7" x="524.6" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">_</text><text class="terminal-1154856745-r7" x="536.8" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">_</text><text class="terminal-1154856745-r7" x="549" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">_</text><text class="terminal-1154856745-r7" x="561.2" y="142" textLength="12.2" clip-path="url(#terminal-1154856745-line-5)">_</text><text class="terminal-1154856745-r7" x="573.4" y="142" textLength="
</text><text class="terminal-1154856745-r8" x="12.2" y="166.4" textLength="73.2" clip-path="url(#terminal-1154856745-line-6)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r8" x="97.6" y="166.4" textLength="73.2" clip-path="url(#terminal-1154856745-line-6)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r7" x="207.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r7" x="219.6" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r7" x="231.8" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r7" x="244" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r7" x="256.2" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r7" x="268.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r7" x="280.6" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r7" x="292.8" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">_</text><text class="terminal-1154856745-r7" x="305" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">_</text><text class="terminal-1154856745-r7" x="317.2" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">_</text><text class="terminal-1154856745-r7" x="329.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">_</text><text class="terminal-1154856745-r7" x="341.6" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">_</text><text class="terminal-1154856745-r7" x="353.8" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">_</text><text class="terminal-1154856745-r7" x="366" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">_</text><text class="terminal-1154856745-r7" x="378.2" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r7" x="390.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r7" x="402.6" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r7" x="414.8" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r7" x="427" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r7" x="439.2" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r7" x="451.4" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r7" x="463.6" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)">=</text><text class="terminal-1154856745-r9" x="475.8" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)"></text><text class="terminal-1154856745-r10" x="488" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)"></text><text class="terminal-1154856745-r10" x="500.2" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)"></text><text class="terminal-1154856745-r7" x="524.6" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)"></text><text class="terminal-1154856745-r7" x="536.8" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)"></text><text class="terminal-1154856745-r7" x="549" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)"></text><text class="terminal-1154856745-r7" x="561.2" y="166.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-6)"></text><text class="terminal-1154856745-r7" x="573.4" y="166.4" textLength="12.2" clip-path
</text><text class="terminal-1154856745-r5" x="12.2" y="190.8" textLength="73.2" clip-path="url(#terminal-1154856745-line-7)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r5" x="97.6" y="190.8" textLength="73.2" clip-path="url(#terminal-1154856745-line-7)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r7" x="207.4" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">=</text><text class="terminal-1154856745-r7" x="219.6" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">=</text><text class="terminal-1154856745-r7" x="231.8" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">=</text><text class="terminal-1154856745-r7" x="244" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">_</text><text class="terminal-1154856745-r7" x="256.2" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">_</text><text class="terminal-1154856745-r7" x="268.4" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">_</text><text class="terminal-1154856745-r7" x="280.6" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">_</text><text class="terminal-1154856745-r12" x="292.8" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)"></text><text class="terminal-1154856745-r12" x="305" y="190.8" textLength="610" clip-path="url(#terminal-1154856745-line-7)">▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀</text><text class="terminal-1154856745-r12" x="915" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)"></text><text class="terminal-1154856745-r7" x="939.4" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)"></text><text class="terminal-1154856745-r11" x="951.6" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)"></text><text class="terminal-1154856745-r7" x="963.8" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">=</text><text class="terminal-1154856745-r7" x="976" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">_</text><text class="terminal-1154856745-r7" x="988.2" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">_</text><text class="terminal-1154856745-r7" x="1000.4" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">=</text><text class="terminal-1154856745-r7" x="1012.6" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">=</text><text class="terminal-1154856745-r7" x="1024.8" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">=</text><text class="terminal-1154856745-r7" x="1037" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">)</text><text class="terminal-1154856745-r7" x="1049.2" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">=</text><text class="terminal-1154856745-r7" x="1061.4" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">=</text><text class="terminal-1154856745-r7" x="1073.6" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">=</text><text class="terminal-1154856745-r7" x="1085.8" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">=</text><text class="terminal-1154856745-r7" x="1098" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">=</text><text class="terminal-1154856745-r7" x="1110.2" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">=</text><text class="terminal-1154856745-r7" x="1122.4" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">=</text><text class="terminal-1154856745-r7" x="1134.6" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">_</text><text class="terminal-1154856745-r7" x="1146.8" y="190.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-7)">_</text><text class="terminal-1154856745-r7" x="1159" y="190.8"
</text><text class="terminal-1154856745-r4" x="36.6" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">🧼</text><text class="terminal-1154856745-r4" x="122" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">🪣</text><text class="terminal-1154856745-r7" x="207.4" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">=</text><text class="terminal-1154856745-r7" x="219.6" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">=</text><text class="terminal-1154856745-r7" x="231.8" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">_</text><text class="terminal-1154856745-r7" x="244" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">=</text><text class="terminal-1154856745-r7" x="256.2" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">\</text><text class="terminal-1154856745-r7" x="268.4" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">=</text><text class="terminal-1154856745-r7" x="280.6" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">=</text><text class="terminal-1154856745-r12" x="292.8" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)"></text><text class="terminal-1154856745-r13" x="841.8" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)"></text><text class="terminal-1154856745-r13" x="854" y="215.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-8)">▄▄▄▄</text><text class="terminal-1154856745-r13" x="902.8" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)"></text><text class="terminal-1154856745-r12" x="915" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)"></text><text class="terminal-1154856745-r7" x="963.8" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">=</text><text class="terminal-1154856745-r7" x="976" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">=</text><text class="terminal-1154856745-r7" x="988.2" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">=</text><text class="terminal-1154856745-r7" x="1000.4" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">=</text><text class="terminal-1154856745-r7" x="1012.6" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">=</text><text class="terminal-1154856745-r7" x="1024.8" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">(</text><text class="terminal-1154856745-r7" x="1037" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)"></text><text class="terminal-1154856745-r7" x="1049.2" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">)</text><text class="terminal-1154856745-r7" x="1061.4" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">_</text><text class="terminal-1154856745-r7" x="1073.6" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">_</text><text class="terminal-1154856745-r7" x="1085.8" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">_</text><text class="terminal-1154856745-r7" x="1098" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">_</text><text class="terminal-1154856745-r7" x="1110.2" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">_</text><text class="terminal-1154856745-r7" x="1122.4" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">_</text><text class="terminal-1154856745-r7" x="1134.6" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">=</text><text class="terminal-1154856745-r7" x="1146.8" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">=</text><text class="terminal-1154856745-r7" x="1159" y="215.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-8)">=</text><text class="terminal-1154856745-r7" x="1171.2" y="215.2" textLength="12.2" clip-path="url(
</text><text class="terminal-1154856745-r8" x="12.2" y="239.6" textLength="73.2" clip-path="url(#terminal-1154856745-line-9)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r8" x="97.6" y="239.6" textLength="73.2" clip-path="url(#terminal-1154856745-line-9)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r7" x="207.4" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">_</text><text class="terminal-1154856745-r7" x="219.6" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">/</text><text class="terminal-1154856745-r7" x="231.8" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">/</text><text class="terminal-1154856745-r7" x="244" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">=</text><text class="terminal-1154856745-r7" x="256.2" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">=</text><text class="terminal-1154856745-r7" x="268.4" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">\</text><text class="terminal-1154856745-r7" x="280.6" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">\</text><text class="terminal-1154856745-r12" x="292.8" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)"></text><text class="terminal-1154856745-r14" x="317.2" y="239.6" textLength="134.2" clip-path="url(#terminal-1154856745-line-9)">About&#160;Paint</text><text class="terminal-1154856745-r13" x="841.8" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)"></text><text class="terminal-1154856745-r15" x="866.2" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">🗙</text><text class="terminal-1154856745-r16" x="902.8" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)"></text><text class="terminal-1154856745-r12" x="915" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)"></text><text class="terminal-1154856745-r10" x="927.2" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)"></text><text class="terminal-1154856745-r10" x="939.4" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)"></text><text class="terminal-1154856745-r7" x="951.6" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)"></text><text class="terminal-1154856745-r7" x="963.8" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">=</text><text class="terminal-1154856745-r7" x="976" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">=</text><text class="terminal-1154856745-r7" x="988.2" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">=</text><text class="terminal-1154856745-r7" x="1000.4" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">=</text><text class="terminal-1154856745-r7" x="1012.6" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">(</text><text class="terminal-1154856745-r7" x="1024.8" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">(</text><text class="terminal-1154856745-r7" x="1037" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">_</text><text class="terminal-1154856745-r7" x="1049.2" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">_</text><text class="terminal-1154856745-r7" x="1061.4" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">\</text><text class="terminal-1154856745-r7" x="1073.6" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">=</text><text class="terminal-1154856745-r7" x="1085.8" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">=</text><text class="terminal-1154856745-r7" x="1098" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">=</text><text class="terminal-1154856745-r7" x="1110.2" y="239.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-9)">=</text><text class="terminal-1154856745-r7" x="1122.4"
</text><text class="terminal-1154856745-r5" x="12.2" y="264" textLength="73.2" clip-path="url(#terminal-1154856745-line-10)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r5" x="97.6" y="264" textLength="73.2" clip-path="url(#terminal-1154856745-line-10)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r7" x="207.4" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">/</text><text class="terminal-1154856745-r7" x="219.6" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">/</text><text class="terminal-1154856745-r7" x="231.8" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">(</text><text class="terminal-1154856745-r7" x="244" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">O</text><text class="terminal-1154856745-r7" x="256.2" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">)</text><text class="terminal-1154856745-r7" x="268.4" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">)</text><text class="terminal-1154856745-r7" x="280.6" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">_</text><text class="terminal-1154856745-r12" x="292.8" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)"></text><text class="terminal-1154856745-r16" x="841.8" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)"></text><text class="terminal-1154856745-r16" x="854" y="264" textLength="48.8" clip-path="url(#terminal-1154856745-line-10)">▀▀▀▀</text><text class="terminal-1154856745-r16" x="902.8" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)"></text><text class="terminal-1154856745-r12" x="915" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)"></text><text class="terminal-1154856745-r10" x="927.2" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)"></text><text class="terminal-1154856745-r7" x="939.4" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)"></text><text class="terminal-1154856745-r7" x="951.6" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">=</text><text class="terminal-1154856745-r7" x="963.8" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">=</text><text class="terminal-1154856745-r7" x="976" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">=</text><text class="terminal-1154856745-r7" x="988.2" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">=</text><text class="terminal-1154856745-r7" x="1000.4" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">_</text><text class="terminal-1154856745-r7" x="1012.6" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">_</text><text class="terminal-1154856745-r7" x="1024.8" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">=</text><text class="terminal-1154856745-r17" x="1037" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)"></text><text class="terminal-1154856745-r7" x="1049.2" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">=</text><text class="terminal-1154856745-r7" x="1061.4" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">)</text><text class="terminal-1154856745-r7" x="1073.6" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">=</text><text class="terminal-1154856745-r7" x="1085.8" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">=</text><text class="terminal-1154856745-r7" x="1098" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">=</text><text class="terminal-1154856745-r7" x="1110.2" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">=</text><text class="terminal-1154856745-r7" x="1122.4" y="264" textLength="12.2" clip-path="url(#terminal-1154856745-line-10)">_</text><text class="terminal-1154856745-r7" x="1134.6" y="264" textLength="12.2" clip-path="url
</text><text class="terminal-1154856745-r4" x="36.6" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">💉</text><text class="terminal-1154856745-r4" x="122" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">🔍</text><text class="terminal-1154856745-r7" x="207.4" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">\</text><text class="terminal-1154856745-r7" x="219.6" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">\</text><text class="terminal-1154856745-r7" x="231.8" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">\</text><text class="terminal-1154856745-r7" x="244" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">=</text><text class="terminal-1154856745-r7" x="256.2" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">=</text><text class="terminal-1154856745-r7" x="268.4" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">/</text><text class="terminal-1154856745-r7" x="280.6" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">/</text><text class="terminal-1154856745-r12" x="292.8" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)"></text><text class="terminal-1154856745-r12" x="915" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)"></text><text class="terminal-1154856745-r7" x="927.2" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">=</text><text class="terminal-1154856745-r7" x="939.4" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">=</text><text class="terminal-1154856745-r7" x="951.6" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">=</text><text class="terminal-1154856745-r7" x="963.8" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">\</text><text class="terminal-1154856745-r7" x="976" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">_</text><text class="terminal-1154856745-r7" x="988.2" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">_</text><text class="terminal-1154856745-r7" x="1000.4" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">=</text><text class="terminal-1154856745-r7" x="1012.6" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">(</text><text class="terminal-1154856745-r7" x="1024.8" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">=</text><text class="terminal-1154856745-r17" x="1037" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)"></text><text class="terminal-1154856745-r7" x="1049.2" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">=</text><text class="terminal-1154856745-r7" x="1061.4" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">)</text><text class="terminal-1154856745-r7" x="1073.6" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">)</text><text class="terminal-1154856745-r7" x="1085.8" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">=</text><text class="terminal-1154856745-r7" x="1098" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">_</text><text class="terminal-1154856745-r7" x="1110.2" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">_</text><text class="terminal-1154856745-r7" x="1122.4" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">=</text><text class="terminal-1154856745-r7" x="1134.6" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">=</text><text class="terminal-1154856745-r7" x="1146.8" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">=</text><text class="terminal-1154856745-r7" x="1159" y="288.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-11)">_</text><text class="terminal-1154856745-r7" x="1171.2" y="288.4" textLength="12.2"
</text><text class="terminal-1154856745-r8" x="12.2" y="312.8" textLength="73.2" clip-path="url(#terminal-1154856745-line-12)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r8" x="97.6" y="312.8" textLength="73.2" clip-path="url(#terminal-1154856745-line-12)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r7" x="207.4" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">=</text><text class="terminal-1154856745-r7" x="219.6" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">_</text><text class="terminal-1154856745-r7" x="231.8" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">\</text><text class="terminal-1154856745-r7" x="244" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">\</text><text class="terminal-1154856745-r7" x="256.2" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">/</text><text class="terminal-1154856745-r7" x="268.4" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">_</text><text class="terminal-1154856745-r7" x="280.6" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">_</text><text class="terminal-1154856745-r12" x="292.8" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)"></text><text class="terminal-1154856745-r12" x="915" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)"></text><text class="terminal-1154856745-r7" x="927.2" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">=</text><text class="terminal-1154856745-r7" x="939.4" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">=</text><text class="terminal-1154856745-r7" x="951.6" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">=</text><text class="terminal-1154856745-r7" x="963.8" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">_</text><text class="terminal-1154856745-r7" x="976" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">=</text><text class="terminal-1154856745-r7" x="988.2" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">=</text><text class="terminal-1154856745-r7" x="1000.4" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">(</text><text class="terminal-1154856745-r7" x="1012.6" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">=</text><text class="terminal-1154856745-r17" x="1024.8" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)"></text><text class="terminal-1154856745-r5" x="1037" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)"></text><text class="terminal-1154856745-r17" x="1049.2" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)"></text><text class="terminal-1154856745-r7" x="1061.4" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">_</text><text class="terminal-1154856745-r7" x="1073.6" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">)</text><text class="terminal-1154856745-r7" x="1085.8" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">_</text><text class="terminal-1154856745-r7" x="1098" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">=</text><text class="terminal-1154856745-r7" x="1110.2" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">=</text><text class="terminal-1154856745-r7" x="1122.4" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">_</text><text class="terminal-1154856745-r7" x="1134.6" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">_</text><text class="terminal-1154856745-r7" x="1146.8" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">_</text><text class="terminal-1154856745-r7" x="1159" y="312.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-12)">=</text><text class="terminal-1154856745-r7" x="1
</text><text class="terminal-1154856745-r12" x="12.2" y="337.2" textLength="73.2" clip-path="url(#terminal-1154856745-line-13)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r5" x="97.6" y="337.2" textLength="73.2" clip-path="url(#terminal-1154856745-line-13)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r7" x="207.4" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="219.6" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="231.8" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">_</text><text class="terminal-1154856745-r7" x="244" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="256.2" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="268.4" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="280.6" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r12" x="292.8" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)"></text><text class="terminal-1154856745-r12" x="915" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)"></text><text class="terminal-1154856745-r7" x="927.2" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">_</text><text class="terminal-1154856745-r7" x="939.4" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">_</text><text class="terminal-1154856745-r7" x="951.6" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">_</text><text class="terminal-1154856745-r7" x="963.8" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="976" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="988.2" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="1000.4" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="1012.6" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="1024.8" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">_</text><text class="terminal-1154856745-r17" x="1037" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)"></text><text class="terminal-1154856745-r7" x="1049.2" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">_</text><text class="terminal-1154856745-r7" x="1061.4" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">)</text><text class="terminal-1154856745-r7" x="1073.6" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="1085.8" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="1098" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">_</text><text class="terminal-1154856745-r7" x="1110.2" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">_</text><text class="terminal-1154856745-r7" x="1122.4" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">\</text><text class="terminal-1154856745-r7" x="1134.6" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="1146.8" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="1159" y="337.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-13)">=</text><text class="terminal-1154856745-r7" x="1171.
</text><text class="terminal-1154856745-r18" x="36.6" y="361.6" textLength="24.4" clip-path="url(#terminal-1154856745-line-14)">✏️</text><text class="terminal-1154856745-r4" x="122" y="361.6" textLength="24.4" clip-path="url(#terminal-1154856745-line-14)">🖌️</text><text class="terminal-1154856745-r7" x="207.4" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="219.6" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="231.8" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="244" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="256.2" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="268.4" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="280.6" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r12" x="292.8" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)"></text><text class="terminal-1154856745-r7" x="378.2" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)"></text><text class="terminal-1154856745-r7" x="390.4" y="361.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-14)">.&#160;,&#160;</text><text class="terminal-1154856745-r19" x="439.2" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">🮈</text><text class="terminal-1154856745-r5" x="451.4" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)"></text><text class="terminal-1154856745-r20" x="488" y="361.6" textLength="158.6" clip-path="url(#terminal-1154856745-line-14)">Textual&#160;Paint</text><text class="terminal-1154856745-r12" x="915" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)"></text><text class="terminal-1154856745-r7" x="927.2" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="939.4" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="951.6" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="963.8" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="976" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="988.2" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="1000.4" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="1012.6" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="1024.8" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="1037" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)"></text><text class="terminal-1154856745-r7" x="1049.2" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="1061.4" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="1073.6" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7" x="1085.8" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">_</text><text class="terminal-1154856745-r7" x="1098" y="361.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-14)">=</text><text class="terminal-1154856745-r7
</text><text class="terminal-1154856745-r5" x="12.2" y="386" textLength="73.2" clip-path="url(#terminal-1154856745-line-15)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r8" x="97.6" y="386" textLength="73.2" clip-path="url(#terminal-1154856745-line-15)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r7" x="207.4" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="219.6" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="231.8" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="244" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="256.2" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="268.4" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="280.6" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r12" x="292.8" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)"></text><text class="terminal-1154856745-r21" x="378.2" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">🙽</text><text class="terminal-1154856745-r22" x="390.4" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)"></text><text class="terminal-1154856745-r17" x="402.6" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">🙼</text><text class="terminal-1154856745-r19" x="451.4" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)"></text><text class="terminal-1154856745-r12" x="915" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)"></text><text class="terminal-1154856745-r7" x="927.2" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="939.4" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="951.6" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="963.8" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">_</text><text class="terminal-1154856745-r7" x="976" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="988.2" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="1000.4" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">_</text><text class="terminal-1154856745-r5" x="1012.6" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)"></text><text class="terminal-1154856745-r19" x="1037" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)"></text><text class="terminal-1154856745-r7" x="1073.6" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">_</text><text class="terminal-1154856745-r7" x="1085.8" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="1098" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="1110.2" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="1122.4" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">=</text><text class="terminal-1154856745-r7" x="1134.6" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">_</text><text class="terminal-1154856745-r7" x="1146.8" y="386" textLength="12.2" clip-path="url(#terminal-1154856745-line-15)">_</text><text class="terminal-1154856745-r7" x="1159" y="386" textLength="12.2" clip-path="url(#termin
</text><text class="terminal-1154856745-r5" x="12.2" y="410.4" textLength="73.2" clip-path="url(#terminal-1154856745-line-16)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r5" x="97.6" y="410.4" textLength="73.2" clip-path="url(#terminal-1154856745-line-16)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r7" x="207.4" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">=</text><text class="terminal-1154856745-r7" x="219.6" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">=</text><text class="terminal-1154856745-r7" x="231.8" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">=</text><text class="terminal-1154856745-r7" x="244" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">=</text><text class="terminal-1154856745-r7" x="256.2" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">=</text><text class="terminal-1154856745-r7" x="268.4" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">_</text><text class="terminal-1154856745-r7" x="280.6" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">_</text><text class="terminal-1154856745-r12" x="292.8" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)"></text><text class="terminal-1154856745-r5" x="378.2" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">🮉</text><text class="terminal-1154856745-r24" x="390.4" y="410.4" textLength="24.4" clip-path="url(#terminal-1154856745-line-16)">__</text><text class="terminal-1154856745-r25" x="414.8" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)"></text><text class="terminal-1154856745-r5" x="427" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">🮉</text><text class="terminal-1154856745-r26" x="488" y="410.4" textLength="317.2" clip-path="url(#terminal-1154856745-line-16)">MS&#160;Paint&#160;in&#160;your&#160;terminal.</text><text class="terminal-1154856745-r12" x="915" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)"></text><text class="terminal-1154856745-r7" x="927.2" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">=</text><text class="terminal-1154856745-r7" x="939.4" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">=</text><text class="terminal-1154856745-r7" x="951.6" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">_</text><text class="terminal-1154856745-r7" x="963.8" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">=</text><text class="terminal-1154856745-r7" x="976" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">_</text><text class="terminal-1154856745-r7" x="988.2" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">_</text><text class="terminal-1154856745-r7" x="1000.4" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">=</text><text class="terminal-1154856745-r5" x="1049.2" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)"></text><text class="terminal-1154856745-r7" x="1061.4" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">\</text><text class="terminal-1154856745-r7" x="1073.6" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">\</text><text class="terminal-1154856745-r7" x="1085.8" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">=</text><text class="terminal-1154856745-r7" x="1098" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">_</text><text class="terminal-1154856745-r7" x="1110.2" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">_</text><text class="terminal-1154856745-r7" x="1122.4" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">_</text><text class="terminal-1154856745-r7" x="1134.6" y="410.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-16)">=<
</text><text class="terminal-1154856745-r4" x="36.6" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">💨</text><text class="terminal-1154856745-r4" x="122" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)"></text><text class="terminal-1154856745-r7" x="207.4" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">=</text><text class="terminal-1154856745-r7" x="219.6" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">_</text><text class="terminal-1154856745-r7" x="231.8" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">_</text><text class="terminal-1154856745-r7" x="244" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">_</text><text class="terminal-1154856745-r7" x="256.2" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">_</text><text class="terminal-1154856745-r7" x="268.4" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">=</text><text class="terminal-1154856745-r7" x="280.6" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">=</text><text class="terminal-1154856745-r12" x="292.8" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)"></text><text class="terminal-1154856745-r19" x="378.2" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">🮈</text><text class="terminal-1154856745-r24" x="390.4" y="434.8" textLength="36.6" clip-path="url(#terminal-1154856745-line-17)">__▍</text><text class="terminal-1154856745-r12" x="915" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)"></text><text class="terminal-1154856745-r7" x="927.2" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">=</text><text class="terminal-1154856745-r7" x="939.4" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">=</text><text class="terminal-1154856745-r7" x="951.6" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">_</text><text class="terminal-1154856745-r7" x="963.8" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">_</text><text class="terminal-1154856745-r7" x="976" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">=</text><text class="terminal-1154856745-r7" x="988.2" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">=</text><text class="terminal-1154856745-r7" x="1000.4" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">/</text><text class="terminal-1154856745-r5" x="1012.6" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)"></text><text class="terminal-1154856745-r5" x="1049.2" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)"></text><text class="terminal-1154856745-r7" x="1061.4" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">)</text><text class="terminal-1154856745-r7" x="1073.6" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">)</text><text class="terminal-1154856745-r7" x="1085.8" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">)</text><text class="terminal-1154856745-r7" x="1098" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">=</text><text class="terminal-1154856745-r7" x="1110.2" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">=</text><text class="terminal-1154856745-r7" x="1122.4" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">=</text><text class="terminal-1154856745-r7" x="1134.6" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">=</text><text class="terminal-1154856745-r7" x="1146.8" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">=</text><text class="terminal-1154856745-r7" x="1159" y="434.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-17)">=</text><text class="terminal-1154856745-r7" x="1171.2" y="434.8" textLeng
</text><text class="terminal-1154856745-r8" x="12.2" y="459.2" textLength="73.2" clip-path="url(#terminal-1154856745-line-18)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r8" x="97.6" y="459.2" textLength="73.2" clip-path="url(#terminal-1154856745-line-18)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r7" x="207.4" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">_</text><text class="terminal-1154856745-r7" x="219.6" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">=</text><text class="terminal-1154856745-r7" x="231.8" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">=</text><text class="terminal-1154856745-r7" x="244" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">=</text><text class="terminal-1154856745-r7" x="256.2" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">=</text><text class="terminal-1154856745-r7" x="268.4" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">_</text><text class="terminal-1154856745-r7" x="280.6" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">_</text><text class="terminal-1154856745-r12" x="292.8" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)"></text><text class="terminal-1154856745-r20" x="488" y="459.2" textLength="97.6" clip-path="url(#terminal-1154856745-line-18)">Version:</text><text class="terminal-1154856745-r27" x="585.6" y="459.2" textLength="73.2" clip-path="url(#terminal-1154856745-line-18)">&#160;0.1.0</text><text class="terminal-1154856745-r12" x="915" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)"></text><text class="terminal-1154856745-r7" x="927.2" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">=</text><text class="terminal-1154856745-r7" x="939.4" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">=</text><text class="terminal-1154856745-r7" x="951.6" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">=</text><text class="terminal-1154856745-r7" x="963.8" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">_</text><text class="terminal-1154856745-r7" x="976" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">_</text><text class="terminal-1154856745-r7" x="988.2" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">(</text><text class="terminal-1154856745-r7" x="1000.4" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">(</text><text class="terminal-1154856745-r5" x="1012.6" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)"></text><text class="terminal-1154856745-r5" x="1049.2" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)"></text><text class="terminal-1154856745-r7" x="1061.4" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">/</text><text class="terminal-1154856745-r7" x="1073.6" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">/</text><text class="terminal-1154856745-r7" x="1085.8" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">/</text><text class="terminal-1154856745-r7" x="1098" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">/</text><text class="terminal-1154856745-r7" x="1110.2" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">_</text><text class="terminal-1154856745-r7" x="1122.4" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">_</text><text class="terminal-1154856745-r7" x="1134.6" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">_</text><text class="terminal-1154856745-r7" x="1146.8" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">_</text><text class="terminal-1154856745-r7" x="1159" y="459.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-18)">_</text><text class="terminal-115485
</text><text class="terminal-1154856745-r5" x="12.2" y="483.6" textLength="73.2" clip-path="url(#terminal-1154856745-line-19)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r5" x="97.6" y="483.6" textLength="73.2" clip-path="url(#terminal-1154856745-line-19)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r7" x="207.4" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r7" x="219.6" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r7" x="231.8" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r7" x="244" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">_</text><text class="terminal-1154856745-r7" x="256.2" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">_</text><text class="terminal-1154856745-r7" x="268.4" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r7" x="280.6" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">_</text><text class="terminal-1154856745-r12" x="292.8" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)"></text><text class="terminal-1154856745-r20" x="488" y="483.6" textLength="85.4" clip-path="url(#terminal-1154856745-line-19)">Author:</text><text class="terminal-1154856745-r27" x="585.6" y="483.6" textLength="158.6" clip-path="url(#terminal-1154856745-line-19)">Isaiah&#160;Odhner</text><text class="terminal-1154856745-r12" x="915" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)"></text><text class="terminal-1154856745-r7" x="927.2" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r7" x="939.4" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r7" x="951.6" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">_</text><text class="terminal-1154856745-r7" x="963.8" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">_</text><text class="terminal-1154856745-r7" x="976" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">_</text><text class="terminal-1154856745-r7" x="988.2" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r7" x="1000.4" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r7" x="1012.6" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r5" x="1061.4" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)"></text><text class="terminal-1154856745-r7" x="1073.6" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">/</text><text class="terminal-1154856745-r7" x="1085.8" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">_</text><text class="terminal-1154856745-r7" x="1098" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r7" x="1110.2" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r7" x="1122.4" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r7" x="1134.6" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r7" x="1146.8" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r7" x="1159" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1154856745-r7" x="1171.2" y="483.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-19)">=</text><text class="terminal-1
</text><text class="terminal-1154856745-r4" x="36.6" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)"></text><text class="terminal-1154856745-r4" x="122" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)"></text><text class="terminal-1154856745-r7" x="207.4" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">=</text><text class="terminal-1154856745-r7" x="219.6" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">_</text><text class="terminal-1154856745-r7" x="231.8" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">_</text><text class="terminal-1154856745-r7" x="244" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">_</text><text class="terminal-1154856745-r7" x="256.2" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">=</text><text class="terminal-1154856745-r7" x="268.4" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">_</text><text class="terminal-1154856745-r7" x="280.6" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">_</text><text class="terminal-1154856745-r12" x="292.8" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)"></text><text class="terminal-1154856745-r20" x="488" y="508" textLength="97.6" clip-path="url(#terminal-1154856745-line-20)">License:</text><text class="terminal-1154856745-r27" x="597.8" y="508" textLength="36.6" clip-path="url(#terminal-1154856745-line-20)">MIT</text><text class="terminal-1154856745-r12" x="915" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)"></text><text class="terminal-1154856745-r7" x="927.2" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">=</text><text class="terminal-1154856745-r7" x="939.4" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">=</text><text class="terminal-1154856745-r7" x="951.6" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">=</text><text class="terminal-1154856745-r28" x="963.8" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">(</text><text class="terminal-1154856745-r28" x="976" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">(</text><text class="terminal-1154856745-r28" x="988.2" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">(</text><text class="terminal-1154856745-r28" x="1000.4" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">(</text><text class="terminal-1154856745-r5" x="1049.2" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)"></text><text class="terminal-1154856745-r28" x="1073.6" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">)</text><text class="terminal-1154856745-r28" x="1085.8" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">)</text><text class="terminal-1154856745-r28" x="1098" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">)</text><text class="terminal-1154856745-r28" x="1110.2" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">)</text><text class="terminal-1154856745-r7" x="1122.4" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">=</text><text class="terminal-1154856745-r7" x="1134.6" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">=</text><text class="terminal-1154856745-r7" x="1146.8" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">=</text><text class="terminal-1154856745-r7" x="1159" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">=</text><text class="terminal-1154856745-r7" x="1171.2" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">=</text><text class="terminal-1154856745-r1" x="1220" y="508" textLength="12.2" clip-path="url(#terminal-1154856745-line-20)">
</text><text class="terminal-1154856745-r8" x="12.2" y="532.4" textLength="73.2" clip-path="url(#terminal-1154856745-line-21)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r8" x="97.6" y="532.4" textLength="73.2" clip-path="url(#terminal-1154856745-line-21)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r7" x="207.4" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">_</text><text class="terminal-1154856745-r7" x="219.6" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">_</text><text class="terminal-1154856745-r7" x="231.8" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">=</text><text class="terminal-1154856745-r7" x="244" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">\</text><text class="terminal-1154856745-r7" x="256.2" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">_</text><text class="terminal-1154856745-r7" x="268.4" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">=</text><text class="terminal-1154856745-r7" x="280.6" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">=</text><text class="terminal-1154856745-r12" x="292.8" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)"></text><text class="terminal-1154856745-r20" x="488" y="532.4" textLength="146.4" clip-path="url(#terminal-1154856745-line-21)">Source&#160;Code:</text><text class="terminal-1154856745-r12" x="915" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)"></text><text class="terminal-1154856745-r28" x="927.2" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">(</text><text class="terminal-1154856745-r28" x="939.4" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">(</text><text class="terminal-1154856745-r28" x="951.6" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">(</text><text class="terminal-1154856745-r19" x="1061.4" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)"></text><text class="terminal-1154856745-r28" x="1122.4" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">)</text><text class="terminal-1154856745-r28" x="1134.6" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">)</text><text class="terminal-1154856745-r28" x="1146.8" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">)</text><text class="terminal-1154856745-r7" x="1159" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">=</text><text class="terminal-1154856745-r7" x="1171.2" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">=</text><text class="terminal-1154856745-r1" x="1220" y="532.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-21)">
</text><text class="terminal-1154856745-r5" x="12.2" y="556.8" textLength="73.2" clip-path="url(#terminal-1154856745-line-22)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r5" x="97.6" y="556.8" textLength="73.2" clip-path="url(#terminal-1154856745-line-22)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r7" x="207.4" y="556.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-22)">=</text><text class="terminal-1154856745-r7" x="219.6" y="556.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-22)">_</text><text class="terminal-1154856745-r7" x="231.8" y="556.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-22)">_</text><text class="terminal-1154856745-r7" x="244" y="556.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-22)">_</text><text class="terminal-1154856745-r7" x="256.2" y="556.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-22)">=</text><text class="terminal-1154856745-r7" x="268.4" y="556.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-22)">=</text><text class="terminal-1154856745-r7" x="280.6" y="556.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-22)">=</text><text class="terminal-1154856745-r12" x="292.8" y="556.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-22)"></text><text class="terminal-1154856745-r27" x="488" y="556.8" textLength="353.8" clip-path="url(#terminal-1154856745-line-22)">github.com/1j01/textual-paint</text><text class="terminal-1154856745-r12" x="915" y="556.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-22)"></text><text class="terminal-1154856745-r5" x="1061.4" y="556.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-22)"></text><text class="terminal-1154856745-r28" x="1159" y="556.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-22)">)</text><text class="terminal-1154856745-r7" x="1171.2" y="556.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-22)">_</text><text class="terminal-1154856745-r1" x="1220" y="556.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-22)">
</text><text class="terminal-1154856745-r4" x="36.6" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)"></text><text class="terminal-1154856745-r4" x="122" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)">𝙇</text><text class="terminal-1154856745-r7" x="207.4" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)">=</text><text class="terminal-1154856745-r7" x="219.6" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)">=</text><text class="terminal-1154856745-r7" x="231.8" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)">=</text><text class="terminal-1154856745-r7" x="244" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)">=</text><text class="terminal-1154856745-r7" x="256.2" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)">=</text><text class="terminal-1154856745-r7" x="268.4" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)">=</text><text class="terminal-1154856745-r7" x="280.6" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)">=</text><text class="terminal-1154856745-r12" x="292.8" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)"></text><text class="terminal-1154856745-r12" x="915" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)"></text><text class="terminal-1154856745-r5" x="1012.6" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)"></text><text class="terminal-1154856745-r19" x="1073.6" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)"></text><text class="terminal-1154856745-r28" x="1171.2" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)">)</text><text class="terminal-1154856745-r1" x="1220" y="581.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-23)">
</text><text class="terminal-1154856745-r8" x="12.2" y="605.6" textLength="73.2" clip-path="url(#terminal-1154856745-line-24)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r8" x="97.6" y="605.6" textLength="73.2" clip-path="url(#terminal-1154856745-line-24)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r7" x="207.4" y="605.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-24)">=</text><text class="terminal-1154856745-r7" x="219.6" y="605.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-24)">=</text><text class="terminal-1154856745-r7" x="231.8" y="605.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-24)">=</text><text class="terminal-1154856745-r7" x="244" y="605.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-24)">=</text><text class="terminal-1154856745-r7" x="256.2" y="605.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-24)">=</text><text class="terminal-1154856745-r7" x="268.4" y="605.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-24)">=</text><text class="terminal-1154856745-r7" x="280.6" y="605.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-24)">=</text><text class="terminal-1154856745-r12" x="292.8" y="605.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-24)"></text><text class="terminal-1154856745-r12" x="915" y="605.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-24)"></text><text class="terminal-1154856745-r5" x="1037" y="605.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-24)"></text><text class="terminal-1154856745-r28" x="1159" y="605.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-24)">)</text><text class="terminal-1154856745-r7" x="1171.2" y="605.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-24)">=</text><text class="terminal-1154856745-r1" x="1220" y="605.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-24)">
</text><text class="terminal-1154856745-r5" x="12.2" y="630" textLength="73.2" clip-path="url(#terminal-1154856745-line-25)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r5" x="97.6" y="630" textLength="73.2" clip-path="url(#terminal-1154856745-line-25)">▔▔▔▔▔▔</text><text class="terminal-1154856745-r7" x="207.4" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">=</text><text class="terminal-1154856745-r7" x="219.6" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">=</text><text class="terminal-1154856745-r7" x="231.8" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">=</text><text class="terminal-1154856745-r7" x="244" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">=</text><text class="terminal-1154856745-r7" x="256.2" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">=</text><text class="terminal-1154856745-r7" x="268.4" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">=</text><text class="terminal-1154856745-r7" x="280.6" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">_</text><text class="terminal-1154856745-r12" x="292.8" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)"></text><text class="terminal-1154856745-r29" x="488" y="630" textLength="122" clip-path="url(#terminal-1154856745-line-25)">▔▔▔▔▔▔▔▔▔▔</text><text class="terminal-1154856745-r12" x="915" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)"></text><text class="terminal-1154856745-r28" x="927.2" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">(</text><text class="terminal-1154856745-r28" x="939.4" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">(</text><text class="terminal-1154856745-r28" x="951.6" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">(</text><text class="terminal-1154856745-r28" x="1122.4" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">)</text><text class="terminal-1154856745-r28" x="1134.6" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">)</text><text class="terminal-1154856745-r28" x="1146.8" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">)</text><text class="terminal-1154856745-r7" x="1159" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">_</text><text class="terminal-1154856745-r7" x="1171.2" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">_</text><text class="terminal-1154856745-r1" x="1220" y="630" textLength="12.2" clip-path="url(#terminal-1154856745-line-25)">
</text><text class="terminal-1154856745-r4" x="36.6" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)"></text><text class="terminal-1154856745-r4" x="122" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)"></text><text class="terminal-1154856745-r7" x="207.4" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">=</text><text class="terminal-1154856745-r7" x="219.6" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">=</text><text class="terminal-1154856745-r7" x="231.8" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">=</text><text class="terminal-1154856745-r7" x="244" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">_</text><text class="terminal-1154856745-r7" x="256.2" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">_</text><text class="terminal-1154856745-r7" x="268.4" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">_</text><text class="terminal-1154856745-r7" x="280.6" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">_</text><text class="terminal-1154856745-r12" x="292.8" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)"></text><text class="terminal-1154856745-r30" x="536.8" y="654.4" textLength="24.4" clip-path="url(#terminal-1154856745-line-26)">OK</text><text class="terminal-1154856745-r12" x="915" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)"></text><text class="terminal-1154856745-r7" x="927.2" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">=</text><text class="terminal-1154856745-r28" x="939.4" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">)</text><text class="terminal-1154856745-r28" x="951.6" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">)</text><text class="terminal-1154856745-r28" x="963.8" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">(</text><text class="terminal-1154856745-r28" x="976" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">(</text><text class="terminal-1154856745-r28" x="988.2" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">(</text><text class="terminal-1154856745-r28" x="1000.4" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">(</text><text class="terminal-1154856745-r28" x="1061.4" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">)</text><text class="terminal-1154856745-r28" x="1073.6" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">)</text><text class="terminal-1154856745-r28" x="1085.8" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">)</text><text class="terminal-1154856745-r28" x="1098" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">)</text><text class="terminal-1154856745-r28" x="1110.2" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">)</text><text class="terminal-1154856745-r28" x="1122.4" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">)</text><text class="terminal-1154856745-r28" x="1134.6" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">)</text><text class="terminal-1154856745-r7" x="1146.8" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">=</text><text class="terminal-1154856745-r7" x="1171.2" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">=</text><text class="terminal-1154856745-r1" x="1220" y="654.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-26)">
</text><text class="terminal-1154856745-r8" x="12.2" y="678.8" textLength="73.2" clip-path="url(#terminal-1154856745-line-27)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r8" x="97.6" y="678.8" textLength="73.2" clip-path="url(#terminal-1154856745-line-27)">▁▁▁▁▁▁</text><text class="terminal-1154856745-r7" x="207.4" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">_</text><text class="terminal-1154856745-r7" x="219.6" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">_</text><text class="terminal-1154856745-r7" x="231.8" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">_</text><text class="terminal-1154856745-r7" x="244" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">=</text><text class="terminal-1154856745-r7" x="256.2" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">=</text><text class="terminal-1154856745-r7" x="268.4" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">=</text><text class="terminal-1154856745-r7" x="280.6" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">=</text><text class="terminal-1154856745-r12" x="292.8" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)"></text><text class="terminal-1154856745-r31" x="488" y="678.8" textLength="122" clip-path="url(#terminal-1154856745-line-27)">▁▁▁▁▁▁▁▁▁▁</text><text class="terminal-1154856745-r12" x="915" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)"></text><text class="terminal-1154856745-r7" x="927.2" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">=</text><text class="terminal-1154856745-r7" x="939.4" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">=</text><text class="terminal-1154856745-r7" x="951.6" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">=</text><text class="terminal-1154856745-r28" x="963.8" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">)</text><text class="terminal-1154856745-r28" x="976" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">)</text><text class="terminal-1154856745-r28" x="988.2" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">)</text><text class="terminal-1154856745-r28" x="1000.4" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">)</text><text class="terminal-1154856745-r28" x="1012.6" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">)</text><text class="terminal-1154856745-r28" x="1024.8" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">)</text><text class="terminal-1154856745-r28" x="1037" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">)</text><text class="terminal-1154856745-r28" x="1049.2" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">)</text><text class="terminal-1154856745-r28" x="1061.4" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">)</text><text class="terminal-1154856745-r28" x="1073.6" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">)</text><text class="terminal-1154856745-r28" x="1085.8" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">)</text><text class="terminal-1154856745-r28" x="1098" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">)</text><text class="terminal-1154856745-r7" x="1134.6" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">=</text><text class="terminal-1154856745-r7" x="1146.8" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">=</text><text class="terminal-1154856745-r7" x="1159" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">=</text><text class="terminal-1154856745-r1" x="1220" y="678.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-27)">
</text><text class="terminal-1154856745-r7" x="207.4" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">=</text><text class="terminal-1154856745-r7" x="219.6" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">=</text><text class="terminal-1154856745-r7" x="231.8" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">=</text><text class="terminal-1154856745-r7" x="244" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">=</text><text class="terminal-1154856745-r7" x="256.2" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">=</text><text class="terminal-1154856745-r7" x="268.4" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">=</text><text class="terminal-1154856745-r7" x="280.6" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">=</text><text class="terminal-1154856745-r12" x="292.8" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)"></text><text class="terminal-1154856745-r12" x="915" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)"></text><text class="terminal-1154856745-r7" x="927.2" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">=</text><text class="terminal-1154856745-r7" x="939.4" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">=</text><text class="terminal-1154856745-r7" x="951.6" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">=</text><text class="terminal-1154856745-r7" x="963.8" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">_</text><text class="terminal-1154856745-r7" x="976" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">=</text><text class="terminal-1154856745-r7" x="988.2" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">=</text><text class="terminal-1154856745-r7" x="1000.4" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">_</text><text class="terminal-1154856745-r7" x="1012.6" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">_</text><text class="terminal-1154856745-r7" x="1024.8" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">_</text><text class="terminal-1154856745-r7" x="1037" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">_</text><text class="terminal-1154856745-r7" x="1049.2" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">_</text><text class="terminal-1154856745-r7" x="1061.4" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">_</text><text class="terminal-1154856745-r7" x="1073.6" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">_</text><text class="terminal-1154856745-r7" x="1085.8" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">_</text><text class="terminal-1154856745-r7" x="1098" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">_</text><text class="terminal-1154856745-r7" x="1110.2" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">_</text><text class="terminal-1154856745-r7" x="1122.4" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">_</text><text class="terminal-1154856745-r7" x="1171.2" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">=</text><text class="terminal-1154856745-r1" x="1220" y="703.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-28)">
</text><text class="terminal-1154856745-r12" x="292.8" y="727.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-29)"></text><text class="terminal-1154856745-r12" x="915" y="727.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-29)"></text><text class="terminal-1154856745-r1" x="1220" y="727.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-29)">
</text><text class="terminal-1154856745-r12" x="292.8" y="752" textLength="12.2" clip-path="url(#terminal-1154856745-line-30)"></text><text class="terminal-1154856745-r12" x="915" y="752" textLength="12.2" clip-path="url(#terminal-1154856745-line-30)"></text><text class="terminal-1154856745-r1" x="1220" y="752" textLength="12.2" clip-path="url(#terminal-1154856745-line-30)">
</text><text class="terminal-1154856745-r5" x="0" y="776.4" textLength="292.8" clip-path="url(#terminal-1154856745-line-31)">▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔</text><text class="terminal-1154856745-r12" x="292.8" y="776.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-31)"></text><text class="terminal-1154856745-r12" x="305" y="776.4" textLength="610" clip-path="url(#terminal-1154856745-line-31)">▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄</text><text class="terminal-1154856745-r12" x="915" y="776.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-31)"></text><text class="terminal-1154856745-r5" x="927.2" y="776.4" textLength="292.8" clip-path="url(#terminal-1154856745-line-31)">▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔</text><text class="terminal-1154856745-r1" x="1220" y="776.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-31)">
</text><text class="terminal-1154856745-r16" x="12.2" y="800.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-32)"></text><text class="terminal-1154856745-r12" x="24.4" y="800.8" textLength="85.4" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔▔▔▔</text><text class="terminal-1154856745-r12" x="109.8" y="800.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-32)"></text><text class="terminal-1154856745-r12" x="122" y="800.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="183" y="800.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="244" y="800.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="305" y="800.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="366" y="800.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="427" y="800.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="488" y="800.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="549" y="800.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="610" y="800.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="671" y="800.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="732" y="800.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="793" y="800.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="854" y="800.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="915" y="800.8" textLength="48.8" clip-path="url(#terminal-1154856745-line-32)">▔▔▔▔</text><text class="terminal-1154856745-r1" x="1220" y="800.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-32)">
</text><text class="terminal-1154856745-r16" x="12.2" y="825.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-33)"></text><text class="terminal-1154856745-r32" x="109.8" y="825.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-33)"></text><text class="terminal-1154856745-r5" x="122" y="825.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-33)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="183" y="825.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-33)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="244" y="825.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-33)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="305" y="825.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-33)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="366" y="825.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-33)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="427" y="825.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-33)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="488" y="825.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-33)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="549" y="825.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-33)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="610" y="825.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-33)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="671" y="825.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-33)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="732" y="825.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-33)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="793" y="825.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-33)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="854" y="825.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-33)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="915" y="825.2" textLength="48.8" clip-path="url(#terminal-1154856745-line-33)">▁▁▁▁</text><text class="terminal-1154856745-r1" x="1220" y="825.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-33)">
</text><text class="terminal-1154856745-r16" x="12.2" y="849.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-34)"></text><text class="terminal-1154856745-r32" x="109.8" y="849.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-34)"></text><text class="terminal-1154856745-r12" x="122" y="849.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-34)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="183" y="849.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-34)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="244" y="849.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-34)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="305" y="849.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-34)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="366" y="849.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-34)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="427" y="849.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-34)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="488" y="849.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-34)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="549" y="849.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-34)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="610" y="849.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-34)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="671" y="849.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-34)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="732" y="849.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-34)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="793" y="849.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-34)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="854" y="849.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-34)">▔▔▔▔</text><text class="terminal-1154856745-r12" x="915" y="849.6" textLength="48.8" clip-path="url(#terminal-1154856745-line-34)">▔▔▔▔</text><text class="terminal-1154856745-r1" x="1220" y="849.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-34)">
</text><text class="terminal-1154856745-r16" x="12.2" y="874" textLength="12.2" clip-path="url(#terminal-1154856745-line-35)"></text><text class="terminal-1154856745-r5" x="24.4" y="874" textLength="85.4" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁▁▁▁</text><text class="terminal-1154856745-r5" x="109.8" y="874" textLength="12.2" clip-path="url(#terminal-1154856745-line-35)"></text><text class="terminal-1154856745-r5" x="122" y="874" textLength="48.8" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="183" y="874" textLength="48.8" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="244" y="874" textLength="48.8" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="305" y="874" textLength="48.8" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="366" y="874" textLength="48.8" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="427" y="874" textLength="48.8" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="488" y="874" textLength="48.8" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="549" y="874" textLength="48.8" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="610" y="874" textLength="48.8" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="671" y="874" textLength="48.8" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="732" y="874" textLength="48.8" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="793" y="874" textLength="48.8" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="854" y="874" textLength="48.8" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁</text><text class="terminal-1154856745-r5" x="915" y="874" textLength="48.8" clip-path="url(#terminal-1154856745-line-35)">▁▁▁▁</text><text class="terminal-1154856745-r1" x="1220" y="874" textLength="12.2" clip-path="url(#terminal-1154856745-line-35)">
</text><text class="terminal-1154856745-r1" x="1220" y="898.4" textLength="12.2" clip-path="url(#terminal-1154856745-line-36)">
</text><text class="terminal-1154856745-r12" x="0" y="922.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-37)"></text><text class="terminal-1154856745-r12" x="12.2" y="922.8" textLength="719.8" clip-path="url(#terminal-1154856745-line-37)">▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀</text><text class="terminal-1154856745-r12" x="732" y="922.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-37)"></text><text class="terminal-1154856745-r12" x="744.2" y="922.8" textLength="231.8" clip-path="url(#terminal-1154856745-line-37)">▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀</text><text class="terminal-1154856745-r12" x="976" y="922.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-37)"></text><text class="terminal-1154856745-r12" x="988.2" y="922.8" textLength="219.6" clip-path="url(#terminal-1154856745-line-37)">▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀</text><text class="terminal-1154856745-r12" x="1207.8" y="922.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-37)"></text><text class="terminal-1154856745-r1" x="1220" y="922.8" textLength="12.2" clip-path="url(#terminal-1154856745-line-37)">
</text><text class="terminal-1154856745-r16" x="0" y="947.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-38)"></text><text class="terminal-1154856745-r4" x="12.2" y="947.2" textLength="549" clip-path="url(#terminal-1154856745-line-38)">For&#160;Help,&#160;click&#160;Help&#160;Topics&#160;on&#160;the&#160;Help&#160;Menu.</text><text class="terminal-1154856745-r16" x="732" y="947.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-38)"></text><text class="terminal-1154856745-r16" x="976" y="947.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-38)"></text><text class="terminal-1154856745-r16" x="1207.8" y="947.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-38)"></text><text class="terminal-1154856745-r1" x="1220" y="947.2" textLength="12.2" clip-path="url(#terminal-1154856745-line-38)">
</text><text class="terminal-1154856745-r13" x="0" y="971.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-39)"></text><text class="terminal-1154856745-r13" x="12.2" y="971.6" textLength="719.8" clip-path="url(#terminal-1154856745-line-39)">▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄</text><text class="terminal-1154856745-r13" x="732" y="971.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-39)"></text><text class="terminal-1154856745-r13" x="744.2" y="971.6" textLength="231.8" clip-path="url(#terminal-1154856745-line-39)">▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄</text><text class="terminal-1154856745-r13" x="976" y="971.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-39)"></text><text class="terminal-1154856745-r13" x="988.2" y="971.6" textLength="219.6" clip-path="url(#terminal-1154856745-line-39)">▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄</text><text class="terminal-1154856745-r13" x="1207.8" y="971.6" textLength="12.2" clip-path="url(#terminal-1154856745-line-39)"></text>
</g>
</g>
Add textual screenshot to readme This took a lot of trial and error to get this working. - First I had to figure out how to copy the terminal output as HTML. I had to configure keybindings for Select All and Copy As HTML in the Ubuntu terminal. - GitHub doesn't support line-height in markdown, so I came up with using an SVG with <foreignObject> to contain the screenshot HTML. - GitHub doesn't support inline SVG, so I had to use <img>, that's fine. An external file is cleaner anyways. - I spent a long time trying to fix the seams between rows of text. `line-height: <font-size>` is not `line-height: 1`! I think I tried `line-height: 1` first, but it wasn't working for some reason so I tried a bajillion things, having mentally discounted it, before circling back to it and trying it again and it actually worked. - I spent a long time futzing about with SVG viewports and units. - The text was staggered due to some of the Unicode characters, so I developed a script to fix that up. I managed to achieve a nice development cycle for this, but only near the end of developing it. Most of the time while working on it I was copying and pasting the updated code into the console after hitting up up enter to re-run grapheme-splitter's JS. The next commit will apply this script. - All in all, getting this screenshot working took basically all day! Compare that to my first day of progress on this project, having never used the Textual framework before, and also having not used Python for a while. In summary, coding is a land of contrasts. - VS Code's markdown rendering isn't working with the ch/lh units.
2023-04-14 09:21:27 +03:00
</svg>