diff --git a/content/concepts/on-screen-keyboard.md b/content/concepts/on-screen-keyboard.md new file mode 100644 index 0000000000000000000000000000000000000000..d2088d583c5d37c44736d78dfedcabcf1606b6c0 --- /dev/null +++ b/content/concepts/on-screen-keyboard.md @@ -0,0 +1,217 @@ ++++ +title = "On-screen keyboard" +weight = 100 +toc = true +outputs = [ "html", "pdf-in",] +date = "2021-08-23" ++++ + +# Introduction + +Apertis can be used with a touchscreen only, in this case the user will need an On-screen Keyboard to be able to enter information like password, URLs, messages, … + +# Terminology and concepts + +In Wayland, multiple protocols are involved to allow user to enter a text. + +## Text input + +**text-input** protocol takes text from the compositor, and gives it to applications. +It lets applications tell the compositor when and what kind of text they need. +The protocol doesn't worry about the user, instead leaving that to the compositor. + + + +## Input method + +**input-method** protocol allows the compositor to delegate work to let user input +the text to some other program. + + + +This protocol is very similar to *text-input*, because it lets *a program* send text +*to the compositor*, and allows *the compositor* to tell *the program* what kind of +text is needed. Notice the inversion! This time, the program is special. It communicates +with the user, and then gives the text to the compositor. The compositor is then +typically going to send the text onward to the currently focused application using +*text-input*, creating a chain: special program → compositor → focused application. + + + +This protocol has place for some additional responsibilities, too. Because there is +typically only one application using this protocol, it can do things which would not +work with multiple applications. One of them is grabbing the keyboard, known to CJKV +language users. *Input-method* allows the special program to ask the compositor to send +it all keyboard presses ("exclusive grab"). Taking over the keyboard makes it possible +to send the text "ä½ å¥½" when "nihao" is typed. The other extension is meant for creating +a special pop up window, which the compositor places next to the text field, and which +can be used to show typing completions. + +## Virtual keyboard + +**virtual-keyboard** protocol is designed for programs which want to tell the compositor +to issue "fake" keyboard button press events. + +Input methods support would have been complete here, if all we cared about was text. +However, the world is not so simple, and we have to deal with additional categories of +input before being useful: +- text in legacy applications which don't support text-input, and +- triggering actions which would normally need a keyboard. + +This issue can be addressed by emulating button presses. + +# Use cases + +- A user wants to enter a text using the touchscreen. + +# Non-use cases + +# Requirements + +The chosen approach must: +- allow to configure the keyboard layout +- be automatically enabled when user selects a text input zone +- not need any change to the applications + +# Depending components + +# Approach + +A fully-fledged input method program will be a Wayland client using the *input-method* +protocol for submitting text, but also supporting *virtual-keyboard* for submitting +actions, and as a fallback for legacy applications. + + + +A compositor would ferry text around between the input method program and whichever +application is focused. It would also carry synthetic keyboard events from the input +method program to the focused application. + +An application consuming text would support *text-input*, generally through a GUI +framework like GTK or Qt, and it would send enable and disable events whenever a text +input field comes into focus or becomes unfocused. +It would also accept keyboard events. + +Legacy applications won't send enable and disable, even when a text field is focused, +and the user ready to type. When that happens, the compositor and the input method +won't realize that text should be submitted now. If the input method uses an on-screen +keyboard, it could remain hidden! Because of that, it's best to always make sure the +user can bring up the input method and input text, which would then be delivered as +keyboard events (which are always supported by applications). + +Currently the majority of the on-screen keyboard applications was developped for `X11` +display server. Regarding `Wayland` display server only a few of them exist: +- weston-keyboard +- Maliit Keyboard 2 +- Squeekboard + +All of those on-screen keyboard implementation are GPLv3 or LGPLv3. + +# Evaluation Report + +## Gnome on-screen keyboard + +On Debian, the onscreen keyboard is provided by [Caribou](https://wiki.gnome.org/Projects/Caribou), but is limited to `X11` or `XWayland` display servers. + +| | text-input | input-method | virtual-keyboard | +| ----------- | :--------: | :----------: | :--------------: | +| required | - | - | - | +| recommended | - | - | - | + +- License: LGPLv2.1 +- Languages: Vala, Python + +## Qt Virtual keyboard + +Qt Virtual keyboard seems to have been deprecated in favor of application supporting +the Wayland input method protocols, see [this blogpost](https://blog.martin-graesslin.com/blog/2021/03/using-maliit-keyboard-in-a-plasma-wayland-session/). + +## weston-keyboard + +Simple implementation of an on-screen keyboard. +The application only support roman, numeric and arabic keyboards, which are hardcoded. As it graphical look. + +| | text-input | input-method | virtual-keyboard | +| ----------- | :--------: | :----------: | :--------------: | +| required | v1 | v1 | - | +| recommended | - | - | - | + +- License: X11, MIT and CC-BY-SA +- Languages: C + +## Mallit Keyboard 2 + +Mallit Keyboard 2 is an evolution of the *Ubuntu Keyboard* plugin for Mallit, which can be run standalone using the Wayland input-method protocol. + +| | text-input | input-method | virtual-keyboard | +| ----------- | :--------: | :----------: | :--------------: | +| required | - | v1 | - | +| recommended | - | - | - | + +- License: LGPLv3, BSD and CC-BY +- Languages: QML, C++ + +## Squeekboard + +Squeekboard has been developped to be the on-screen keyboard of Librem 5 phone OS, +using [Phoc](https://gitlab.gnome.org/World/Phosh/phoc) compositor which is based +on [wlroots](https://github.com/swaywm/wlroots). + +| | text-input | input-method | virtual-keyboard | +| ----------- | :--------: | :----------: | :--------------: | +| required | - | - | v1 | +| recommended | - | v2 | - | + +- License: GPLv3 +- Languages: Rust, C + +## Weston + +Weston is the Wayland compositor used in Apertis. + +| | text-input | input-method | virtual-keyboard | +| ----------- | :--------: | :----------: | :--------------: | +| current | v1 | v1 | - | + +A [merge request](https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/150) +exists to integrate *text-input* v3 and *input-method* v2 to Weston. + +## GTK + +| | text-input | input-method | virtual-keyboard | +| ----------- | :--------: | :----------: | :--------------: | +| current | v3 (since GTK3.24) | - | - | + +## Qt + +| | text-input | input-method | virtual-keyboard | +| ----------- | :--------: | :----------: | :--------------: | +| current | v2 (since Qt 5.9) | - | - | + +# Recommendations + +As the only GPLv3 free on-screen keyboard application is a simple/demo version, Apertis may have to improve it or use one of the existing one. + +The former solution will need to develop, debug and support an application. + +While the latter one will embedded a GPLv3 application which only interacts with the Weston compositor. + +The approach could then be: + +1. Patch Weston with latest protocol versions, i.e. *text-input* v3 and *input-method* v2. +1. Create patch for Weston to support *virtual-keyboard* protocol. +1. Add *Squeekboard* as a GPLv3 execption in Apertis. + +# Risks + +The different Wayland protocols involved in an on-screen keybopard are currently under +development, see [Stalled Upstream Protocol Work](https://gitlab.freedesktop.org/wayland/wayland-protocols/-/issues/39#stalled-upstream-protocol-work). + +Those protocols needs to be integrated to Weston, see this Weston [MR](https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/150). + +# References + +This documentation and some of the illustrations are based on or come from: +- [Wayland and input methods](https://dcz_self.gitlab.io/posts/input_method/) blog post +- [It's not about keyboards](https://dcz_self.gitlab.io/posts/not_keyboard/) blog post +- [Input Method Hub](https://gitlab.freedesktop.org/wayland/wayland-protocols/-/issues/39) Wayland issue diff --git a/content/concepts/overview.md b/content/concepts/overview.md index 74ff869075dcd6948b11dd197a7f9061fcdd4951..ea627362280c505511eaaa9e8f8e3ac7990c9cea 100644 --- a/content/concepts/overview.md +++ b/content/concepts/overview.md @@ -144,7 +144,7 @@ with application specific download methods. | Reference HMI shell and compositor | [Application Framework]({{< ref "application-framework.md#compositor-libweston" >}}) | Concept: Up-to-date | | Bluetooth | [Connectivity: Bluetooth Support]({{< ref "connectivity.md#bluetooth-support" >}}) | Concept: Requires Update | System toolkit | | | -| Virtual system keyboard | | | +| Virtual system keyboard | [On-screen keyboard]({{< ref "on-screen-keyboard.md" >}}) | Concept: … | | Audio routing and policy | [Audio management]({{< ref "audio-management" >}}) | Concept: Up-to-date | | Video routing and policy | | | | Application framework integration | [Application framework]({{< ref "application-framework.md" >}}) | Concept: Up-to-date | diff --git a/content/concepts/wayland_evaluation.md b/content/concepts/wayland_evaluation.md index 973037cb852983e061a70266eb78f267023d3304..b277877c61485ae2fe90605ed84ef09aa6577bbc 100644 --- a/content/concepts/wayland_evaluation.md +++ b/content/concepts/wayland_evaluation.md @@ -405,7 +405,7 @@ successfully run an otherwise unmodified WebKit-Clutter on Wayland For Apertis three types of input are expected to be used: - Multitouch via the touchscreen - - Onscreen keyboard + - [Onscreen keyboard]({{< ref "on-screen-keyboard.md" >}}) - Emulated hardware buttons (out of screen buttons). Because Wayland started in an era where touchscreens were common-place, diff --git a/static/images/onscreen_kbd_focused.svg b/static/images/onscreen_kbd_focused.svg new file mode 100644 index 0000000000000000000000000000000000000000..219abb86f1f99b6eaed4fa55372e1b3192cfd7c4 --- /dev/null +++ b/static/images/onscreen_kbd_focused.svg @@ -0,0 +1,544 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="305.31937mm" + height="192.58606mm" + viewBox="0 0 305.31937 192.58606" + version="1.1" + id="svg30235" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + sodipodi:docname="focused.svg"> + <defs + id="defs30229"> + <marker + inkscape:stockid="Arrow1Sstart" + orient="auto" + refY="0" + refX="0" + id="Arrow1Sstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2457" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.2,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Send" + orient="auto" + refY="0" + refX="0" + id="Arrow1Send" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2460" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Mend" + orient="auto" + refY="0" + refX="0" + id="marker31231" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path31229" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Sstart-4" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Sstart"> + <path + transform="matrix(0.2,0,0,0.2,1.2,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2457-6" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Send-9" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Send"> + <path + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2460-2" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.45062103" + inkscape:cx="607.43063" + inkscape:cy="191.66584" + inkscape:document-units="mm" + inkscape:current-layer="layer1" + inkscape:document-rotation="0" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1294" + inkscape:window-height="708" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" /> + <metadata + id="metadata30232"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(26.579361,-204.53699)"> + <rect + y="204.53699" + x="-26.579361" + height="192.58606" + width="305.31937" + id="rect39757" + style="color:#000000;overflow:visible;fill:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round" /> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text30963-5" + aria-label="input-method"> + <path + id="path39729" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 72.546017,301.74167 h 2.271697 v 4.71221 h 1.760444 v 0.68971 h -4.408345 v -0.68971 h 1.760444 v -4.0225 h -1.38424 z m 1.38424,-2.10288 h 0.887457 v 1.12379 h -0.887457 z" /> + <path + id="path39731" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 82.327334,303.79633 v 3.34726 h -0.89228 v -3.34726 q 0,-0.72829 -0.255626,-1.07074 -0.255626,-0.34244 -0.80064,-0.34244 -0.622184,0 -0.959804,0.44373 -0.332796,0.4389 -0.332796,1.26366 v 3.05305 h -0.887457 v -5.40192 h 0.887457 v 0.81029 q 0.236333,-0.46302 0.641477,-0.69935 0.405143,-0.24116 0.959804,-0.24116 0.824756,0 1.229899,0.54501 0.409966,0.54019 0.409966,1.63987 z" /> + <path + id="path39733" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 85.01382,306.46352 v 2.73472 h -0.89228 v -7.45657 h 0.89228 v 0.68971 q 0.221865,-0.40032 0.588423,-0.60771 0.371381,-0.21222 0.853695,-0.21222 0.979096,0 1.533757,0.75723 0.559483,0.75723 0.559483,2.09807 0,1.31671 -0.559483,2.06912 -0.559484,0.74759 -1.533757,0.74759 -0.49196,0 -0.863341,-0.2074 -0.366559,-0.21222 -0.578777,-0.61254 z m 2.604493,-2.01607 q 0,-1.03215 -0.327973,-1.55787 -0.32315,-0.52572 -0.964627,-0.52572 -0.6463,0 -0.979096,0.53054 -0.332797,0.52573 -0.332797,1.55305 0,1.02251 0.332797,1.55305 0.332796,0.53055 0.979096,0.53055 0.641477,0 0.964627,-0.52572 0.327973,-0.52573 0.327973,-1.55788 z" /> + <path + id="path39735" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 90.09258,305.09858 v -3.34726 h 0.887457 v 3.34726 q 0,0.72829 0.255626,1.07073 0.26045,0.34244 0.800641,0.34244 0.627007,0 0.959803,-0.4389 0.332797,-0.44373 0.332797,-1.26849 v -3.05304 h 0.89228 v 5.39227 h -0.89228 v -0.81029 q -0.236334,0.46784 -0.6463,0.709 -0.405144,0.24116 -0.950158,0.24116 -0.829579,0 -1.234722,-0.54019 -0.405144,-0.54502 -0.405144,-1.64469 z" /> + <path + id="path39737" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 98.0604,300.20792 v 1.53375 h 2.01607 v 0.68971 H 98.0604 v 2.93247 q 0,0.59807 0.226687,0.8344 0.226688,0.23633 0.790994,0.23633 h 0.998389 v 0.70901 h -1.085205 q -0.998389,0 -1.408355,-0.40032 -0.409967,-0.40033 -0.409967,-1.37942 v -2.93247 h -1.442117 v -0.68971 h 1.442117 v -1.53375 z" /> + <path + id="path39739" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 102.76296,304.04231 h 2.51285 v 0.79099 h -2.51285 z" /> + <path + id="path39741" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 110.25328,302.29151 q 0.16399,-0.34726 0.41479,-0.51125 0.25563,-0.16881 0.61254,-0.16881 0.65112,0 0.9164,0.50643 0.27009,0.5016 0.27009,1.89549 v 3.13022 h -0.81029 v -3.09163 q 0,-1.14309 -0.13022,-1.41801 -0.1254,-0.27974 -0.46302,-0.27974 -0.38585,0 -0.53055,0.29904 -0.13987,0.29421 -0.13987,1.39871 v 3.09163 h -0.81028 v -3.09163 q 0,-1.15756 -0.13987,-1.42765 -0.13505,-0.2701 -0.49196,-0.2701 -0.35209,0 -0.49196,0.29904 -0.13505,0.29421 -0.13505,1.39871 v 3.09163 h -0.80546 v -5.40192 h 0.80546 v 0.46303 q 0.15916,-0.28939 0.3955,-0.43891 0.24115,-0.15434 0.54501,-0.15434 0.36656,0 0.60772,0.16881 0.24597,0.16881 0.38102,0.51125 z" /> + <path + id="path39743" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 118.3031,304.22077 v 0.43408 h -3.84404 v 0.0289 q 0,0.88263 0.45819,1.36494 0.46303,0.48232 1.30225,0.48232 0.42444,0 0.88746,-0.13505 0.46302,-0.13505 0.98874,-0.40997 v 0.88264 q -0.50643,0.20739 -0.9791,0.30868 -0.46784,0.10611 -0.90674,0.10611 -1.25884,0 -1.96784,-0.75241 -0.709,-0.75724 -0.709,-2.0836 0,-1.2926 0.69453,-2.0643 0.69453,-0.7717 1.85208,-0.7717 1.03215,0 1.6254,0.69935 0.59807,0.69936 0.59807,1.90997 z m -0.88746,-0.26045 q -0.0193,-0.78135 -0.37138,-1.18649 -0.34727,-0.40997 -1.00321,-0.40997 -0.64148,0 -1.05627,0.42443 -0.41479,0.42444 -0.49196,1.17685 z" /> + <path + id="path39745" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 121.8481,300.20792 v 1.53375 h 2.01607 v 0.68971 h -2.01607 v 2.93247 q 0,0.59807 0.22669,0.8344 0.22669,0.23633 0.79099,0.23633 h 0.99839 v 0.70901 h -1.0852 q -0.99839,0 -1.40836,-0.40032 -0.40997,-0.40033 -0.40997,-1.37942 v -2.93247 h -1.44211 v -0.68971 h 1.44211 v -1.53375 z" /> + <path + id="path39747" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 129.90274,303.79633 v 3.34726 h -0.89228 v -3.34726 q 0,-0.72829 -0.25563,-1.07074 -0.25563,-0.34244 -0.80064,-0.34244 -0.62218,0 -0.9598,0.44373 -0.3328,0.4389 -0.3328,1.26366 v 3.05305 h -0.88746 v -7.5048 h 0.88746 v 2.91317 q 0.23633,-0.46302 0.64148,-0.69935 0.40514,-0.24116 0.9598,-0.24116 0.82476,0 1.2299,0.54501 0.40997,0.54019 0.40997,1.63987 z" /> + <path + id="path39749" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 133.7516,302.36386 q -0.67524,0 -1.02251,0.52572 -0.34726,0.52572 -0.34726,1.55787 0,1.02733 0.34726,1.55788 0.34727,0.52572 1.02251,0.52572 0.68006,0 1.02733,-0.52572 0.34726,-0.53055 0.34726,-1.55788 0,-1.03215 -0.34726,-1.55787 -0.34727,-0.52572 -1.02733,-0.52572 z m 0,-0.75241 q 1.12379,0 1.71704,0.72829 0.59806,0.7283 0.59806,2.10771 0,1.38424 -0.59324,2.11254 -0.59325,0.72347 -1.72186,0.72347 -1.12379,0 -1.71704,-0.72347 -0.59324,-0.7283 -0.59324,-2.11254 0,-1.37941 0.59324,-2.10771 0.59325,-0.72829 1.71704,-0.72829 z" /> + <path + id="path39751" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 140.86572,302.43138 v -2.79259 h 0.88746 v 7.5048 h -0.88746 v -0.68007 q -0.22186,0.40032 -0.59325,0.61254 -0.36655,0.2074 -0.84887,0.2074 -0.97909,0 -1.5434,-0.75724 -0.55948,-0.76205 -0.55948,-2.09806 0,-1.31672 0.5643,-2.0643 0.56431,-0.75241 1.53858,-0.75241 0.48714,0 0.85852,0.21222 0.37138,0.20739 0.5836,0.60771 z m -2.60932,2.01607 q 0,1.03215 0.32798,1.55788 0.32797,0.52572 0.96945,0.52572 0.64147,0 0.97427,-0.53055 0.33762,-0.53054 0.33762,-1.55305 0,-1.02732 -0.33762,-1.55305 -0.3328,-0.53054 -0.97427,-0.53054 -0.64148,0 -0.96945,0.52572 -0.32798,0.52572 -0.32798,1.55787 z" /> + </g> + <g + id="g5133-8-3" + style="display:inline;opacity:0.94" + transform="matrix(0.1224467,0,0,0.1224467,116.08482,231.0743)"> + <circle + style="fill:#ffbc00;fill-opacity:1;stroke:none" + id="path2985-6-6" + cx="341.42856" + cy="465.21933" + r="122.85714" /> + <g + transform="scale(0.9155896,1.0921924)" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:437.474px;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none" + id="text2987-04-8"> + <path + d="m 443.91049,314.59549 h 2.34971 l -1.49527,1.49528 h -0.85444 v -1.49528 m -173.02434,3.63138 v 1.70888 l -5.55387,6.83553 h -0.85444 l -0.85444,-5.34026 c 3.27538,-2.13591 5.69629,-3.20396 7.26275,-3.20415 m 202.50256,2.34971 c 4.84164,1.9e-4 7.54736,3.06194 8.11719,9.18524 l -4.0586,28.83739 h 1.49528 l 3.20415,-2.1361 h 0.85444 v 0.64083 c -4.41481,2.70589 -8.68701,10.11103 -12.81662,22.21547 -1.56666,10.39583 -4.20118,20.00828 -7.90358,28.83739 -3.27553,9.11414 -4.91321,17.51613 -4.91303,25.20602 l -6.1947,15.16633 c -1.7e-4,1.28172 2.34954,2.56338 7.04914,3.84498 -0.85462,2.9906 -2.13628,4.48587 -3.84499,4.48582 v 0.85444 h 1.49527 v 0.64083 c -1.7e-4,1.56653 -2.42108,2.34977 -7.26275,2.34971 l 0.85444,0.85444 v 2.99055 h -1.49527 c 0.99668,2.99059 3.13279,4.48586 6.40831,4.48581 v 1.49528 h -6.40831 v 0.85444 c 2.13594,4e-5 3.20399,1.2817 3.20416,3.84498 l -8.97163,2.99055 0.85444,0.85444 v 0.64083 c -1.6e-4,0.99688 -1.06821,1.4953 -3.20416,1.49527 v 0.85444 c 2.70557,3e-5 4.05844,0.49846 4.0586,1.49527 -3.84515,1.28169 -8.90058,7.61879 -15.16633,19.01132 -6.40845,10.11089 -11.96231,15.16633 -16.66161,15.16633 h -1.70888 c -3.56029,-2.27851 -6.47963,-9.82607 -8.75802,-22.64269 -9.11415,-19.5097 -13.67116,-30.97344 -13.67106,-34.39126 -1e-4,-8.82916 -2.91944,-18.228 -8.75802,-28.19656 -1.56657,-4.41452 -2.63462,-9.96839 -3.20416,-16.6616 l -3.84498,-0.85444 c -9.68375,14.66799 -14.73919,26.13173 -15.16633,34.39126 -2.7058,4.84189 -4.8419,10.68057 -6.40831,17.51604 5.83861,1.56652 8.75795,3.06179 8.75802,4.48582 v 0.85444 c -4.55709,-0.56959 -7.76124,-1.63764 -9.61246,-3.20416 -1.99376,3.84503 -4.62829,14.52553 -7.90358,32.04155 -2.56338,8.11719 -5.76753,12.17578 -9.61247,12.17578 -10.82295,-3.56016 -19.86578,-9.39884 -27.1285,-17.51604 -1.13928,2e-5 -2.99057,-4.05857 -5.55387,-12.17579 -1.56649,3e-5 -2.63454,-4.05856 -3.20415,-12.17578 -5.41147,-11.5349 -9.11405,-24.70753 -11.10774,-39.51791 v -22.21547 h -0.85444 l -3.84499,0.85444 v -0.85444 c 1e-5,-0.99674 1.28167,-1.49516 3.84499,-1.49527 l -0.85444,-12.81662 V 385.3005 l -6.1947,-32.04154 V 339.5879 c 2.70573,-8.54423 7.40515,-12.81643 14.09828,-12.81662 h 44.85816 v 1.49527 c -3.56022,0.14259 -5.98114,0.92583 -7.26275,2.34972 -2.70577,-1.5663 -5.3403,-2.34953 -7.90358,-2.34972 h -8.75802 l -4.91304,0.64083 -0.85444,-0.64083 h -0.64083 l -6.40831,0.64083 -3.20415,-0.64083 -2.34972,0.64083 -2.56332,-0.64083 c 10.39568,11.39272 16.51917,21.00518 18.37048,28.83739 h 7.26275 v 1.49527 h -5.55386 v 1.70889 c 2.13607,6.55086 3.70254,9.82621 4.69942,9.82607 h 1.70889 l 3.84498,-0.85444 0.85444,0.85444 0.85444,-0.85444 0.85444,0.85444 v 0.64083 c -2.84817,1.70902 -4.77066,4.05873 -5.76747,7.04914 h -0.64083 v 1.49527 h 1.49527 c 1.99366,23.78206 5.69623,41.79651 11.10773,54.04341 l 3.20416,2.1361 h 1.70888 c 2.13605,8e-5 6.62186,-8.33072 13.45745,-24.99241 4.41454,-7.54745 7.61869,-14.16936 9.61246,-19.86575 l -0.85444,-2.34972 c 4.41453,-5.55373 8.97155,-8.33066 13.67106,-8.3308 h 1.49527 c 2.99045,1.4e-4 5.12655,1.56661 6.40831,4.69943 3.98729,4.69955 7.19144,11.74868 9.61246,21.14742 l 11.96218,22.21547 c 1.56635,1.56656 2.34959,3.34664 2.34971,5.34026 4.41449,8.40207 8.40188,13.95593 11.96218,16.6616 h 2.56332 c 2.99041,6e-5 6.9778,-10.39563 11.96218,-31.1871 0.85429,9e-5 3.204,-5.55377 7.04914,-16.66161 v -0.85444 l -13.45745,-1.49527 -3.20416,0.85444 h -4.05859 v -1.70888 l 8.11719,-0.64083 h 15.80716 c 6.12333,-18.37035 11.7484,-32.61103 16.87521,-42.72206 1.70871,-20.79122 4.05842,-31.18691 7.04914,-31.1871 l 9.61247,-3.84499 m -45.49899,2.34971 c -0.85459,1.99389 -2.70588,2.99074 -5.55387,2.99055 v -1.49527 l 5.55387,-1.49528 m -80.53108,3.84499 h 21.57464 v 1.49527 l -4.91304,0.64083 -4.69943,-0.64083 -4.05859,1.49527 -1.49528,-1.49527 h -6.4083 v -1.49527 m -112.35902,2.99054 h 2.34972 l 1.49527,1.49528 v 0.85444 l -4.69943,4.48581 v 3.84499 h -1.70888 v -2.34971 l 0.85444,-0.64084 v -0.85444 l -4.0586,-3.84498 c 0.99691,-1.99352 2.9194,-2.99036 5.76748,-2.99055 m 157.00357,9.18525 h 2.34971 v 0.64083 c -1.1e-4,0.99702 -0.78335,1.49544 -2.34971,1.49527 l -0.85444,0.85444 v 0.85444 l -2.34972,-0.85444 v -1.49527 l 3.20416,-1.49527 m -11.96218,8.3308 v 0.85444 c -1e-4,1.13942 -3.41786,2.34988 -10.25329,3.63137 v -1.49527 l 4.69942,-2.1361 0.85444,0.64083 h 0.64083 l 4.0586,-1.49527 m -139.48752,7.68997 v 0.64083 l -1.70888,1.49527 -0.64083,-0.64083 v -0.85444 l 0.64083,-0.64083 h 1.70888 m 116.41761,0 v 0.64083 c -2.99062,2.27866 -7.83244,4.34356 -14.5255,6.1947 v -1.49527 c 1.13919,1.5e-4 1.70882,-0.78309 1.70888,-2.34972 l 12.81662,-2.99054 m 40.58595,7.47636 0.85445,0.85444 v 0.64083 l -1.49528,1.70888 h -0.85444 l -1.70888,-1.70888 v -0.64083 l 3.20415,-0.85444 m 29.47822,0.85444 h 0.85445 v 0.64083 l -1.49528,1.70888 H 425.54 v -0.85444 l 1.49527,-1.49527 m -13.45744,10.68051 3.20415,2.13611 c -0.56976,1.56661 -2.13623,2.34985 -4.69943,2.34971 l -1.70888,-2.34971 c -1.3e-4,-0.7119 1.06792,-1.42393 3.20416,-2.13611 m 19.22492,9.82608 0.64083,0.85444 v 0.64083 l -0.64083,0.85444 h -1.70888 v -0.85444 l 1.70888,-1.49527 m -30.33266,7.68997 v 0.64083 l -4.05859,3.20415 h -2.34972 v -0.85444 c -1.1e-4,-1.28154 2.13599,-2.27839 6.40831,-2.99054 m -132.43838,29.69183 h 0.85444 v 0.64083 c -2.13609,4.69951 -3.98737,7.54765 -5.55387,8.54441 h -1.70888 v -3.20415 l 6.40831,-5.98109 m 104.45543,35.67292 h 0.85444 v 1.49527 l -6.4083,3.20415 -0.85445,-0.85444 v -1.49527 l 6.40831,-2.34971 m -87.79383,10.03968 h 1.49527 l 2.56333,8.3308 h -1.70888 l -2.34972,-7.68997 v -0.64083 m 85.44412,9.82607 h 0.64083 l 2.56332,2.34972 -0.85444,0.64083 h -0.85444 l -1.49527,-2.1361 v -0.85445" + id="path2986-8-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" /> + </g> + </g> + <g + transform="translate(-45.926042,173.14471)" + id="g7483-2" + style="display:inline;opacity:0.995"> + <path + style="color:#000000;overflow:visible;opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path7419-1" + sodipodi:type="arc" + sodipodi:cx="-127.05254" + sodipodi:cy="42.862476" + sodipodi:rx="15.610416" + sodipodi:ry="14.882812" + sodipodi:start="4.712389" + sodipodi:end="1.5757571" + sodipodi:arc-type="slice" + transform="rotate(-90)" + d="m -127.05254,27.979665 a 15.610416,14.882812 0 0 1 13.5319,7.462729 15.610416,14.882812 0 0 1 -0.0388,14.904073 15.610416,14.882812 0 0 1 -13.57057,7.398638 l 0.0774,-14.882629 z" /> + <path + style="color:#000000;overflow:visible;opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path7417-0" + sodipodi:type="arc" + sodipodi:cx="42.862499" + sodipodi:cy="109.00833" + sodipodi:rx="6.3499999" + sodipodi:ry="6.3499999" + sodipodi:start="4.712389" + sodipodi:end="4.6629787" + sodipodi:open="true" + sodipodi:arc-type="arc" + d="m 42.862499,102.65833 a 6.3499999,6.3499999 0 0 1 6.349516,6.27156 6.3499999,6.3499999 0 0 1 -6.192654,6.4265 6.3499999,6.3499999 0 0 1 -6.502502,-6.1128 6.3499999,6.3499999 0 0 1 6.032013,-6.57751" /> + </g> + <path + style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 96.762323,288.59287 H 119.51649" + id="path7485-6" /> + <path + style="display:inline;opacity:1;fill:#666666;fill-rule:evenodd;stroke:#808080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 183.41824,288.59287 h 22.75417" + id="path7485-0-5" /> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:41.1385px;line-height:125%;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;letter-spacing:0px;word-spacing:0px;display:inline;opacity:0.995;fill:none;stroke:#000000;stroke-width:1.37129px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text1452-5-2-8-0-1" + transform="scale(0.90149947,1.109263)" + aria-label="P +"> + <path + id="path39754" + style="stroke-width:1.37129px" + d="M 72.240371,250.09562 V 261.244 h 2.89255 q 1.506537,0 2.631418,-1.20523 1.144968,-1.20523 1.144968,-4.35892 0,-3.13359 -1.144968,-4.35891 -1.144968,-1.22532 -2.631418,-1.22532 z m 4.640133,13.94049 -4.640133,0.0603 v 5.90563 q 0,1.2454 -0.883835,2.10915 -0.883835,0.86375 -2.048891,0.82357 h -0.08035 q -1.245404,0.0402 -2.04889,-0.84366 -0.883835,-0.80349 -0.883835,-2.08906 v -19.2435 q 0,-1.16506 0.883835,-2.04889 0.883835,-0.88384 2.129238,-0.88384 h 6.93007 q 0.723138,0 1.265491,0.10044 2.932725,0.44192 4.901267,2.73185 1.968541,2.28994 1.968541,5.02179 0,2.71177 -1.546711,5.12223 -2.068977,3.19386 -5.945799,3.23403 z" /> + </g> + <path + id="path7485-6-8" + d="M 22.757663,288.03887 H 45.511831" + style="display:inline;opacity:1;fill:#0000ff;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path7485-0-5-4" + d="m 178.21056,302.76757 17.67249,14.33302" + style="display:inline;opacity:1;fill:#666666;fill-rule:evenodd;stroke:#808080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="display:inline;opacity:1;fill:#666666;fill-rule:evenodd;stroke:#808080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 164.24839,310.07342 7.26442,21.56343" + id="path7485-0-5-4-7" /> + <path + style="display:inline;opacity:1;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 179.32036,273.08213 17.67249,-14.33302" + id="path7485-0-5-4-2" /> + <g + id="g33478" + transform="translate(-11.304107,1.6525328)"> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:41.1385px;line-height:125%;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;letter-spacing:0px;word-spacing:0px;display:inline;opacity:0.995;fill:none;stroke:#000000;stroke-width:1.37129px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text1452-5-2-8-4" + transform="scale(0.90149947,1.109263)" + aria-label="A +"> + <path + id="path39667" + style="stroke-width:1.37129px" + d="m 266.87272,206.73844 h 6.52832 l -3.25412,-9.01913 z m 7.89425,-10.96759 q 0,0 6.4078,17.75705 0.52227,1.44628 -0.38165,2.69168 -0.90392,1.26549 -2.41046,1.26549 h -0.44192 q -0.96418,0 -1.78776,-0.60261 -0.82357,-0.58253 -0.98427,-1.46636 l -1.04453,-4.98162 h -7.61303 l -0.96419,4.92135 q -0.18078,0.96419 -1.02444,1.54672 -0.86375,0.58252 -2.00872,0.58252 h -0.44191 q -1.50654,0 -2.39038,-1.26549 -0.88383,-1.2454 -0.40174,-2.69168 l 6.08641,-17.6767 q 0.52227,-1.52662 1.80784,-2.43054 1.28558,-0.90393 2.61133,-0.90393 h 0.56245 q 1.30566,0 2.59124,0.90393 1.30566,0.90392 1.82793,2.35019 z" /> + </g> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text30963-5-4-4" + aria-label="focused"> + <path + id="path39670" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 227.92238,246.28392 v 0.73794 h -1.00803 q -0.47749,0 -0.66559,0.19775 -0.18328,0.19292 -0.18328,0.68971 v 0.47749 h 1.8569 v 0.6897 h -1.8569 v 4.7122 h -0.88746 v -4.7122 h -1.44211 v -0.6897 h 1.44211 v -0.37621 q 0,-0.88745 0.40514,-1.30707 0.40997,-0.41961 1.27331,-0.41961 z" /> + <path + id="path39672" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 231.71336,249.00899 q -0.67524,0 -1.0225,0.52572 -0.34727,0.52572 -0.34727,1.55787 0,1.02733 0.34727,1.55787 0.34726,0.52572 1.0225,0.52572 0.68006,0 1.02733,-0.52572 0.34726,-0.53054 0.34726,-1.55787 0,-1.03215 -0.34726,-1.55787 -0.34727,-0.52572 -1.02733,-0.52572 z m 0,-0.75241 q 1.12379,0 1.71704,0.72829 0.59806,0.7283 0.59806,2.10771 0,1.38424 -0.59324,2.11253 -0.59325,0.72347 -1.72186,0.72347 -1.12379,0 -1.71703,-0.72347 -0.59325,-0.72829 -0.59325,-2.11253 0,-1.37941 0.59325,-2.10771 0.59324,-0.72829 1.71703,-0.72829 z" /> + <path + id="path39674" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 239.80657,253.51379 q -0.35691,0.2074 -0.73793,0.30868 -0.37621,0.10611 -0.7717,0.10611 -1.25402,0 -1.96302,-0.75241 -0.70418,-0.7524 -0.70418,-2.08359 0,-1.33118 0.70418,-2.08359 0.709,-0.75241 1.96302,-0.75241 0.39067,0 0.76205,0.10129 0.37138,0.10128 0.74758,0.3135 v 0.93086 q -0.35208,-0.3135 -0.709,-0.45337 -0.35208,-0.13987 -0.80063,-0.13987 -0.83441,0 -1.28296,0.54019 -0.44855,0.54019 -0.44855,1.5434 0,0.99839 0.44855,1.5434 0.45338,0.54019 1.28296,0.54019 0.46302,0 0.82957,-0.13987 0.36656,-0.14469 0.68006,-0.44372 z" /> + <path + id="path39676" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 241.57666,251.7437 v -3.34725 h 0.88746 v 3.34725 q 0,0.7283 0.25563,1.07074 0.26045,0.34244 0.80064,0.34244 0.627,0 0.9598,-0.4389 0.33279,-0.44373 0.33279,-1.26849 v -3.05304 h 0.89228 v 5.39226 h -0.89228 v -0.81028 q -0.23633,0.46784 -0.64629,0.709 -0.40515,0.24115 -0.95016,0.24115 -0.82958,0 -1.23472,-0.54019 -0.40515,-0.54501 -0.40515,-1.64469 z" /> + <path + id="path39678" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 251.27598,248.57491 v 0.86816 q -0.38103,-0.22186 -0.76688,-0.33279 -0.38585,-0.11094 -0.78617,-0.11094 -0.60289,0 -0.90192,0.19775 -0.29422,0.19293 -0.29422,0.59325 0,0.36173 0.22187,0.54019 0.22186,0.17845 1.10449,0.34726 l 0.35692,0.0675 q 0.66077,0.1254 0.99838,0.5016 0.34245,0.37621 0.34245,0.9791 0,0.80064 -0.56913,1.25401 -0.56913,0.44855 -1.58199,0.44855 -0.40032,0 -0.83922,-0.0868 -0.43891,-0.082 -0.95016,-0.25081 v -0.91639 q 0.49678,0.25562 0.95016,0.38585 0.45337,0.1254 0.85851,0.1254 0.58843,0 0.91157,-0.23633 0.32315,-0.24116 0.32315,-0.67042 0,-0.61736 -1.18166,-0.85369 l -0.0386,-0.01 -0.33279,-0.0675 q -0.76688,-0.14952 -1.11897,-0.50161 -0.35209,-0.35691 -0.35209,-0.96945 0,-0.77652 0.52572,-1.19613 0.52572,-0.42444 1.5,-0.42444 0.43408,0 0.8344,0.082 0.40032,0.0772 0.78617,0.23634 z" /> + <path + id="path39680" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 257.89331,250.86589 v 0.43409 h -3.84403 v 0.0289 q 0,0.88263 0.45819,1.36494 0.46302,0.48231 1.30225,0.48231 0.42444,0 0.88746,-0.13504 0.46302,-0.13505 0.98874,-0.40997 v 0.88263 q -0.50643,0.2074 -0.9791,0.30868 -0.46784,0.10611 -0.90675,0.10611 -1.25883,0 -1.96783,-0.75241 -0.709,-0.75723 -0.709,-2.08359 0,-1.2926 0.69453,-2.0643 0.69453,-0.7717 1.85208,-0.7717 1.03215,0 1.62539,0.69936 0.59807,0.69935 0.59807,1.90995 z m -0.88745,-0.26044 q -0.0193,-0.78135 -0.37139,-1.18649 -0.34726,-0.40997 -1.00321,-0.40997 -0.64147,0 -1.05626,0.42444 -0.41479,0.42443 -0.49196,1.17684 z" /> + <path + id="path39682" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 262.61516,249.07651 v -2.79259 h 0.88746 v 7.50479 h -0.88746 v -0.68006 q -0.22186,0.40032 -0.59325,0.61254 -0.36655,0.20739 -0.84887,0.20739 -0.97909,0 -1.5434,-0.75723 -0.55948,-0.76205 -0.55948,-2.09806 0,-1.31672 0.5643,-2.0643 0.56431,-0.75241 1.53858,-0.75241 0.48714,0 0.85852,0.21222 0.37138,0.20739 0.5836,0.60771 z m -2.60931,2.01607 q 0,1.03215 0.32797,1.55787 0.32797,0.52572 0.96945,0.52572 0.64147,0 0.97427,-0.53054 0.33762,-0.53054 0.33762,-1.55305 0,-1.02732 -0.33762,-1.55305 -0.3328,-0.53054 -0.97427,-0.53054 -0.64148,0 -0.96945,0.52572 -0.32797,0.52572 -0.32797,1.55787 z" /> + </g> + </g> + <g + id="g33464" + transform="translate(-2.7729899,-2.3768484)"> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:41.1385px;line-height:125%;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;letter-spacing:0px;word-spacing:0px;display:inline;opacity:0.995;fill:none;stroke:#808080;stroke-width:1.37129px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text1452-5-2-8" + transform="scale(0.90149947,1.109263)" + aria-label="A +"> + <path + id="path39645" + style="stroke:#808080;stroke-width:1.37129px" + d="m 270.41947,261.40446 h 6.52833 l -3.25412,-9.01914 z m 7.89425,-10.96759 q 0,0 6.40781,17.75705 0.52226,1.44627 -0.38166,2.69168 -0.90392,1.26549 -2.41046,1.26549 h -0.44192 q -0.96418,0 -1.78775,-0.60262 -0.82358,-0.58252 -0.98427,-1.46636 l -1.04454,-4.98161 h -7.61303 l -0.96418,4.92135 q -0.18079,0.96418 -1.02445,1.54671 -0.86375,0.58253 -2.00871,0.58253 h -0.44192 q -1.50654,0 -2.39037,-1.26549 -0.88384,-1.24541 -0.40175,-2.69168 l 6.08641,-17.6767 q 0.52227,-1.52663 1.80785,-2.43055 1.28558,-0.90392 2.61133,-0.90392 h 0.56244 q 1.30566,0 2.59124,0.90392 1.30567,0.90392 1.82793,2.3502 z" /> + </g> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text30963-5-4-4-6" + aria-label="unfocused"> + <path + id="path39648" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 220.98638,314.19211 v -3.34725 h 0.88745 v 3.34725 q 0,0.7283 0.25563,1.07074 0.26045,0.34244 0.80064,0.34244 0.62701,0 0.9598,-0.4389 0.3328,-0.44373 0.3328,-1.26849 v -3.05304 h 0.89228 v 5.39226 h -0.89228 v -0.81028 q -0.23633,0.46784 -0.6463,0.709 -0.40514,0.24115 -0.95016,0.24115 -0.82958,0 -1.23472,-0.54019 -0.40514,-0.54501 -0.40514,-1.64469 z" /> + <path + id="path39650" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 231.0619,312.88987 v 3.34725 h -0.89228 v -3.34725 q 0,-0.72829 -0.25563,-1.07074 -0.25562,-0.34244 -0.80064,-0.34244 -0.62218,0 -0.9598,0.44373 -0.3328,0.4389 -0.3328,1.26366 v 3.05304 h -0.88745 v -5.4019 h 0.88745 v 0.81028 q 0.23634,-0.46302 0.64148,-0.69935 0.40514,-0.24116 0.9598,-0.24116 0.82476,0 1.2299,0.54502 0.40997,0.54019 0.40997,1.63986 z" /> + <path + id="path39652" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 237.06669,308.73233 v 0.73794 h -1.00803 q -0.47749,0 -0.66559,0.19775 -0.18328,0.19292 -0.18328,0.68971 v 0.47749 h 1.8569 v 0.6897 h -1.8569 v 4.7122 h -0.88746 v -4.7122 h -1.44211 v -0.6897 h 1.44211 v -0.37621 q 0,-0.88745 0.40515,-1.30707 0.40996,-0.41961 1.2733,-0.41961 z" /> + <path + id="path39654" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 240.85768,311.4574 q -0.67524,0 -1.02251,0.52572 -0.34726,0.52572 -0.34726,1.55787 0,1.02733 0.34726,1.55787 0.34727,0.52572 1.02251,0.52572 0.68006,0 1.02732,-0.52572 0.34727,-0.53054 0.34727,-1.55787 0,-1.03215 -0.34727,-1.55787 -0.34726,-0.52572 -1.02732,-0.52572 z m 0,-0.75241 q 1.12378,0 1.71703,0.72829 0.59807,0.7283 0.59807,2.10771 0,1.38424 -0.59325,2.11253 -0.59324,0.72347 -1.72185,0.72347 -1.12379,0 -1.71704,-0.72347 -0.59324,-0.72829 -0.59324,-2.11253 0,-1.37941 0.59324,-2.10771 0.59325,-0.72829 1.71704,-0.72829 z" /> + <path + id="path39656" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 248.95089,315.9622 q -0.35691,0.2074 -0.73794,0.30868 -0.37621,0.10611 -0.7717,0.10611 -1.25402,0 -1.96302,-0.75241 -0.70417,-0.7524 -0.70417,-2.08359 0,-1.33118 0.70417,-2.08359 0.709,-0.75241 1.96302,-0.75241 0.39067,0 0.76205,0.10129 0.37138,0.10128 0.74759,0.3135 v 0.93086 q -0.35209,-0.3135 -0.709,-0.45337 -0.35209,-0.13987 -0.80064,-0.13987 -0.8344,0 -1.28296,0.54019 -0.44855,0.54019 -0.44855,1.5434 0,0.99839 0.44855,1.5434 0.45338,0.54019 1.28296,0.54019 0.46302,0 0.82958,-0.13987 0.36655,-0.14469 0.68006,-0.44372 z" /> + <path + id="path39658" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 250.72097,314.19211 v -3.34725 h 0.88746 v 3.34725 q 0,0.7283 0.25563,1.07074 0.26045,0.34244 0.80064,0.34244 0.627,0 0.9598,-0.4389 0.33279,-0.44373 0.33279,-1.26849 v -3.05304 h 0.89228 v 5.39226 h -0.89228 v -0.81028 q -0.23633,0.46784 -0.64629,0.709 -0.40515,0.24115 -0.95016,0.24115 -0.82958,0 -1.23472,-0.54019 -0.40515,-0.54501 -0.40515,-1.64469 z" /> + <path + id="path39660" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 260.42029,311.02332 v 0.86816 q -0.38103,-0.22186 -0.76688,-0.33279 -0.38585,-0.11094 -0.78617,-0.11094 -0.60289,0 -0.90192,0.19775 -0.29421,0.19293 -0.29421,0.59325 0,0.36173 0.22186,0.54019 0.22187,0.17845 1.1045,0.34726 l 0.35691,0.0675 q 0.66077,0.1254 0.99839,0.5016 0.34244,0.37621 0.34244,0.9791 0,0.80064 -0.56913,1.25401 -0.56913,0.44855 -1.58199,0.44855 -0.40032,0 -0.83922,-0.0868 -0.43891,-0.082 -0.95016,-0.25081 v -0.91639 q 0.49679,0.25562 0.95016,0.38585 0.45337,0.1254 0.85852,0.1254 0.58842,0 0.91157,-0.23633 0.32315,-0.24116 0.32315,-0.67042 0,-0.61736 -1.18167,-0.85369 l -0.0386,-0.01 -0.3328,-0.0675 q -0.76688,-0.14952 -1.11897,-0.50161 -0.35208,-0.35691 -0.35208,-0.96945 0,-0.77652 0.52572,-1.19613 0.52572,-0.42444 1.49999,-0.42444 0.43408,0 0.8344,0.082 0.40032,0.0772 0.78617,0.23634 z" /> + <path + id="path39662" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 267.03763,313.3143 v 0.43409 h -3.84404 v 0.0289 q 0,0.88263 0.4582,1.36494 0.46302,0.48231 1.30224,0.48231 0.42444,0 0.88746,-0.13504 0.46302,-0.13505 0.98874,-0.40997 v 0.88263 q -0.50643,0.2074 -0.97909,0.30868 -0.46785,0.10611 -0.90675,0.10611 -1.25884,0 -1.96784,-0.75241 -0.709,-0.75723 -0.709,-2.08359 0,-1.2926 0.69453,-2.0643 0.69453,-0.7717 1.85208,-0.7717 1.03215,0 1.6254,0.69936 0.59807,0.69935 0.59807,1.90995 z m -0.88746,-0.26044 q -0.0193,-0.78135 -0.37138,-1.18649 -0.34727,-0.40997 -1.00321,-0.40997 -0.64148,0 -1.05627,0.42444 -0.41479,0.42443 -0.49196,1.17684 z" /> + <path + id="path39664" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 271.75947,311.52492 v -2.79259 h 0.88746 v 7.50479 h -0.88746 v -0.68006 q -0.22186,0.40032 -0.59325,0.61254 -0.36655,0.20739 -0.84887,0.20739 -0.97909,0 -1.5434,-0.75723 -0.55948,-0.76205 -0.55948,-2.09806 0,-1.31672 0.5643,-2.0643 0.56431,-0.75241 1.53858,-0.75241 0.48714,0 0.85852,0.21222 0.37138,0.20739 0.5836,0.60771 z m -2.60931,2.01607 q 0,1.03215 0.32797,1.55787 0.32797,0.52572 0.96945,0.52572 0.64147,0 0.97427,-0.53054 0.33762,-0.53054 0.33762,-1.55305 0,-1.02732 -0.33762,-1.55305 -0.3328,-0.53054 -0.97427,-0.53054 -0.64148,0 -0.96945,0.52572 -0.32797,0.52572 -0.32797,1.55787 z" /> + </g> + </g> + <g + id="g33457" + transform="translate(-14.261091,-2.7729899)"> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:41.1385px;line-height:125%;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;letter-spacing:0px;word-spacing:0px;display:inline;opacity:0.995;fill:none;stroke:#808080;stroke-width:1.37129px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text1452-5-2-8-3" + transform="scale(0.90149947,1.109263)" + aria-label="A +"> + <path + id="path39685" + style="stroke:#808080;stroke-width:1.37129px" + d="m 258.17252,309.60606 h 6.52833 l -3.25412,-9.01914 z m 7.89425,-10.96759 q 0,0 6.40781,17.75705 0.52226,1.44627 -0.38166,2.69168 -0.90392,1.26549 -2.41046,1.26549 h -0.44191 q -0.96419,0 -1.78776,-0.60262 -0.82357,-0.58252 -0.98427,-1.46636 l -1.04453,-4.98162 h -7.61304 l -0.96418,4.92136 q -0.18079,0.96418 -1.02445,1.54671 -0.86374,0.58253 -2.00871,0.58253 h -0.44192 q -1.50654,0 -2.39037,-1.26549 -0.88384,-1.24541 -0.40174,-2.69168 l 6.0864,-17.6767 q 0.52227,-1.52663 1.80785,-2.43055 1.28558,-0.90392 2.61133,-0.90392 h 0.56244 q 1.30567,0 2.59124,0.90392 1.30567,0.90392 1.82793,2.3502 z" /> + </g> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text30963-5-4-4-6-3" + aria-label="unfocused"> + <path + id="path39688" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 209.94576,367.66038 v -3.34726 h 0.88746 v 3.34726 q 0,0.72829 0.25562,1.07073 0.26045,0.34244 0.80064,0.34244 0.62701,0 0.9598,-0.4389 0.3328,-0.44373 0.3328,-1.26848 v -3.05305 h 0.89228 v 5.39226 h -0.89228 v -0.81028 q -0.23633,0.46784 -0.6463,0.709 -0.40514,0.24115 -0.95016,0.24115 -0.82957,0 -1.23472,-0.54019 -0.40514,-0.54501 -0.40514,-1.64468 z" /> + <path + id="path39690" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 220.02128,366.35813 v 3.34725 H 219.129 v -3.34725 q 0,-0.72829 -0.25563,-1.07073 -0.25562,-0.34245 -0.80064,-0.34245 -0.62218,0 -0.9598,0.44373 -0.3328,0.43891 -0.3328,1.26366 v 3.05304 h -0.88745 v -5.4019 h 0.88745 v 0.81028 q 0.23634,-0.46302 0.64148,-0.69935 0.40514,-0.24116 0.9598,-0.24116 0.82476,0 1.2299,0.54502 0.40997,0.54019 0.40997,1.63986 z" /> + <path + id="path39692" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 226.02608,362.20059 v 0.73794 h -1.00804 q -0.47749,0 -0.66559,0.19775 -0.18328,0.19293 -0.18328,0.68971 v 0.47749 h 1.85691 v 0.68971 h -1.85691 v 4.71219 h -0.88746 v -4.71219 h -1.44211 v -0.68971 h 1.44211 v -0.37621 q 0,-0.88745 0.40515,-1.30706 0.40996,-0.41962 1.2733,-0.41962 z" /> + <path + id="path39694" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 229.81706,364.92566 q -0.67524,0 -1.02251,0.52572 -0.34726,0.52572 -0.34726,1.55787 0,1.02733 0.34726,1.55787 0.34727,0.52573 1.02251,0.52573 0.68006,0 1.02732,-0.52573 0.34727,-0.53054 0.34727,-1.55787 0,-1.03215 -0.34727,-1.55787 -0.34726,-0.52572 -1.02732,-0.52572 z m 0,-0.75241 q 1.12379,0 1.71703,0.7283 0.59807,0.72829 0.59807,2.1077 0,1.38424 -0.59325,2.11253 -0.59324,0.72347 -1.72185,0.72347 -1.12379,0 -1.71704,-0.72347 -0.59324,-0.72829 -0.59324,-2.11253 0,-1.37941 0.59324,-2.1077 0.59325,-0.7283 1.71704,-0.7283 z" /> + <path + id="path39696" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 237.91027,369.43046 q -0.35691,0.2074 -0.73794,0.30869 -0.37621,0.1061 -0.7717,0.1061 -1.25402,0 -1.96302,-0.7524 -0.70417,-0.75241 -0.70417,-2.0836 0,-1.33118 0.70417,-2.08359 0.709,-0.75241 1.96302,-0.75241 0.39067,0 0.76205,0.10129 0.37138,0.10128 0.74759,0.3135 v 0.93087 q -0.35209,-0.31351 -0.709,-0.45338 -0.35209,-0.13987 -0.80064,-0.13987 -0.8344,0 -1.28295,0.54019 -0.44856,0.54019 -0.44856,1.5434 0,0.99839 0.44856,1.54341 0.45337,0.54019 1.28295,0.54019 0.46302,0 0.82958,-0.13987 0.36655,-0.1447 0.68006,-0.44373 z" /> + <path + id="path39698" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 239.68036,367.66038 v -3.34726 h 0.88745 v 3.34726 q 0,0.72829 0.25563,1.07073 0.26045,0.34244 0.80064,0.34244 0.627,0 0.9598,-0.4389 0.3328,-0.44373 0.3328,-1.26848 v -3.05305 h 0.89228 v 5.39226 h -0.89228 v -0.81028 q -0.23634,0.46784 -0.6463,0.709 -0.40515,0.24115 -0.95016,0.24115 -0.82958,0 -1.23472,-0.54019 -0.40514,-0.54501 -0.40514,-1.64468 z" /> + <path + id="path39700" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 249.37967,364.49158 v 0.86816 q -0.38102,-0.22186 -0.76687,-0.33279 -0.38585,-0.11093 -0.78617,-0.11093 -0.6029,0 -0.90193,0.19774 -0.29421,0.19293 -0.29421,0.59325 0,0.36173 0.22186,0.54019 0.22187,0.17845 1.1045,0.34726 l 0.35691,0.0675 q 0.66077,0.1254 0.99839,0.5016 0.34244,0.37621 0.34244,0.9791 0,0.80064 -0.56913,1.25401 -0.56913,0.44855 -1.58198,0.44855 -0.40032,0 -0.83923,-0.0868 -0.4389,-0.082 -0.95016,-0.25081 v -0.91639 q 0.49679,0.25563 0.95016,0.38585 0.45338,0.1254 0.85852,0.1254 0.58842,0 0.91157,-0.23633 0.32315,-0.24116 0.32315,-0.67042 0,-0.61736 -1.18167,-0.85369 l -0.0386,-0.01 -0.3328,-0.0675 q -0.76688,-0.14952 -1.11896,-0.50161 -0.35209,-0.35691 -0.35209,-0.96945 0,-0.77652 0.52572,-1.19613 0.52572,-0.42444 1.49999,-0.42444 0.43408,0 0.8344,0.082 0.40032,0.0772 0.78617,0.23633 z" /> + <path + id="path39702" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 255.99701,366.78257 v 0.43408 h -3.84404 v 0.0289 q 0,0.88263 0.4582,1.36494 0.46302,0.48232 1.30224,0.48232 0.42444,0 0.88746,-0.13505 0.46302,-0.13505 0.98874,-0.40997 v 0.88263 q -0.50643,0.2074 -0.97909,0.30869 -0.46785,0.1061 -0.90675,0.1061 -1.25884,0 -1.96784,-0.7524 -0.709,-0.75724 -0.709,-2.0836 0,-1.2926 0.69453,-2.0643 0.69453,-0.7717 1.85208,-0.7717 1.03215,0 1.6254,0.69936 0.59807,0.69935 0.59807,1.90996 z m -0.88746,-0.26045 q -0.0193,-0.78135 -0.37138,-1.18649 -0.34727,-0.40997 -1.00321,-0.40997 -0.64148,0 -1.05627,0.42444 -0.41479,0.42443 -0.49196,1.17684 z" /> + <path + id="path39704" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 260.71885,364.99319 v -2.7926 h 0.88746 v 7.50479 h -0.88746 v -0.68006 q -0.22186,0.40032 -0.59324,0.61254 -0.36656,0.20739 -0.84888,0.20739 -0.97909,0 -1.5434,-0.75723 -0.55948,-0.76205 -0.55948,-2.09806 0,-1.31671 0.56431,-2.0643 0.5643,-0.75241 1.53857,-0.75241 0.48714,0 0.85852,0.21222 0.37138,0.2074 0.5836,0.60772 z m -2.60931,2.01606 q 0,1.03215 0.32797,1.55787 0.32797,0.52573 0.96945,0.52573 0.64148,0 0.97427,-0.53055 0.33762,-0.53054 0.33762,-1.55305 0,-1.02732 -0.33762,-1.55304 -0.33279,-0.53055 -0.97427,-0.53055 -0.64148,0 -0.96945,0.52572 -0.32797,0.52572 -0.32797,1.55787 z" /> + </g> + </g> + <g + id="g33471" + transform="translate(-5.5459797,-19.410929)"> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:41.1385px;line-height:125%;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;letter-spacing:0px;word-spacing:0px;display:inline;opacity:0.995;fill:none;stroke:#808080;stroke-width:1.37129px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text1452-5-2-8-1" + transform="scale(0.90149947,1.109263)" + aria-label="A +"> + <path + id="path39707" + style="stroke:#808080;stroke-width:1.37129px" + d="m 200.37853,343.44413 h 6.52833 l -3.25412,-9.01913 z m 7.89425,-10.96759 q 0,0 6.40781,17.75705 0.52226,1.44628 -0.38166,2.69168 -0.90392,1.26549 -2.41046,1.26549 h -0.44192 q -0.96418,0 -1.78775,-0.60261 -0.82358,-0.58253 -0.98427,-1.46637 l -1.04454,-4.98161 h -7.61303 l -0.96418,4.92135 q -0.18079,0.96419 -1.02445,1.54671 -0.86374,0.58253 -2.00871,0.58253 h -0.44192 q -1.50654,0 -2.39037,-1.26549 -0.88384,-1.2454 -0.40175,-2.69168 l 6.08641,-17.6767 q 0.52227,-1.52662 1.80785,-2.43054 1.28558,-0.90393 2.61133,-0.90393 h 0.56244 q 1.30566,0 2.59124,0.90393 1.30567,0.90392 1.82793,2.35019 z" /> + </g> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text30963-5-4-4-6-9" + aria-label="unfocused"> + <path + id="path39710" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 157.84452,405.19572 v -3.34726 h 0.88745 v 3.34726 q 0,0.72829 0.25563,1.07073 0.26045,0.34244 0.80064,0.34244 0.62701,0 0.9598,-0.4389 0.3328,-0.44373 0.3328,-1.26849 v -3.05304 h 0.89228 v 5.39226 h -0.89228 v -0.81028 q -0.23634,0.46784 -0.6463,0.709 -0.40514,0.24115 -0.95016,0.24115 -0.82958,0 -1.23472,-0.54019 -0.40514,-0.54501 -0.40514,-1.64468 z" /> + <path + id="path39712" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 167.92004,403.89347 v 3.34725 h -0.89228 v -3.34725 q 0,-0.72829 -0.25563,-1.07073 -0.25562,-0.34245 -0.80064,-0.34245 -0.62218,0 -0.9598,0.44373 -0.3328,0.43891 -0.3328,1.26366 v 3.05304 h -0.88745 v -5.4019 h 0.88745 v 0.81028 q 0.23634,-0.46302 0.64148,-0.69935 0.40514,-0.24116 0.9598,-0.24116 0.82476,0 1.2299,0.54502 0.40997,0.54019 0.40997,1.63986 z" /> + <path + id="path39714" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 173.92483,399.73593 v 0.73794 h -1.00803 q -0.47749,0 -0.66559,0.19775 -0.18328,0.19292 -0.18328,0.68971 v 0.47749 h 1.8569 v 0.6897 h -1.8569 v 4.7122 h -0.88746 v -4.7122 h -1.44211 v -0.6897 h 1.44211 v -0.37621 q 0,-0.88745 0.40515,-1.30707 0.40996,-0.41961 1.2733,-0.41961 z" /> + <path + id="path39716" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 177.71581,402.461 q -0.67523,0 -1.0225,0.52572 -0.34726,0.52572 -0.34726,1.55787 0,1.02733 0.34726,1.55787 0.34727,0.52573 1.0225,0.52573 0.68007,0 1.02733,-0.52573 0.34727,-0.53054 0.34727,-1.55787 0,-1.03215 -0.34727,-1.55787 -0.34726,-0.52572 -1.02733,-0.52572 z m 0,-0.75241 q 1.12379,0 1.71704,0.7283 0.59807,0.72829 0.59807,2.1077 0,1.38424 -0.59325,2.11253 -0.59324,0.72347 -1.72186,0.72347 -1.12378,0 -1.71703,-0.72347 -0.59324,-0.72829 -0.59324,-2.11253 0,-1.37941 0.59324,-2.1077 0.59325,-0.7283 1.71703,-0.7283 z" /> + <path + id="path39718" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 185.80903,406.9658 q -0.35692,0.2074 -0.73794,0.30868 -0.37621,0.10611 -0.7717,0.10611 -1.25402,0 -1.96302,-0.7524 -0.70417,-0.75241 -0.70417,-2.0836 0,-1.33118 0.70417,-2.08359 0.709,-0.75241 1.96302,-0.75241 0.39067,0 0.76205,0.10129 0.37138,0.10128 0.74759,0.3135 v 0.93087 q -0.35209,-0.31351 -0.709,-0.45338 -0.35209,-0.13987 -0.80064,-0.13987 -0.83441,0 -1.28296,0.54019 -0.44855,0.54019 -0.44855,1.5434 0,0.99839 0.44855,1.5434 0.45338,0.5402 1.28296,0.5402 0.46302,0 0.82957,-0.13988 0.36656,-0.14469 0.68007,-0.44372 z" /> + <path + id="path39720" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 187.57911,405.19572 v -3.34726 h 0.88746 v 3.34726 q 0,0.72829 0.25563,1.07073 0.26044,0.34244 0.80064,0.34244 0.627,0 0.9598,-0.4389 0.33279,-0.44373 0.33279,-1.26849 v -3.05304 h 0.89228 v 5.39226 h -0.89228 v -0.81028 q -0.23633,0.46784 -0.6463,0.709 -0.40514,0.24115 -0.95015,0.24115 -0.82958,0 -1.23472,-0.54019 -0.40515,-0.54501 -0.40515,-1.64468 z" /> + <path + id="path39722" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 197.27843,402.02692 v 0.86816 q -0.38103,-0.22186 -0.76688,-0.33279 -0.38585,-0.11094 -0.78617,-0.11094 -0.60289,0 -0.90192,0.19775 -0.29421,0.19293 -0.29421,0.59325 0,0.36173 0.22186,0.54019 0.22186,0.17845 1.1045,0.34726 l 0.35691,0.0675 q 0.66077,0.1254 0.99839,0.5016 0.34244,0.37621 0.34244,0.9791 0,0.80064 -0.56913,1.25401 -0.56913,0.44855 -1.58199,0.44855 -0.40032,0 -0.83922,-0.0868 -0.43891,-0.082 -0.95016,-0.25081 v -0.91639 q 0.49678,0.25563 0.95016,0.38585 0.45337,0.1254 0.85852,0.1254 0.58842,0 0.91157,-0.23633 0.32315,-0.24116 0.32315,-0.67042 0,-0.61736 -1.18167,-0.85369 l -0.0386,-0.01 -0.3328,-0.0675 q -0.76688,-0.14952 -1.11897,-0.50161 -0.35209,-0.35691 -0.35209,-0.96945 0,-0.77652 0.52573,-1.19613 0.52572,-0.42444 1.49999,-0.42444 0.43408,0 0.8344,0.082 0.40032,0.0772 0.78617,0.23633 z" /> + <path + id="path39724" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 203.89576,404.31791 v 0.43408 h -3.84403 v 0.0289 q 0,0.88263 0.4582,1.36494 0.46302,0.48232 1.30224,0.48232 0.42444,0 0.88746,-0.13505 0.46302,-0.13505 0.98874,-0.40997 v 0.88263 q -0.50643,0.2074 -0.9791,0.30868 -0.46784,0.10611 -0.90674,0.10611 -1.25884,0 -1.96784,-0.7524 -0.709,-0.75724 -0.709,-2.0836 0,-1.2926 0.69453,-2.0643 0.69453,-0.7717 1.85208,-0.7717 1.03215,0 1.6254,0.69936 0.59806,0.69935 0.59806,1.90996 z m -0.88745,-0.26045 q -0.0193,-0.78135 -0.37138,-1.18649 -0.34727,-0.40997 -1.00321,-0.40997 -0.64148,0 -1.05627,0.42444 -0.41479,0.42443 -0.49196,1.17684 z" /> + <path + id="path39726" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 208.61761,402.52852 v -2.79259 h 0.88745 v 7.50479 h -0.88745 v -0.68006 q -0.22187,0.40032 -0.59325,0.61254 -0.36655,0.20739 -0.84887,0.20739 -0.97909,0 -1.5434,-0.75723 -0.55948,-0.76205 -0.55948,-2.09806 0,-1.31671 0.5643,-2.0643 0.56431,-0.75241 1.53858,-0.75241 0.48714,0 0.85852,0.21222 0.37138,0.20739 0.5836,0.60771 z m -2.60932,2.01607 q 0,1.03215 0.32798,1.55787 0.32797,0.52573 0.96945,0.52573 0.64147,0 0.97427,-0.53055 0.33762,-0.53054 0.33762,-1.55305 0,-1.02732 -0.33762,-1.55304 -0.3328,-0.53055 -0.97427,-0.53055 -0.64148,0 -0.96945,0.52572 -0.32798,0.52572 -0.32798,1.55787 z" /> + </g> + </g> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';letter-spacing:5.29167px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text30963-5-3" + transform="rotate(-15.731276,160.37943,266.16763)" + aria-label="text-input"> + <path + id="path39624" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 157.54644,335.47352 0.0728,1.53202 2.0138,-0.0957 0.0327,0.68893 -2.0138,0.0957 0.13917,2.92916 q 0.0284,0.5974 0.26603,0.82271 0.23764,0.22531 0.80131,0.19853 l 0.99727,-0.0474 0.0336,0.7082 -1.08398,0.0515 q -0.99726,0.0474 -1.42576,-0.33304 -0.42851,-0.38041 -0.47497,-1.3584 l -0.13916,-2.92916 -1.44049,0.0684 -0.0327,-0.68893 1.44049,-0.0684 -0.0728,-1.53203 z" /> + <path + id="path39626" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 170.59082,337.34001 0.10598,0.42094 -3.72773,0.93845 0.007,0.0281 q 0.21548,0.85593 0.77756,1.21179 0.56675,0.35468 1.38059,0.1498 0.41159,-0.10362 0.82763,-0.34762 0.41604,-0.244 0.85874,-0.63894 l 0.21548,0.85593 q -0.44048,0.32475 -0.87412,0.53836 -0.42778,0.21712 -0.8534,0.32427 -1.22075,0.30732 -2.09198,-0.24924 -0.87241,-0.56123 -1.19622,-1.84746 -0.31556,-1.25348 0.16956,-2.17139 0.48512,-0.91791 1.60765,-1.2005 1.00092,-0.25198 1.74694,0.28138 0.75071,0.53219 1.04625,1.70617 z m -0.92418,-0.0359 q -0.20946,-0.75299 -0.6498,-1.05992 -0.43685,-0.31279 -1.07295,-0.15265 -0.62206,0.1566 -0.92068,0.66946 -0.29863,0.51286 -0.18977,1.26134 z" /> + <path + id="path39628" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 179.39456,331.0332 -0.63054,3.16644 3.12919,1.62655 -0.92695,0.44291 -2.36106,-1.27194 -0.4894,2.63395 -0.92695,0.44291 0.70045,-3.45642 -2.85966,-1.49876 0.88778,-0.42419 2.13466,1.14492 0.44164,-2.37593 z" /> + <path + id="path39630" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 184.95926,325.59496 0.92135,1.22618 1.61178,-1.21107 0.41431,0.5514 -1.61178,1.21107 1.76157,2.34441 q 0.35927,0.47813 0.68246,0.5309 0.3232,0.0528 0.77434,-0.28622 l 0.79818,-0.59974 0.4259,0.56682 -0.86758,0.65189 q -0.79818,0.59975 -1.36641,0.52597 -0.56823,-0.0738 -1.15638,-0.85652 l -1.76157,-2.3444 -1.15292,0.86629 -0.41431,-0.55139 1.15292,-0.8663 -0.92135,-1.22619 z" /> + <path + id="path39632" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 194.24049,322.4116 1.67102,-1.87673 0.59076,0.52601 -1.67102,1.87672 z" /> + <path + id="path39634" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 198.44043,313.2346 1.1448,-1.96215 4.07011,2.37467 0.88715,-1.52056 0.59573,0.34757 -2.22154,3.80765 -0.59573,-0.34757 0.88716,-1.52056 -3.47438,-2.0271 -0.69757,1.19562 z m -1.11877,-2.25535 0.44722,-0.76653 0.97067,0.56633 -0.44723,0.76653 z" /> + <path + id="path39636" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 206.16034,301.18388 3.16695,1.08375 -0.28889,0.84422 -3.16696,-1.08375 q -0.68906,-0.23581 -1.09582,-0.10482 -0.40676,0.13098 -0.58322,0.64664 -0.20145,0.58867 0.10907,1.05177 0.30751,0.45697 1.08784,0.72401 l 2.88859,0.98849 -0.28734,0.83965 -5.11093,-1.74899 0.28734,-0.83965 0.76663,0.26235 q -0.36156,-0.37352 -0.45399,-0.83336 -0.097,-0.4614 0.0826,-0.98618 0.26703,-0.78033 0.91386,-0.98719 0.64383,-0.21299 1.68427,0.14306 z" /> + <path + id="path39638" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 210.38237,294.39264 2.71147,0.35575 -0.11607,0.8847 -7.3932,-0.97 0.11607,-0.88469 0.68385,0.0897 q -0.36806,-0.27206 -0.526,-0.66248 -0.16211,-0.39583 -0.0994,-0.87404 0.12737,-0.97078 0.95032,-1.42222 0.82358,-0.45623 2.15302,-0.2818 1.30552,0.17128 1.97876,0.82389 0.66845,0.65198 0.54171,1.61797 -0.064,0.48778 -0.31794,0.82903 -0.2581,0.33583 -0.68262,0.49417 z m -1.66013,-2.84462 q -1.02338,-0.13427 -1.5873,0.12253 -0.56329,0.25202 -0.64674,0.88804 -0.0841,0.64081 0.39867,1.03979 0.47796,0.39836 1.49656,0.532 1.01381,0.13301 1.58314,-0.12794 0.56933,-0.26095 0.6534,-0.90176 0.0834,-0.63602 -0.39577,-1.02482 -0.47859,-0.39357 -1.50196,-0.52784 z" /> + <path + id="path39640" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 209.65365,284.27978 -3.33938,0.22937 -0.0608,-0.88537 3.33939,-0.22937 q 0.72658,-0.0499 1.0507,-0.3284 0.32379,-0.2833 0.28677,-0.82222 -0.043,-0.62554 -0.50364,-0.92747 -0.46549,-0.30161 -1.28831,-0.24509 l -3.04586,0.20921 -0.0611,-0.89018 5.37959,-0.36951 0.0611,0.89018 -0.80838,0.0555 q 0.48294,0.20371 0.75162,0.59619 0.26835,0.38767 0.3057,0.9314 0.0568,0.82763 -0.45431,1.26883 -0.51597,0.44154 -1.61306,0.5169 z" /> + <path + id="path39642" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 202.9932,272.89197 1.47933,-0.40497 -0.53233,-1.94452 0.66523,-0.18212 0.53233,1.94452 2.82839,-0.77429 q 0.57684,-0.15792 0.74493,-0.43897 0.16809,-0.28104 0.0191,-0.82532 l -0.26362,-0.96296 0.68384,-0.1872 0.28654,1.04669 q 0.26362,0.96296 -0.0142,1.46407 -0.27787,0.50112 -1.22221,0.75965 l -2.8284,0.77429 0.38078,1.39094 -0.66523,0.18211 -0.38078,-1.39093 -1.47932,0.40497 z" /> + </g> + <path + id="path33498" + style="color:#000000;overflow:visible;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" + d="m 154.91493,342.4639 a 56.491051,56.491051 0 0 0 52.06753,-33.92239 56.491051,56.491051 0 0 0 -10.60091,-61.23215" /> + </g> +</svg> diff --git a/static/images/onscreen_kbd_input_method.svg b/static/images/onscreen_kbd_input_method.svg new file mode 100644 index 0000000000000000000000000000000000000000..3865404646c17ba54d689ede30442f86e7906f8a --- /dev/null +++ b/static/images/onscreen_kbd_input_method.svg @@ -0,0 +1,279 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="184.33975mm" + height="117.91101mm" + viewBox="0 0 184.33976 117.91101" + version="1.1" + id="svg30235" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + sodipodi:docname="input_method.svg"> + <defs + id="defs30229"> + <marker + inkscape:stockid="Arrow1Sstart" + orient="auto" + refY="0" + refX="0" + id="Arrow1Sstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2457" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.2,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Send" + orient="auto" + refY="0" + refX="0" + id="Arrow1Send" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2460" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Mend" + orient="auto" + refY="0" + refX="0" + id="marker31231" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path31229" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Sstart-4" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Sstart"> + <path + transform="matrix(0.2,0,0,0.2,1.2,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2457-6" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Send-9" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Send"> + <path + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2460-2" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.63727437" + inkscape:cx="175.3372" + inkscape:cy="298.83226" + inkscape:document-units="mm" + inkscape:current-layer="layer1" + inkscape:document-rotation="0" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1294" + inkscape:window-height="708" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" /> + <metadata + id="metadata30232"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-15.165791,-90.493919)"> + <rect + y="90.493919" + x="15.165791" + height="117.91101" + width="184.33975" + id="rect41078" + style="color:#000000;overflow:visible;fill:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round" /> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';letter-spacing:0px;word-spacing:0px;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text30963-5" + aria-label="input-method"> + <path + id="path41053" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 124.08704,144.31743 h 2.2717 v 4.71221 h 1.76044 v 0.68971 h -4.40834 v -0.68971 h 1.76044 v -4.0225 h -1.38424 z m 1.38424,-2.10288 h 0.88746 v 1.12379 h -0.88746 z" /> + <path + id="path41055" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 133.86836,146.37209 v 3.34726 h -0.89228 v -3.34726 q 0,-0.72829 -0.25563,-1.07074 -0.25562,-0.34244 -0.80064,-0.34244 -0.62218,0 -0.9598,0.44373 -0.3328,0.4389 -0.3328,1.26366 v 3.05305 h -0.88746 v -5.40192 h 0.88746 v 0.81029 q 0.23633,-0.46302 0.64148,-0.69935 0.40514,-0.24116 0.9598,-0.24116 0.82476,0 1.2299,0.54501 0.40997,0.54019 0.40997,1.63987 z" /> + <path + id="path41057" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 136.55484,149.03928 v 2.73472 h -0.89228 v -7.45657 h 0.89228 v 0.68971 q 0.22187,-0.40032 0.58843,-0.60771 0.37138,-0.21222 0.85369,-0.21222 0.9791,0 1.53376,0.75723 0.55948,0.75723 0.55948,2.09807 0,1.31671 -0.55948,2.06912 -0.55949,0.74759 -1.53376,0.74759 -0.49196,0 -0.86334,-0.2074 -0.36656,-0.21222 -0.57878,-0.61254 z m 2.6045,-2.01607 q 0,-1.03215 -0.32798,-1.55787 -0.32315,-0.52572 -0.96462,-0.52572 -0.6463,0 -0.9791,0.53054 -0.3328,0.52573 -0.3328,1.55305 0,1.02251 0.3328,1.55305 0.3328,0.53055 0.9791,0.53055 0.64147,0 0.96462,-0.52572 0.32798,-0.52573 0.32798,-1.55788 z" /> + <path + id="path41059" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 141.6336,147.67434 v -3.34726 h 0.88746 v 3.34726 q 0,0.72829 0.25563,1.07073 0.26045,0.34244 0.80064,0.34244 0.627,0 0.9598,-0.4389 0.3328,-0.44373 0.3328,-1.26849 v -3.05304 h 0.89228 v 5.39227 h -0.89228 v -0.81029 q -0.23634,0.46784 -0.6463,0.709 -0.40515,0.24116 -0.95016,0.24116 -0.82958,0 -1.23472,-0.5402 -0.40515,-0.54501 -0.40515,-1.64468 z" /> + <path + id="path41061" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 149.60142,142.78368 v 1.53375 h 2.01607 v 0.68971 h -2.01607 v 2.93247 q 0,0.59807 0.22669,0.8344 0.22669,0.23633 0.79099,0.23633 h 0.99839 v 0.70901 h -1.0852 q -0.99839,0 -1.40836,-0.40033 -0.40996,-0.40032 -0.40996,-1.37941 v -2.93247 h -1.44212 v -0.68971 h 1.44212 v -1.53375 z" /> + <path + id="path41063" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 154.30398,146.61807 h 2.51285 v 0.79099 h -2.51285 z" /> + <path + id="path41065" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 161.79431,144.86727 q 0.16398,-0.34726 0.41479,-0.51125 0.25562,-0.16881 0.61253,-0.16881 0.65113,0 0.9164,0.50643 0.27009,0.5016 0.27009,1.89549 v 3.13022 h -0.81028 v -3.09163 q 0,-1.14309 -0.13023,-1.41801 -0.1254,-0.27974 -0.46302,-0.27974 -0.38585,0 -0.53054,0.29904 -0.13987,0.29421 -0.13987,1.39871 v 3.09163 h -0.81029 v -3.09163 q 0,-1.15756 -0.13987,-1.42765 -0.13505,-0.2701 -0.49196,-0.2701 -0.35209,0 -0.49196,0.29904 -0.13505,0.29421 -0.13505,1.39871 v 3.09163 h -0.80546 v -5.40192 h 0.80546 v 0.46303 q 0.15917,-0.28939 0.3955,-0.43891 0.24116,-0.15434 0.54501,-0.15434 0.36656,0 0.60772,0.16881 0.24598,0.16881 0.38103,0.51125 z" /> + <path + id="path41067" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 169.84412,146.79653 v 0.43408 h -3.84404 v 0.0289 q 0,0.88263 0.4582,1.36494 0.46302,0.48232 1.30224,0.48232 0.42444,0 0.88746,-0.13505 0.46302,-0.13505 0.98874,-0.40997 v 0.88264 q -0.50643,0.20739 -0.97909,0.30868 -0.46785,0.10611 -0.90675,0.10611 -1.25884,0 -1.96784,-0.75241 -0.709,-0.75724 -0.709,-2.0836 0,-1.2926 0.69453,-2.0643 0.69453,-0.7717 1.85208,-0.7717 1.03215,0 1.6254,0.69935 0.59807,0.69936 0.59807,1.90997 z m -0.88746,-0.26045 q -0.0193,-0.78135 -0.37138,-1.18649 -0.34727,-0.40997 -1.00321,-0.40997 -0.64148,0 -1.05627,0.42443 -0.41479,0.42444 -0.49196,1.17685 z" /> + <path + id="path41069" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 173.38912,142.78368 v 1.53375 h 2.01607 v 0.68971 h -2.01607 v 2.93247 q 0,0.59807 0.22669,0.8344 0.22669,0.23633 0.791,0.23633 h 0.99838 v 0.70901 h -1.0852 q -0.99839,0 -1.40836,-0.40033 -0.40996,-0.40032 -0.40996,-1.37941 v -2.93247 h -1.44212 v -0.68971 h 1.44212 v -1.53375 z" /> + <path + id="path41071" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 181.44376,146.37209 v 3.34726 h -0.89228 v -3.34726 q 0,-0.72829 -0.25563,-1.07074 -0.25562,-0.34244 -0.80064,-0.34244 -0.62218,0 -0.9598,0.44373 -0.3328,0.4389 -0.3328,1.26366 v 3.05305 h -0.88745 v -7.5048 h 0.88745 v 2.91317 q 0.23634,-0.46302 0.64148,-0.69935 0.40514,-0.24116 0.9598,-0.24116 0.82476,0 1.2299,0.54501 0.40997,0.54019 0.40997,1.63987 z" /> + <path + id="path41073" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 185.29262,144.93962 q -0.67524,0 -1.0225,0.52572 -0.34727,0.52572 -0.34727,1.55787 0,1.02733 0.34727,1.55788 0.34726,0.52572 1.0225,0.52572 0.68006,0 1.02733,-0.52572 0.34727,-0.53055 0.34727,-1.55788 0,-1.03215 -0.34727,-1.55787 -0.34727,-0.52572 -1.02733,-0.52572 z m 0,-0.75241 q 1.12379,0 1.71704,0.72829 0.59807,0.7283 0.59807,2.10771 0,1.38424 -0.59325,2.11254 -0.59324,0.72347 -1.72186,0.72347 -1.12379,0 -1.71703,-0.72347 -0.59325,-0.7283 -0.59325,-2.11254 0,-1.37941 0.59325,-2.10771 0.59324,-0.72829 1.71703,-0.72829 z" /> + <path + id="path41075" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 192.40674,145.00714 v -2.79259 h 0.88746 v 7.5048 h -0.88746 v -0.68007 q -0.22186,0.40032 -0.59324,0.61254 -0.36656,0.2074 -0.84887,0.2074 -0.9791,0 -1.54341,-0.75724 -0.55948,-0.76205 -0.55948,-2.09806 0,-1.31672 0.56431,-2.0643 0.5643,-0.75241 1.53858,-0.75241 0.48713,0 0.85851,0.21222 0.37139,0.20739 0.5836,0.60771 z m -2.60931,2.01607 q 0,1.03215 0.32797,1.55788 0.32797,0.52572 0.96945,0.52572 0.64148,0 0.97427,-0.53055 0.33762,-0.53054 0.33762,-1.55305 0,-1.02732 -0.33762,-1.55305 -0.33279,-0.53054 -0.97427,-0.53054 -0.64148,0 -0.96945,0.52572 -0.32797,0.52572 -0.32797,1.55787 z" /> + </g> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:41.1385px;line-height:125%;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;letter-spacing:0px;word-spacing:0px;display:inline;opacity:0.995;fill:none;stroke:#000000;stroke-width:1.37129px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text1452-5-2-8-0" + transform="scale(0.90149947,1.109263)" + aria-label="P +"> + <path + id="path41050" + style="stroke-width:1.37129px" + d="m 95.472316,89.708156 v 11.148374 h 2.89255 q 1.506537,0 2.631414,-1.205231 1.14497,-1.205229 1.14497,-4.358913 0,-3.133597 -1.14497,-4.358914 -1.144964,-1.225316 -2.631414,-1.225316 z m 4.640134,13.940484 -4.640134,0.0603 v 5.90562 q 0,1.2454 -0.883835,2.10915 -0.883835,0.86375 -2.048891,0.82357 h -0.08035 q -1.245404,0.0402 -2.04889,-0.84366 -0.883835,-0.80348 -0.883835,-2.08906 V 90.371032 q 0,-1.165055 0.883835,-2.04889 0.883835,-0.883835 2.129238,-0.883835 h 6.93007 q 0.723142,0 1.265492,0.100436 2.93273,0.441917 4.90127,2.731853 1.96854,2.289936 1.96854,5.02179 0,2.711766 -1.54671,5.122224 -2.06898,3.19386 -5.9458,3.23403 z" /> + </g> + <g + id="g5133-8" + style="display:inline;opacity:0.94" + transform="matrix(0.1224467,0,0,0.1224467,95.426163,126.13913)"> + <circle + style="fill:#ffbc00;fill-opacity:1;stroke:none" + id="path2985-6" + cx="341.42856" + cy="465.21933" + r="122.85714" /> + <g + transform="scale(0.9155896,1.0921924)" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:437.474px;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none" + id="text2987-04"> + <path + d="m 443.91049,314.59549 h 2.34971 l -1.49527,1.49528 h -0.85444 v -1.49528 m -173.02434,3.63138 v 1.70888 l -5.55387,6.83553 h -0.85444 l -0.85444,-5.34026 c 3.27538,-2.13591 5.69629,-3.20396 7.26275,-3.20415 m 202.50256,2.34971 c 4.84164,1.9e-4 7.54736,3.06194 8.11719,9.18524 l -4.0586,28.83739 h 1.49528 l 3.20415,-2.1361 h 0.85444 v 0.64083 c -4.41481,2.70589 -8.68701,10.11103 -12.81662,22.21547 -1.56666,10.39583 -4.20118,20.00828 -7.90358,28.83739 -3.27553,9.11414 -4.91321,17.51613 -4.91303,25.20602 l -6.1947,15.16633 c -1.7e-4,1.28172 2.34954,2.56338 7.04914,3.84498 -0.85462,2.9906 -2.13628,4.48587 -3.84499,4.48582 v 0.85444 h 1.49527 v 0.64083 c -1.7e-4,1.56653 -2.42108,2.34977 -7.26275,2.34971 l 0.85444,0.85444 v 2.99055 h -1.49527 c 0.99668,2.99059 3.13279,4.48586 6.40831,4.48581 v 1.49528 h -6.40831 v 0.85444 c 2.13594,4e-5 3.20399,1.2817 3.20416,3.84498 l -8.97163,2.99055 0.85444,0.85444 v 0.64083 c -1.6e-4,0.99688 -1.06821,1.4953 -3.20416,1.49527 v 0.85444 c 2.70557,3e-5 4.05844,0.49846 4.0586,1.49527 -3.84515,1.28169 -8.90058,7.61879 -15.16633,19.01132 -6.40845,10.11089 -11.96231,15.16633 -16.66161,15.16633 h -1.70888 c -3.56029,-2.27851 -6.47963,-9.82607 -8.75802,-22.64269 -9.11415,-19.5097 -13.67116,-30.97344 -13.67106,-34.39126 -1e-4,-8.82916 -2.91944,-18.228 -8.75802,-28.19656 -1.56657,-4.41452 -2.63462,-9.96839 -3.20416,-16.6616 l -3.84498,-0.85444 c -9.68375,14.66799 -14.73919,26.13173 -15.16633,34.39126 -2.7058,4.84189 -4.8419,10.68057 -6.40831,17.51604 5.83861,1.56652 8.75795,3.06179 8.75802,4.48582 v 0.85444 c -4.55709,-0.56959 -7.76124,-1.63764 -9.61246,-3.20416 -1.99376,3.84503 -4.62829,14.52553 -7.90358,32.04155 -2.56338,8.11719 -5.76753,12.17578 -9.61247,12.17578 -10.82295,-3.56016 -19.86578,-9.39884 -27.1285,-17.51604 -1.13928,2e-5 -2.99057,-4.05857 -5.55387,-12.17579 -1.56649,3e-5 -2.63454,-4.05856 -3.20415,-12.17578 -5.41147,-11.5349 -9.11405,-24.70753 -11.10774,-39.51791 v -22.21547 h -0.85444 l -3.84499,0.85444 v -0.85444 c 1e-5,-0.99674 1.28167,-1.49516 3.84499,-1.49527 l -0.85444,-12.81662 V 385.3005 l -6.1947,-32.04154 V 339.5879 c 2.70573,-8.54423 7.40515,-12.81643 14.09828,-12.81662 h 44.85816 v 1.49527 c -3.56022,0.14259 -5.98114,0.92583 -7.26275,2.34972 -2.70577,-1.5663 -5.3403,-2.34953 -7.90358,-2.34972 h -8.75802 l -4.91304,0.64083 -0.85444,-0.64083 h -0.64083 l -6.40831,0.64083 -3.20415,-0.64083 -2.34972,0.64083 -2.56332,-0.64083 c 10.39568,11.39272 16.51917,21.00518 18.37048,28.83739 h 7.26275 v 1.49527 h -5.55386 v 1.70889 c 2.13607,6.55086 3.70254,9.82621 4.69942,9.82607 h 1.70889 l 3.84498,-0.85444 0.85444,0.85444 0.85444,-0.85444 0.85444,0.85444 v 0.64083 c -2.84817,1.70902 -4.77066,4.05873 -5.76747,7.04914 h -0.64083 v 1.49527 h 1.49527 c 1.99366,23.78206 5.69623,41.79651 11.10773,54.04341 l 3.20416,2.1361 h 1.70888 c 2.13605,8e-5 6.62186,-8.33072 13.45745,-24.99241 4.41454,-7.54745 7.61869,-14.16936 9.61246,-19.86575 l -0.85444,-2.34972 c 4.41453,-5.55373 8.97155,-8.33066 13.67106,-8.3308 h 1.49527 c 2.99045,1.4e-4 5.12655,1.56661 6.40831,4.69943 3.98729,4.69955 7.19144,11.74868 9.61246,21.14742 l 11.96218,22.21547 c 1.56635,1.56656 2.34959,3.34664 2.34971,5.34026 4.41449,8.40207 8.40188,13.95593 11.96218,16.6616 h 2.56332 c 2.99041,6e-5 6.9778,-10.39563 11.96218,-31.1871 0.85429,9e-5 3.204,-5.55377 7.04914,-16.66161 v -0.85444 l -13.45745,-1.49527 -3.20416,0.85444 h -4.05859 v -1.70888 l 8.11719,-0.64083 h 15.80716 c 6.12333,-18.37035 11.7484,-32.61103 16.87521,-42.72206 1.70871,-20.79122 4.05842,-31.18691 7.04914,-31.1871 l 9.61247,-3.84499 m -45.49899,2.34971 c -0.85459,1.99389 -2.70588,2.99074 -5.55387,2.99055 v -1.49527 l 5.55387,-1.49528 m -80.53108,3.84499 h 21.57464 v 1.49527 l -4.91304,0.64083 -4.69943,-0.64083 -4.05859,1.49527 -1.49528,-1.49527 h -6.4083 v -1.49527 m -112.35902,2.99054 h 2.34972 l 1.49527,1.49528 v 0.85444 l -4.69943,4.48581 v 3.84499 h -1.70888 v -2.34971 l 0.85444,-0.64084 v -0.85444 l -4.0586,-3.84498 c 0.99691,-1.99352 2.9194,-2.99036 5.76748,-2.99055 m 157.00357,9.18525 h 2.34971 v 0.64083 c -1.1e-4,0.99702 -0.78335,1.49544 -2.34971,1.49527 l -0.85444,0.85444 v 0.85444 l -2.34972,-0.85444 v -1.49527 l 3.20416,-1.49527 m -11.96218,8.3308 v 0.85444 c -1e-4,1.13942 -3.41786,2.34988 -10.25329,3.63137 v -1.49527 l 4.69942,-2.1361 0.85444,0.64083 h 0.64083 l 4.0586,-1.49527 m -139.48752,7.68997 v 0.64083 l -1.70888,1.49527 -0.64083,-0.64083 v -0.85444 l 0.64083,-0.64083 h 1.70888 m 116.41761,0 v 0.64083 c -2.99062,2.27866 -7.83244,4.34356 -14.5255,6.1947 v -1.49527 c 1.13919,1.5e-4 1.70882,-0.78309 1.70888,-2.34972 l 12.81662,-2.99054 m 40.58595,7.47636 0.85445,0.85444 v 0.64083 l -1.49528,1.70888 h -0.85444 l -1.70888,-1.70888 v -0.64083 l 3.20415,-0.85444 m 29.47822,0.85444 h 0.85445 v 0.64083 l -1.49528,1.70888 H 425.54 v -0.85444 l 1.49527,-1.49527 m -13.45744,10.68051 3.20415,2.13611 c -0.56976,1.56661 -2.13623,2.34985 -4.69943,2.34971 l -1.70888,-2.34971 c -1.3e-4,-0.7119 1.06792,-1.42393 3.20416,-2.13611 m 19.22492,9.82608 0.64083,0.85444 v 0.64083 l -0.64083,0.85444 h -1.70888 v -0.85444 l 1.70888,-1.49527 m -30.33266,7.68997 v 0.64083 l -4.05859,3.20415 h -2.34972 v -0.85444 c -1.1e-4,-1.28154 2.13599,-2.27839 6.40831,-2.99054 m -132.43838,29.69183 h 0.85444 v 0.64083 c -2.13609,4.69951 -3.98737,7.54765 -5.55387,8.54441 h -1.70888 v -3.20415 l 6.40831,-5.98109 m 104.45543,35.67292 h 0.85444 v 1.49527 l -6.4083,3.20415 -0.85445,-0.85444 v -1.49527 l 6.40831,-2.34971 m -87.79383,10.03968 h 1.49527 l 2.56333,8.3308 h -1.70888 l -2.34972,-7.68997 v -0.64083 m 85.44412,9.82607 h 0.64083 l 2.56332,2.34972 -0.85444,0.64083 h -0.85444 l -1.49527,-2.1361 v -0.85445" + id="path2986-8" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" /> + </g> + </g> + <path + style="display:inline;opacity:1;fill:#0000ff;fill-rule:evenodd;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow1Sstart);marker-end:url(#Arrow1Send)" + d="m 106.51555,137.49651 12.52685,18.99554" + id="path7485-0" /> + <g + transform="translate(-1.8495626,68.209545)" + id="g7483" + style="display:inline;opacity:0.995"> + <path + style="color:#000000;overflow:visible;opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path7419" + sodipodi:type="arc" + sodipodi:cx="-127.05254" + sodipodi:cy="42.862476" + sodipodi:rx="15.610416" + sodipodi:ry="14.882812" + sodipodi:start="4.712389" + sodipodi:end="1.5757571" + sodipodi:arc-type="slice" + transform="rotate(-90)" + d="m -127.05254,27.979665 a 15.610416,14.882812 0 0 1 13.5319,7.462729 15.610416,14.882812 0 0 1 -0.0388,14.904073 15.610416,14.882812 0 0 1 -13.57057,7.398638 l 0.0774,-14.882629 z" /> + <path + style="color:#000000;overflow:visible;opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path7417" + sodipodi:type="arc" + sodipodi:cx="42.862499" + sodipodi:cy="109.00833" + sodipodi:rx="6.3499999" + sodipodi:ry="6.3499999" + sodipodi:start="4.712389" + sodipodi:end="4.6629787" + sodipodi:open="true" + sodipodi:arc-type="arc" + d="m 42.862499,102.65833 a 6.3499999,6.3499999 0 0 1 6.349516,6.27156 6.3499999,6.3499999 0 0 1 -6.192654,6.4265 6.3499999,6.3499999 0 0 1 -6.502502,-6.1128 6.3499999,6.3499999 0 0 1 6.032013,-6.57751" /> + </g> + <path + id="path7485-0-2" + d="m 71.198358,137.49651 -12.52685,18.99554" + style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow1Sstart-4);marker-end:url(#Arrow1Send-9)" /> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text30963-5-4" + aria-label="any"> + <path + id="path41043" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 36.69215,146.01759 h -0.294211 q -0.776524,0 -1.172021,0.27492 -0.390673,0.2701 -0.390673,0.81029 0,0.48714 0.294211,0.75723 0.294211,0.2701 0.815109,0.2701 0.733115,0 1.152728,-0.50643 0.419612,-0.51125 0.424435,-1.40836 v -0.19775 z m 1.721857,-0.36655 v 3.08198 h -0.892279 v -0.80064 q -0.284564,0.48231 -0.718646,0.71382 -0.429259,0.22669 -1.046619,0.22669 -0.824756,0 -1.316715,-0.46302 -0.491959,-0.46785 -0.491959,-1.24919 0,-0.90193 0.602891,-1.36977 0.607715,-0.46785 1.779735,-0.46785 h 1.191313 v -0.13987 q -0.0048,-0.6463 -0.327973,-0.93568 -0.323149,-0.29421 -1.032149,-0.29421 -0.453375,0 -0.916395,0.13022 -0.463021,0.13022 -0.901925,0.38103 v -0.88746 q 0.491959,-0.1881 0.94051,-0.27974 0.453374,-0.0965 0.87781,-0.0965 0.670415,0 1.143081,0.19775 0.47749,0.19774 0.771701,0.59324 0.183279,0.24116 0.260449,0.59807 0.07717,0.35209 0.07717,1.06109 z" /> + <path + id="path41045" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 44.322342,145.38576 v 3.34726 h -0.892279 v -3.34726 q 0,-0.72829 -0.255626,-1.07073 -0.255626,-0.34244 -0.80064,-0.34244 -0.622184,0 -0.959803,0.44373 -0.332796,0.4389 -0.332796,1.26366 v 3.05304 h -0.887456 v -5.40191 h 0.887456 v 0.81029 q 0.236334,-0.46302 0.641477,-0.69936 0.405143,-0.24115 0.959802,-0.24115 0.824756,0 1.229899,0.54501 0.409966,0.54019 0.409966,1.63986 z" /> + <path + id="path41047" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 49.338397,146.99669 q -0.221864,0.56431 -0.564306,1.48552 -0.47749,1.27331 -0.641476,1.55305 -0.221864,0.37621 -0.55466,0.56431 -0.332796,0.1881 -0.776524,0.1881 h -0.713824 v -0.74276 h 0.525722 q 0.390673,0 0.612537,-0.22669 0.221864,-0.22669 0.564306,-1.17202 l -2.088415,-5.31509 h 0.94051 l 1.60128,4.22506 1.577163,-4.22506 h 0.94051 z" /> + </g> + </g> +</svg> diff --git a/static/images/onscreen_kbd_text_input.svg b/static/images/onscreen_kbd_text_input.svg new file mode 100644 index 0000000000000000000000000000000000000000..c6dd2ac3a8c3eb1380124092b500a14b2dd76a47 --- /dev/null +++ b/static/images/onscreen_kbd_text_input.svg @@ -0,0 +1,191 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="137.39372mm" + height="53.430889mm" + viewBox="0 0 137.39372 53.430888" + version="1.1" + id="svg30235" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + sodipodi:docname="text_input.svg"> + <defs + id="defs30229"> + <marker + inkscape:stockid="Arrow1Sstart" + orient="auto" + refY="0" + refX="0" + id="Arrow1Sstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2457" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.2,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Send" + orient="auto" + refY="0" + refX="0" + id="Arrow1Send" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2460" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Mend" + orient="auto" + refY="0" + refX="0" + id="marker31231" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path31229" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.45062103" + inkscape:cx="444.15221" + inkscape:cy="-128.299" + inkscape:document-units="mm" + inkscape:current-layer="layer1" + inkscape:document-rotation="0" + showgrid="false" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" + inkscape:window-width="1294" + inkscape:window-height="708" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" /> + <metadata + id="metadata30232"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(-6.4620347,-131.26845)"> + <rect + y="131.26845" + x="6.4620347" + height="53.430889" + width="137.39372" + id="rect40401" + style="color:#000000;overflow:visible;fill:#ffffff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round" /> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text30963-5" + aria-label="text-input"> + <path + id="path40377" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 53.331556,166.29398 v 1.53375 h 2.016071 v 0.68971 h -2.016071 v 2.93247 q 0,0.59807 0.226688,0.8344 0.226687,0.23633 0.790994,0.23633 h 0.998389 v 0.709 h -1.085206 q -0.998389,0 -1.408355,-0.40032 -0.409967,-0.40032 -0.409967,-1.37941 v -2.93247 h -1.442117 v -0.68971 h 1.442117 v -1.53375 z" /> + <path + id="path40379" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 61.680403,170.30683 v 0.43408 h -3.844039 v 0.0289 q 0,0.88263 0.458198,1.36494 0.463021,0.48232 1.302246,0.48232 0.424436,0 0.887457,-0.13505 0.463021,-0.13505 0.988743,-0.40997 v 0.88264 q -0.506429,0.20739 -0.979097,0.30868 -0.467844,0.10611 -0.906749,0.10611 -1.258838,0 -1.967839,-0.75241 -0.709001,-0.75724 -0.709001,-2.0836 0,-1.2926 0.694532,-2.0643 0.694531,-0.7717 1.852083,-0.7717 1.032151,0 1.625397,0.69935 0.598069,0.69936 0.598069,1.90997 z m -0.887457,-0.26045 q -0.01929,-0.78135 -0.371382,-1.1865 -0.347265,-0.40996 -1.003212,-0.40996 -0.641477,0 -1.056266,0.42443 -0.41479,0.42444 -0.49196,1.17685 z" /> + <path + id="path40381" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 67.656266,167.82773 -1.934077,2.5852 2.12218,2.81671 h -1.027328 l -1.581988,-2.16558 -1.577165,2.16558 H 62.63056 l 2.122179,-2.81671 -1.934077,-2.5852 h 0.98392 l 1.432471,1.95337 1.422825,-1.95337 z" /> + <path + id="path40383" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 71.172331,166.29398 v 1.53375 h 2.01607 v 0.68971 h -2.01607 v 2.93247 q 0,0.59807 0.226687,0.8344 0.226687,0.23633 0.790994,0.23633 h 0.998389 v 0.709 h -1.085205 q -0.998389,0 -1.408356,-0.40032 -0.409966,-0.40032 -0.409966,-1.37941 v -2.93247 h -1.442117 v -0.68971 h 1.442117 v -1.53375 z" /> + <path + id="path40385" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 75.874888,170.12837 h 2.512853 v 0.79099 h -2.512853 z" /> + <path + id="path40387" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 81.339501,167.82773 h 2.271696 v 4.71221 h 1.760444 v 0.6897 h -4.408345 v -0.6897 h 1.760444 v -4.0225 h -1.384239 z m 1.384239,-2.10288 h 0.887457 v 1.12379 H 82.72374 Z" /> + <path + id="path40389" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 91.120815,169.88239 v 3.34725 h -0.89228 v -3.34725 q 0,-0.72829 -0.255626,-1.07074 -0.255626,-0.34244 -0.80064,-0.34244 -0.622185,0 -0.959804,0.44373 -0.332796,0.4389 -0.332796,1.26366 v 3.05304 h -0.887457 v -5.40191 h 0.887457 v 0.81029 q 0.236333,-0.46302 0.641477,-0.69935 0.405143,-0.24116 0.959803,-0.24116 0.824756,0 1.2299,0.54501 0.409966,0.54019 0.409966,1.63987 z" /> + <path + id="path40391" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 93.807302,172.54958 v 2.73472 h -0.89228 v -7.45657 h 0.89228 v 0.68971 q 0.221864,-0.40032 0.588423,-0.60771 0.371381,-0.21222 0.853695,-0.21222 0.979096,0 1.533756,0.75723 0.559484,0.75723 0.559484,2.09806 0,1.31672 -0.559484,2.06913 -0.559483,0.74759 -1.533756,0.74759 -0.49196,0 -0.863342,-0.2074 -0.366558,-0.21222 -0.578776,-0.61254 z m 2.604493,-2.01607 q 0,-1.03215 -0.327973,-1.55787 -0.32315,-0.52572 -0.964627,-0.52572 -0.6463,0 -0.979096,0.53054 -0.332797,0.52572 -0.332797,1.55305 0,1.02251 0.332797,1.55305 0.332796,0.53055 0.979096,0.53055 0.641477,0 0.964627,-0.52573 0.327973,-0.52572 0.327973,-1.55787 z" /> + <path + id="path40393" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 98.886064,171.18464 v -3.34726 h 0.887457 v 3.34726 q 0,0.72829 0.255629,1.07073 0.26045,0.34244 0.80064,0.34244 0.627,0 0.9598,-0.4389 0.3328,-0.44373 0.3328,-1.26849 v -3.05304 h 0.89228 v 5.39226 h -0.89228 v -0.81028 q -0.23634,0.46784 -0.6463,0.709 -0.40515,0.24116 -0.95016,0.24116 -0.829579,0 -1.234723,-0.5402 -0.405143,-0.54501 -0.405143,-1.64468 z" /> + <path + id="path40395" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 106.85388,166.29398 v 1.53375 h 2.01607 v 0.68971 h -2.01607 v 2.93247 q 0,0.59807 0.22669,0.8344 0.22669,0.23633 0.791,0.23633 h 0.99838 v 0.709 h -1.0852 q -0.99839,0 -1.40836,-0.40032 -0.40996,-0.40032 -0.40996,-1.37941 v -2.93247 h -1.44212 v -0.68971 h 1.44212 v -1.53375 z" /> + </g> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:41.1385px;line-height:125%;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;letter-spacing:0px;word-spacing:0px;display:inline;opacity:0.995;fill:none;stroke:#000000;stroke-width:1.37129px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text1452-5-2-8-0" + transform="scale(0.90149947,1.109263)" + aria-label="A +"> + <path + id="path40398" + style="stroke-width:1.37129px" + d="m 135.02283,140.58871 h 6.52833 l -3.25412,-9.01914 z m 7.89426,-10.96759 q 0,0 6.4078,17.75705 0.52227,1.44627 -0.38166,2.69168 -0.90392,1.26549 -2.41046,1.26549 h -0.44191 q -0.96419,0 -1.78776,-0.60262 -0.82357,-0.58252 -0.98427,-1.46636 l -1.04453,-4.98161 h -7.61304 l -0.96418,4.92135 q -0.18078,0.96418 -1.02444,1.54671 -0.86375,0.58253 -2.00872,0.58253 H 130.222 q -1.50653,0 -2.39037,-1.26549 -0.88383,-1.24541 -0.40174,-2.69168 l 6.08641,-17.6767 q 0.52226,-1.52663 1.80784,-2.43055 1.28558,-0.90392 2.61133,-0.90392 h 0.56244 q 1.30567,0 2.59124,0.90392 1.30567,0.90392 1.82794,2.3502 z" /> + </g> + <g + id="g5133-8" + style="display:inline;opacity:0.94" + transform="matrix(0.1224467,0,0,0.1224467,-11.017255,97.567471)"> + <circle + style="fill:#ffbc00;fill-opacity:1;stroke:none" + id="path2985-6" + cx="341.42856" + cy="465.21933" + r="122.85714" /> + <g + transform="scale(0.9155896,1.0921924)" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:437.474px;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none" + id="text2987-04"> + <path + d="m 443.91049,314.59549 h 2.34971 l -1.49527,1.49528 h -0.85444 v -1.49528 m -173.02434,3.63138 v 1.70888 l -5.55387,6.83553 h -0.85444 l -0.85444,-5.34026 c 3.27538,-2.13591 5.69629,-3.20396 7.26275,-3.20415 m 202.50256,2.34971 c 4.84164,1.9e-4 7.54736,3.06194 8.11719,9.18524 l -4.0586,28.83739 h 1.49528 l 3.20415,-2.1361 h 0.85444 v 0.64083 c -4.41481,2.70589 -8.68701,10.11103 -12.81662,22.21547 -1.56666,10.39583 -4.20118,20.00828 -7.90358,28.83739 -3.27553,9.11414 -4.91321,17.51613 -4.91303,25.20602 l -6.1947,15.16633 c -1.7e-4,1.28172 2.34954,2.56338 7.04914,3.84498 -0.85462,2.9906 -2.13628,4.48587 -3.84499,4.48582 v 0.85444 h 1.49527 v 0.64083 c -1.7e-4,1.56653 -2.42108,2.34977 -7.26275,2.34971 l 0.85444,0.85444 v 2.99055 h -1.49527 c 0.99668,2.99059 3.13279,4.48586 6.40831,4.48581 v 1.49528 h -6.40831 v 0.85444 c 2.13594,4e-5 3.20399,1.2817 3.20416,3.84498 l -8.97163,2.99055 0.85444,0.85444 v 0.64083 c -1.6e-4,0.99688 -1.06821,1.4953 -3.20416,1.49527 v 0.85444 c 2.70557,3e-5 4.05844,0.49846 4.0586,1.49527 -3.84515,1.28169 -8.90058,7.61879 -15.16633,19.01132 -6.40845,10.11089 -11.96231,15.16633 -16.66161,15.16633 h -1.70888 c -3.56029,-2.27851 -6.47963,-9.82607 -8.75802,-22.64269 -9.11415,-19.5097 -13.67116,-30.97344 -13.67106,-34.39126 -1e-4,-8.82916 -2.91944,-18.228 -8.75802,-28.19656 -1.56657,-4.41452 -2.63462,-9.96839 -3.20416,-16.6616 l -3.84498,-0.85444 c -9.68375,14.66799 -14.73919,26.13173 -15.16633,34.39126 -2.7058,4.84189 -4.8419,10.68057 -6.40831,17.51604 5.83861,1.56652 8.75795,3.06179 8.75802,4.48582 v 0.85444 c -4.55709,-0.56959 -7.76124,-1.63764 -9.61246,-3.20416 -1.99376,3.84503 -4.62829,14.52553 -7.90358,32.04155 -2.56338,8.11719 -5.76753,12.17578 -9.61247,12.17578 -10.82295,-3.56016 -19.86578,-9.39884 -27.1285,-17.51604 -1.13928,2e-5 -2.99057,-4.05857 -5.55387,-12.17579 -1.56649,3e-5 -2.63454,-4.05856 -3.20415,-12.17578 -5.41147,-11.5349 -9.11405,-24.70753 -11.10774,-39.51791 v -22.21547 h -0.85444 l -3.84499,0.85444 v -0.85444 c 1e-5,-0.99674 1.28167,-1.49516 3.84499,-1.49527 l -0.85444,-12.81662 V 385.3005 l -6.1947,-32.04154 V 339.5879 c 2.70573,-8.54423 7.40515,-12.81643 14.09828,-12.81662 h 44.85816 v 1.49527 c -3.56022,0.14259 -5.98114,0.92583 -7.26275,2.34972 -2.70577,-1.5663 -5.3403,-2.34953 -7.90358,-2.34972 h -8.75802 l -4.91304,0.64083 -0.85444,-0.64083 h -0.64083 l -6.40831,0.64083 -3.20415,-0.64083 -2.34972,0.64083 -2.56332,-0.64083 c 10.39568,11.39272 16.51917,21.00518 18.37048,28.83739 h 7.26275 v 1.49527 h -5.55386 v 1.70889 c 2.13607,6.55086 3.70254,9.82621 4.69942,9.82607 h 1.70889 l 3.84498,-0.85444 0.85444,0.85444 0.85444,-0.85444 0.85444,0.85444 v 0.64083 c -2.84817,1.70902 -4.77066,4.05873 -5.76747,7.04914 h -0.64083 v 1.49527 h 1.49527 c 1.99366,23.78206 5.69623,41.79651 11.10773,54.04341 l 3.20416,2.1361 h 1.70888 c 2.13605,8e-5 6.62186,-8.33072 13.45745,-24.99241 4.41454,-7.54745 7.61869,-14.16936 9.61246,-19.86575 l -0.85444,-2.34972 c 4.41453,-5.55373 8.97155,-8.33066 13.67106,-8.3308 h 1.49527 c 2.99045,1.4e-4 5.12655,1.56661 6.40831,4.69943 3.98729,4.69955 7.19144,11.74868 9.61246,21.14742 l 11.96218,22.21547 c 1.56635,1.56656 2.34959,3.34664 2.34971,5.34026 4.41449,8.40207 8.40188,13.95593 11.96218,16.6616 h 2.56332 c 2.99041,6e-5 6.9778,-10.39563 11.96218,-31.1871 0.85429,9e-5 3.204,-5.55377 7.04914,-16.66161 v -0.85444 l -13.45745,-1.49527 -3.20416,0.85444 h -4.05859 v -1.70888 l 8.11719,-0.64083 h 15.80716 c 6.12333,-18.37035 11.7484,-32.61103 16.87521,-42.72206 1.70871,-20.79122 4.05842,-31.18691 7.04914,-31.1871 l 9.61247,-3.84499 m -45.49899,2.34971 c -0.85459,1.99389 -2.70588,2.99074 -5.55387,2.99055 v -1.49527 l 5.55387,-1.49528 m -80.53108,3.84499 h 21.57464 v 1.49527 l -4.91304,0.64083 -4.69943,-0.64083 -4.05859,1.49527 -1.49528,-1.49527 h -6.4083 v -1.49527 m -112.35902,2.99054 h 2.34972 l 1.49527,1.49528 v 0.85444 l -4.69943,4.48581 v 3.84499 h -1.70888 v -2.34971 l 0.85444,-0.64084 v -0.85444 l -4.0586,-3.84498 c 0.99691,-1.99352 2.9194,-2.99036 5.76748,-2.99055 m 157.00357,9.18525 h 2.34971 v 0.64083 c -1.1e-4,0.99702 -0.78335,1.49544 -2.34971,1.49527 l -0.85444,0.85444 v 0.85444 l -2.34972,-0.85444 v -1.49527 l 3.20416,-1.49527 m -11.96218,8.3308 v 0.85444 c -1e-4,1.13942 -3.41786,2.34988 -10.25329,3.63137 v -1.49527 l 4.69942,-2.1361 0.85444,0.64083 h 0.64083 l 4.0586,-1.49527 m -139.48752,7.68997 v 0.64083 l -1.70888,1.49527 -0.64083,-0.64083 v -0.85444 l 0.64083,-0.64083 h 1.70888 m 116.41761,0 v 0.64083 c -2.99062,2.27866 -7.83244,4.34356 -14.5255,6.1947 v -1.49527 c 1.13919,1.5e-4 1.70882,-0.78309 1.70888,-2.34972 l 12.81662,-2.99054 m 40.58595,7.47636 0.85445,0.85444 v 0.64083 l -1.49528,1.70888 h -0.85444 l -1.70888,-1.70888 v -0.64083 l 3.20415,-0.85444 m 29.47822,0.85444 h 0.85445 v 0.64083 l -1.49528,1.70888 H 425.54 v -0.85444 l 1.49527,-1.49527 m -13.45744,10.68051 3.20415,2.13611 c -0.56976,1.56661 -2.13623,2.34985 -4.69943,2.34971 l -1.70888,-2.34971 c -1.3e-4,-0.7119 1.06792,-1.42393 3.20416,-2.13611 m 19.22492,9.82608 0.64083,0.85444 v 0.64083 l -0.64083,0.85444 h -1.70888 v -0.85444 l 1.70888,-1.49527 m -30.33266,7.68997 v 0.64083 l -4.05859,3.20415 h -2.34972 v -0.85444 c -1.1e-4,-1.28154 2.13599,-2.27839 6.40831,-2.99054 m -132.43838,29.69183 h 0.85444 v 0.64083 c -2.13609,4.69951 -3.98737,7.54765 -5.55387,8.54441 h -1.70888 v -3.20415 l 6.40831,-5.98109 m 104.45543,35.67292 h 0.85444 v 1.49527 l -6.4083,3.20415 -0.85445,-0.85444 v -1.49527 l 6.40831,-2.34971 m -87.79383,10.03968 h 1.49527 l 2.56333,8.3308 h -1.70888 l -2.34972,-7.68997 v -0.64083 m 85.44412,9.82607 h 0.64083 l 2.56332,2.34972 -0.85444,0.64083 h -0.85444 l -1.49527,-2.1361 v -0.85445" + id="path2986-8" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" /> + </g> + </g> + <path + style="display:inline;opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow1Sstart);marker-end:url(#Arrow1Send)" + d="m 68.558883,155.08604 h 22.75417" + id="path7485-0" /> + </g> +</svg> diff --git a/static/images/onscreen_kbd_virtual_keyboard.svg b/static/images/onscreen_kbd_virtual_keyboard.svg new file mode 100644 index 0000000000000000000000000000000000000000..29ccfe365da55ae3513758e18ecbb330f62d6fbb --- /dev/null +++ b/static/images/onscreen_kbd_virtual_keyboard.svg @@ -0,0 +1,621 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + sodipodi:docname="virtual_keyboard.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + id="svg30235" + version="1.1" + viewBox="0 0 245.60768 84.378123" + height="84.37812mm" + width="245.60767mm"> + <defs + id="defs30229"> + <marker + inkscape:stockid="Arrow1Send" + orient="auto" + refY="0" + refX="0" + id="marker34362" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path34360" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Sstart" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Sstart"> + <path + transform="matrix(0.2,0,0,0.2,1.2,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2457" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Send" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Send"> + <path + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2460" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker31231" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Mend"> + <path + transform="matrix(-0.4,0,0,-0.4,-4,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path31229" /> + </marker> + <marker + inkscape:stockid="Arrow1Sstart" + orient="auto" + refY="0" + refX="0" + id="Arrow1Sstart-4" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2457-6" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.2,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Send" + orient="auto" + refY="0" + refX="0" + id="Arrow1Send-9" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2460-2" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Sstart" + orient="auto" + refY="0" + refX="0" + id="Arrow1Sstart-8" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2457-2" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.2,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Send" + orient="auto" + refY="0" + refX="0" + id="Arrow1Send-99" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2460-6" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Sstart-4-0" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Sstart"> + <path + transform="matrix(0.2,0,0,0.2,1.2,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2457-6-2" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Sstart-8-1" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Sstart"> + <path + transform="matrix(0.2,0,0,0.2,1.2,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2457-2-0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Send-99-4" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Send"> + <path + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2460-6-2" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Sstart-8-2" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Sstart"> + <path + transform="matrix(0.2,0,0,0.2,1.2,0)" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2457-2-05" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Send-99-5" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Send"> + <path + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2460-6-29" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Sstart-8-28" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Sstart"> + <path + transform="matrix(0.2,0,0,0.2,1.2,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2457-2-3" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Send-99-8" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Send"> + <path + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2460-6-0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Sstart-8-0" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Sstart"> + <path + transform="matrix(0.2,0,0,0.2,1.2,0)" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2457-2-9" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Send-99-1" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Send"> + <path + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2460-6-9" /> + </marker> + <marker + inkscape:stockid="Arrow1Sstart" + orient="auto" + refY="0" + refX="0" + id="Arrow1Sstart-8-1-6" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2457-2-0-2" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.2,0)" /> + </marker> + <marker + inkscape:stockid="Arrow1Send" + orient="auto" + refY="0" + refX="0" + id="Arrow1Send-99-4-5" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2460-6-2-4" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" /> + </marker> + </defs> + <sodipodi:namedview + inkscape:window-maximized="1" + inkscape:window-y="0" + inkscape:window-x="0" + inkscape:window-height="708" + inkscape:window-width="1294" + fit-margin-bottom="0" + fit-margin-right="0" + fit-margin-left="0" + fit-margin-top="0" + showgrid="false" + inkscape:document-rotation="0" + inkscape:current-layer="layer1" + inkscape:document-units="mm" + inkscape:cy="215.85293" + inkscape:cx="435.30238" + inkscape:zoom="0.66790123" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" /> + <metadata + id="metadata30232"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + transform="translate(-35.877449,-240.17882)" + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Layer 1"> + <rect + ry="0" + y="240.17882" + x="35.877449" + height="84.37812" + width="245.60767" + id="rect38952" + style="color:#000000;overflow:visible;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.7475;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text30963-5" + aria-label="input-method"> + <path + id="path38433" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 66.011799,309.50309 h 2.271697 v 4.7122 h 1.760444 v 0.68971 h -4.408345 v -0.68971 h 1.760444 v -4.02249 h -1.38424 z m 1.38424,-2.10289 h 0.887457 v 1.12379 h -0.887457 z" /> + <path + id="path38435" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 75.793117,311.55774 v 3.34726 h -0.89228 v -3.34726 q 0,-0.72829 -0.255627,-1.07073 -0.255626,-0.34245 -0.80064,-0.34245 -0.622184,0 -0.959804,0.44373 -0.332796,0.43891 -0.332796,1.26366 v 3.05305 h -0.887457 v -5.40191 h 0.887457 v 0.81028 q 0.236334,-0.46302 0.641477,-0.69935 0.405143,-0.24116 0.959804,-0.24116 0.824756,0 1.229899,0.54502 0.409967,0.54019 0.409967,1.63986 z" /> + <path + id="path38437" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 78.479603,314.22494 v 2.73471 h -0.89228 v -7.45656 h 0.89228 v 0.68971 q 0.221864,-0.40032 0.588422,-0.60772 0.371381,-0.21222 0.853695,-0.21222 0.979096,0 1.533757,0.75724 0.559483,0.75723 0.559483,2.09806 0,1.31671 -0.559483,2.06912 -0.559484,0.74759 -1.533757,0.74759 -0.49196,0 -0.863341,-0.2074 -0.366558,-0.21221 -0.578776,-0.61253 z m 2.604492,-2.01607 q 0,-1.03215 -0.327973,-1.55788 -0.32315,-0.52572 -0.964627,-0.52572 -0.6463,0 -0.979096,0.53055 -0.332796,0.52572 -0.332796,1.55305 0,1.0225 0.332796,1.55305 0.332796,0.53054 0.979096,0.53054 0.641477,0 0.964627,-0.52572 0.327973,-0.52572 0.327973,-1.55787 z" /> + <path + id="path38439" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 83.558363,312.85999 v -3.34726 h 0.887456 v 3.34726 q 0,0.72829 0.255626,1.07074 0.26045,0.34244 0.800641,0.34244 0.627007,0 0.959804,-0.43891 0.332796,-0.44373 0.332796,-1.26848 v -3.05305 h 0.89228 v 5.39227 h -0.89228 v -0.81029 q -0.236334,0.46785 -0.6463,0.709 -0.405143,0.24116 -0.950158,0.24116 -0.829579,0 -1.234722,-0.54019 -0.405143,-0.54502 -0.405143,-1.64469 z" /> + <path + id="path38441" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 91.526182,307.96933 v 1.53376 h 2.01607 v 0.68971 h -2.01607 v 2.93246 q 0,0.59807 0.226687,0.8344 0.226688,0.23634 0.790995,0.23634 h 0.998388 v 0.709 h -1.085205 q -0.998389,0 -1.408355,-0.40032 -0.409967,-0.40032 -0.409967,-1.37942 v -2.93246 h -1.442117 v -0.68971 h 1.442117 v -1.53376 z" /> + <path + id="path38443" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 96.228739,311.80372 h 2.512854 v 0.791 h -2.512854 z" /> + <path + id="path38445" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 103.71906,310.05293 q 0.16399,-0.34727 0.41479,-0.51126 0.25563,-0.16881 0.61254,-0.16881 0.65113,0 0.9164,0.50643 0.27009,0.50161 0.27009,1.89549 v 3.13022 h -0.81028 v -3.09163 q 0,-1.14308 -0.13023,-1.418 -0.1254,-0.27974 -0.46302,-0.27974 -0.38585,0 -0.53054,0.29903 -0.13987,0.29421 -0.13987,1.39871 v 3.09163 h -0.81029 v -3.09163 q 0,-1.15755 -0.13987,-1.42765 -0.13505,-0.27009 -0.49196,-0.27009 -0.35209,0 -0.49196,0.29903 -0.13505,0.29421 -0.13505,1.39871 v 3.09163 h -0.80546 v -5.40191 h 0.80546 v 0.46302 q 0.15916,-0.28939 0.3955,-0.43891 0.24115,-0.15434 0.54501,-0.15434 0.36656,0 0.60772,0.16881 0.24598,0.16881 0.38102,0.51126 z" /> + <path + id="path38447" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 111.76888,311.98218 v 0.43408 h -3.84404 v 0.0289 q 0,0.88263 0.4582,1.36495 0.46302,0.48231 1.30224,0.48231 0.42444,0 0.88746,-0.13505 0.46302,-0.13504 0.98874,-0.40996 v 0.88263 q -0.50643,0.20739 -0.97909,0.30868 -0.46785,0.10611 -0.90675,0.10611 -1.25884,0 -1.96784,-0.75241 -0.709,-0.75723 -0.709,-2.08359 0,-1.2926 0.69453,-2.06431 0.69453,-0.7717 1.85208,-0.7717 1.03215,0 1.6254,0.69936 0.59807,0.69935 0.59807,1.90996 z m -0.88746,-0.26045 q -0.0193,-0.78135 -0.37138,-1.18649 -0.34727,-0.40997 -1.00321,-0.40997 -0.64148,0 -1.05627,0.42444 -0.41479,0.42443 -0.49196,1.17684 z" /> + <path + id="path38449" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 115.31388,307.96933 v 1.53376 h 2.01607 v 0.68971 h -2.01607 v 2.93246 q 0,0.59807 0.22669,0.8344 0.22669,0.23634 0.79099,0.23634 h 0.99839 v 0.709 h -1.0852 q -0.99839,0 -1.40836,-0.40032 -0.40996,-0.40032 -0.40996,-1.37942 v -2.93246 h -1.44212 v -0.68971 h 1.44212 v -1.53376 z" /> + <path + id="path38451" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 123.36852,311.55774 v 3.34726 h -0.89228 v -3.34726 q 0,-0.72829 -0.25563,-1.07073 -0.25562,-0.34245 -0.80064,-0.34245 -0.62218,0 -0.9598,0.44373 -0.3328,0.43891 -0.3328,1.26366 v 3.05305 h -0.88745 v -7.5048 h 0.88745 v 2.91317 q 0.23634,-0.46302 0.64148,-0.69935 0.40514,-0.24116 0.9598,-0.24116 0.82476,0 1.2299,0.54502 0.40997,0.54019 0.40997,1.63986 z" /> + <path + id="path38453" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 127.21738,310.12527 q -0.67524,0 -1.0225,0.52572 -0.34727,0.52573 -0.34727,1.55788 0,1.02732 0.34727,1.55787 0.34726,0.52572 1.0225,0.52572 0.68006,0 1.02733,-0.52572 0.34726,-0.53055 0.34726,-1.55787 0,-1.03215 -0.34726,-1.55788 -0.34727,-0.52572 -1.02733,-0.52572 z m 0,-0.75241 q 1.12379,0 1.71704,0.7283 0.59807,0.72829 0.59807,2.10771 0,1.38424 -0.59325,2.11253 -0.59325,0.72347 -1.72186,0.72347 -1.12379,0 -1.71703,-0.72347 -0.59325,-0.72829 -0.59325,-2.11253 0,-1.37942 0.59325,-2.10771 0.59324,-0.7283 1.71703,-0.7283 z" /> + <path + id="path38455" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 134.3315,310.1928 v -2.7926 h 0.88746 v 7.5048 h -0.88746 v -0.68006 q -0.22186,0.40032 -0.59324,0.61253 -0.36656,0.2074 -0.84888,0.2074 -0.97909,0 -1.5434,-0.75723 -0.55948,-0.76206 -0.55948,-2.09807 0,-1.31671 0.5643,-2.0643 0.56431,-0.75241 1.53858,-0.75241 0.48714,0 0.85852,0.21222 0.37138,0.2074 0.5836,0.60772 z m -2.60931,2.01607 q 0,1.03215 0.32797,1.55787 0.32797,0.52572 0.96945,0.52572 0.64148,0 0.97427,-0.53054 0.33762,-0.53055 0.33762,-1.55305 0,-1.02733 -0.33762,-1.55305 -0.33279,-0.53055 -0.97427,-0.53055 -0.64148,0 -0.96945,0.52572 -0.32797,0.52573 -0.32797,1.55788 z" /> + </g> + <g + transform="matrix(0.1224467,0,0,0.1224467,113.68586,227.23716)" + style="display:inline;opacity:0.94" + id="g5133-8-3"> + <circle + r="122.85714" + cy="465.21933" + cx="341.42856" + id="path2985-6-6" + style="fill:#ffbc00;fill-opacity:1;stroke:none" /> + <g + id="text2987-04-8" + style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:437.474px;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none" + transform="scale(0.9155896,1.0921924)"> + <path + sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" + inkscape:connector-curvature="0" + id="path2986-8-0" + d="m 443.91049,314.59549 h 2.34971 l -1.49527,1.49528 h -0.85444 v -1.49528 m -173.02434,3.63138 v 1.70888 l -5.55387,6.83553 h -0.85444 l -0.85444,-5.34026 c 3.27538,-2.13591 5.69629,-3.20396 7.26275,-3.20415 m 202.50256,2.34971 c 4.84164,1.9e-4 7.54736,3.06194 8.11719,9.18524 l -4.0586,28.83739 h 1.49528 l 3.20415,-2.1361 h 0.85444 v 0.64083 c -4.41481,2.70589 -8.68701,10.11103 -12.81662,22.21547 -1.56666,10.39583 -4.20118,20.00828 -7.90358,28.83739 -3.27553,9.11414 -4.91321,17.51613 -4.91303,25.20602 l -6.1947,15.16633 c -1.7e-4,1.28172 2.34954,2.56338 7.04914,3.84498 -0.85462,2.9906 -2.13628,4.48587 -3.84499,4.48582 v 0.85444 h 1.49527 v 0.64083 c -1.7e-4,1.56653 -2.42108,2.34977 -7.26275,2.34971 l 0.85444,0.85444 v 2.99055 h -1.49527 c 0.99668,2.99059 3.13279,4.48586 6.40831,4.48581 v 1.49528 h -6.40831 v 0.85444 c 2.13594,4e-5 3.20399,1.2817 3.20416,3.84498 l -8.97163,2.99055 0.85444,0.85444 v 0.64083 c -1.6e-4,0.99688 -1.06821,1.4953 -3.20416,1.49527 v 0.85444 c 2.70557,3e-5 4.05844,0.49846 4.0586,1.49527 -3.84515,1.28169 -8.90058,7.61879 -15.16633,19.01132 -6.40845,10.11089 -11.96231,15.16633 -16.66161,15.16633 h -1.70888 c -3.56029,-2.27851 -6.47963,-9.82607 -8.75802,-22.64269 -9.11415,-19.5097 -13.67116,-30.97344 -13.67106,-34.39126 -1e-4,-8.82916 -2.91944,-18.228 -8.75802,-28.19656 -1.56657,-4.41452 -2.63462,-9.96839 -3.20416,-16.6616 l -3.84498,-0.85444 c -9.68375,14.66799 -14.73919,26.13173 -15.16633,34.39126 -2.7058,4.84189 -4.8419,10.68057 -6.40831,17.51604 5.83861,1.56652 8.75795,3.06179 8.75802,4.48582 v 0.85444 c -4.55709,-0.56959 -7.76124,-1.63764 -9.61246,-3.20416 -1.99376,3.84503 -4.62829,14.52553 -7.90358,32.04155 -2.56338,8.11719 -5.76753,12.17578 -9.61247,12.17578 -10.82295,-3.56016 -19.86578,-9.39884 -27.1285,-17.51604 -1.13928,2e-5 -2.99057,-4.05857 -5.55387,-12.17579 -1.56649,3e-5 -2.63454,-4.05856 -3.20415,-12.17578 -5.41147,-11.5349 -9.11405,-24.70753 -11.10774,-39.51791 v -22.21547 h -0.85444 l -3.84499,0.85444 v -0.85444 c 1e-5,-0.99674 1.28167,-1.49516 3.84499,-1.49527 l -0.85444,-12.81662 V 385.3005 l -6.1947,-32.04154 V 339.5879 c 2.70573,-8.54423 7.40515,-12.81643 14.09828,-12.81662 h 44.85816 v 1.49527 c -3.56022,0.14259 -5.98114,0.92583 -7.26275,2.34972 -2.70577,-1.5663 -5.3403,-2.34953 -7.90358,-2.34972 h -8.75802 l -4.91304,0.64083 -0.85444,-0.64083 h -0.64083 l -6.40831,0.64083 -3.20415,-0.64083 -2.34972,0.64083 -2.56332,-0.64083 c 10.39568,11.39272 16.51917,21.00518 18.37048,28.83739 h 7.26275 v 1.49527 h -5.55386 v 1.70889 c 2.13607,6.55086 3.70254,9.82621 4.69942,9.82607 h 1.70889 l 3.84498,-0.85444 0.85444,0.85444 0.85444,-0.85444 0.85444,0.85444 v 0.64083 c -2.84817,1.70902 -4.77066,4.05873 -5.76747,7.04914 h -0.64083 v 1.49527 h 1.49527 c 1.99366,23.78206 5.69623,41.79651 11.10773,54.04341 l 3.20416,2.1361 h 1.70888 c 2.13605,8e-5 6.62186,-8.33072 13.45745,-24.99241 4.41454,-7.54745 7.61869,-14.16936 9.61246,-19.86575 l -0.85444,-2.34972 c 4.41453,-5.55373 8.97155,-8.33066 13.67106,-8.3308 h 1.49527 c 2.99045,1.4e-4 5.12655,1.56661 6.40831,4.69943 3.98729,4.69955 7.19144,11.74868 9.61246,21.14742 l 11.96218,22.21547 c 1.56635,1.56656 2.34959,3.34664 2.34971,5.34026 4.41449,8.40207 8.40188,13.95593 11.96218,16.6616 h 2.56332 c 2.99041,6e-5 6.9778,-10.39563 11.96218,-31.1871 0.85429,9e-5 3.204,-5.55377 7.04914,-16.66161 v -0.85444 l -13.45745,-1.49527 -3.20416,0.85444 h -4.05859 v -1.70888 l 8.11719,-0.64083 h 15.80716 c 6.12333,-18.37035 11.7484,-32.61103 16.87521,-42.72206 1.70871,-20.79122 4.05842,-31.18691 7.04914,-31.1871 l 9.61247,-3.84499 m -45.49899,2.34971 c -0.85459,1.99389 -2.70588,2.99074 -5.55387,2.99055 v -1.49527 l 5.55387,-1.49528 m -80.53108,3.84499 h 21.57464 v 1.49527 l -4.91304,0.64083 -4.69943,-0.64083 -4.05859,1.49527 -1.49528,-1.49527 h -6.4083 v -1.49527 m -112.35902,2.99054 h 2.34972 l 1.49527,1.49528 v 0.85444 l -4.69943,4.48581 v 3.84499 h -1.70888 v -2.34971 l 0.85444,-0.64084 v -0.85444 l -4.0586,-3.84498 c 0.99691,-1.99352 2.9194,-2.99036 5.76748,-2.99055 m 157.00357,9.18525 h 2.34971 v 0.64083 c -1.1e-4,0.99702 -0.78335,1.49544 -2.34971,1.49527 l -0.85444,0.85444 v 0.85444 l -2.34972,-0.85444 v -1.49527 l 3.20416,-1.49527 m -11.96218,8.3308 v 0.85444 c -1e-4,1.13942 -3.41786,2.34988 -10.25329,3.63137 v -1.49527 l 4.69942,-2.1361 0.85444,0.64083 h 0.64083 l 4.0586,-1.49527 m -139.48752,7.68997 v 0.64083 l -1.70888,1.49527 -0.64083,-0.64083 v -0.85444 l 0.64083,-0.64083 h 1.70888 m 116.41761,0 v 0.64083 c -2.99062,2.27866 -7.83244,4.34356 -14.5255,6.1947 v -1.49527 c 1.13919,1.5e-4 1.70882,-0.78309 1.70888,-2.34972 l 12.81662,-2.99054 m 40.58595,7.47636 0.85445,0.85444 v 0.64083 l -1.49528,1.70888 h -0.85444 l -1.70888,-1.70888 v -0.64083 l 3.20415,-0.85444 m 29.47822,0.85444 h 0.85445 v 0.64083 l -1.49528,1.70888 H 425.54 v -0.85444 l 1.49527,-1.49527 m -13.45744,10.68051 3.20415,2.13611 c -0.56976,1.56661 -2.13623,2.34985 -4.69943,2.34971 l -1.70888,-2.34971 c -1.3e-4,-0.7119 1.06792,-1.42393 3.20416,-2.13611 m 19.22492,9.82608 0.64083,0.85444 v 0.64083 l -0.64083,0.85444 h -1.70888 v -0.85444 l 1.70888,-1.49527 m -30.33266,7.68997 v 0.64083 l -4.05859,3.20415 h -2.34972 v -0.85444 c -1.1e-4,-1.28154 2.13599,-2.27839 6.40831,-2.99054 m -132.43838,29.69183 h 0.85444 v 0.64083 c -2.13609,4.69951 -3.98737,7.54765 -5.55387,8.54441 h -1.70888 v -3.20415 l 6.40831,-5.98109 m 104.45543,35.67292 h 0.85444 v 1.49527 l -6.4083,3.20415 -0.85445,-0.85444 v -1.49527 l 6.40831,-2.34971 m -87.79383,10.03968 h 1.49527 l 2.56333,8.3308 h -1.70888 l -2.34972,-7.68997 v -0.64083 m 85.44412,9.82607 h 0.64083 l 2.56332,2.34972 -0.85444,0.64083 h -0.85444 l -1.49527,-2.1361 v -0.85445" /> + </g> + </g> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:41.1385px;line-height:125%;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;letter-spacing:0px;word-spacing:0px;display:inline;opacity:0.995;fill:none;stroke:#000000;stroke-width:1.37129px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text1452-5-2-8-0-1" + transform="scale(0.90149947,1.109263)" + aria-label="P +"> + <path + id="path38430" + style="stroke-width:1.37129px" + d="m 55.292388,245.92219 v 11.14837 h 2.892551 q 1.506536,0 2.631417,-1.20523 1.144968,-1.20523 1.144968,-4.35891 0,-3.1336 -1.144968,-4.35891 -1.144968,-1.22532 -2.631417,-1.22532 z m 4.640133,13.94049 -4.640133,0.0603 v 5.90562 q 0,1.24541 -0.883835,2.10916 -0.883835,0.86374 -2.04889,0.82357 h -0.08035 q -1.245404,0.0402 -2.04889,-0.84366 -0.883835,-0.80349 -0.883835,-2.08907 v -19.24349 q 0,-1.16506 0.883835,-2.04889 0.883835,-0.88384 2.129239,-0.88384 h 6.930069 q 0.723138,0 1.265491,0.10044 2.932725,0.44192 4.901267,2.73185 1.968541,2.28994 1.968541,5.02179 0,2.71177 -1.546711,5.12223 -2.068977,3.19385 -5.945799,3.23403 z" /> + </g> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:41.1385px;line-height:125%;font-family:Dyuthi;-inkscape-font-specification:Dyuthi;letter-spacing:0px;word-spacing:0px;display:inline;opacity:0.995;fill:none;stroke:#000000;stroke-width:1.37129px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text1452-5-2-8" + transform="scale(0.90149947,1.109263)" + aria-label="A +"> + <path + id="path38479" + style="fill:none;stroke:#000000;stroke-width:1.37129px" + d="m 284.12238,257.94526 h 6.52833 l -3.25412,-9.01913 z m 7.89425,-10.96759 q 0,0 6.40781,17.75705 0.52226,1.44628 -0.38166,2.69168 -0.90392,1.26549 -2.41046,1.26549 h -0.44191 q -0.96419,0 -1.78776,-0.60261 -0.82358,-0.58253 -0.98427,-1.46637 l -1.04453,-4.98161 h -7.61304 l -0.96418,4.92135 q -0.18079,0.96419 -1.02445,1.54671 -0.86374,0.58253 -2.00871,0.58253 h -0.44192 q -1.50654,0 -2.39037,-1.26549 -0.88384,-1.2454 -0.40174,-2.69168 l 6.0864,-17.6767 q 0.52227,-1.52662 1.80785,-2.43055 1.28558,-0.90392 2.61133,-0.90392 h 0.56244 q 1.30566,0 2.59124,0.90392 1.30567,0.90393 1.82793,2.3502 z" /> + </g> + <path + d="m 154.91493,342.4639 a 56.491051,56.491051 0 0 0 52.06753,-33.92239 56.491051,56.491051 0 0 0 -10.60091,-61.23215" + style="color:#000000;overflow:visible;fill:none;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" + id="path33498" /> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text30963-5-7" + aria-label="text-input"> + <path + id="path38458" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 183.28588,307.96934 v 1.53375 h 2.01607 v 0.68971 h -2.01607 v 2.93246 q 0,0.59807 0.22669,0.83441 0.22668,0.23633 0.79099,0.23633 h 0.99839 v 0.709 h -1.08521 q -0.99838,0 -1.40835,-0.40032 -0.40997,-0.40032 -0.40997,-1.37942 v -2.93246 h -1.44211 v -0.68971 h 1.44211 v -1.53375 z" /> + <path + id="path38460" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 191.63472,311.98218 v 0.43408 h -3.84404 v 0.0289 q 0,0.88264 0.4582,1.36495 0.46302,0.48231 1.30225,0.48231 0.42443,0 0.88745,-0.13505 0.46302,-0.13504 0.98874,-0.40996 v 0.88263 q -0.50643,0.20739 -0.97909,0.30868 -0.46785,0.10611 -0.90675,0.10611 -1.25884,0 -1.96784,-0.75241 -0.709,-0.75723 -0.709,-2.08359 0,-1.2926 0.69453,-2.0643 0.69453,-0.7717 1.85209,-0.7717 1.03215,0 1.62539,0.69935 0.59807,0.69936 0.59807,1.90996 z m -0.88746,-0.26045 q -0.0193,-0.78134 -0.37138,-1.18649 -0.34726,-0.40996 -1.00321,-0.40996 -0.64148,0 -1.05627,0.42443 -0.41478,0.42444 -0.49195,1.17685 z" /> + <path + id="path38462" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 197.61058,309.50309 -1.93408,2.5852 2.12218,2.81671 h -1.02733 l -1.58198,-2.16559 -1.57717,2.16559 h -1.02733 l 2.12218,-2.81671 -1.93407,-2.5852 h 0.98392 l 1.43247,1.95337 1.42282,-1.95337 z" /> + <path + id="path38464" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 201.12664,307.96934 v 1.53375 h 2.01607 v 0.68971 h -2.01607 v 2.93246 q 0,0.59807 0.22669,0.83441 0.22668,0.23633 0.79099,0.23633 h 0.99839 v 0.709 h -1.08521 q -0.99838,0 -1.40835,-0.40032 -0.40997,-0.40032 -0.40997,-1.37942 v -2.93246 h -1.44211 v -0.68971 h 1.44211 v -1.53375 z" /> + <path + id="path38466" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 205.82919,311.80373 h 2.51285 v 0.79099 h -2.51285 z" /> + <path + id="path38468" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 211.2938,309.50309 h 2.27169 v 4.7122 h 1.76044 v 0.68971 h -4.40834 v -0.68971 h 1.76044 v -4.02249 h -1.38423 z m 1.38423,-2.10288 h 0.88746 v 1.12379 h -0.88746 z" /> + <path + id="path38470" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 221.07511,311.55775 v 3.34725 h -0.89228 v -3.34725 q 0,-0.7283 -0.25563,-1.07074 -0.25562,-0.34244 -0.80064,-0.34244 -0.62218,0 -0.9598,0.44373 -0.3328,0.4389 -0.3328,1.26366 v 3.05304 h -0.88745 v -5.40191 h 0.88745 v 0.81029 q 0.23634,-0.46302 0.64148,-0.69935 0.40514,-0.24116 0.9598,-0.24116 0.82476,0 1.2299,0.54501 0.40997,0.54019 0.40997,1.63987 z" /> + <path + id="path38472" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 223.76159,314.22494 v 2.73471 h -0.89228 v -7.45656 h 0.89228 v 0.68971 q 0.22186,-0.40032 0.58842,-0.60771 0.37138,-0.21222 0.85369,-0.21222 0.9791,0 1.53376,0.75723 0.55948,0.75723 0.55948,2.09806 0,1.31672 -0.55948,2.06912 -0.55948,0.74759 -1.53376,0.74759 -0.49195,0 -0.86334,-0.2074 -0.36655,-0.21221 -0.57877,-0.61253 z m 2.60449,-2.01607 q 0,-1.03215 -0.32797,-1.55787 -0.32315,-0.52572 -0.96463,-0.52572 -0.6463,0 -0.9791,0.53054 -0.33279,0.52572 -0.33279,1.55305 0,1.0225 0.33279,1.55305 0.3328,0.53054 0.9791,0.53054 0.64148,0 0.96463,-0.52572 0.32797,-0.52572 0.32797,-1.55787 z" /> + <path + id="path38474" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 228.84034,312.85999 v -3.34725 h 0.88746 v 3.34725 q 0,0.72829 0.25563,1.07074 0.26044,0.34244 0.80064,0.34244 0.627,0 0.9598,-0.43891 0.33279,-0.44372 0.33279,-1.26848 v -3.05304 h 0.89228 v 5.39226 h -0.89228 v -0.81029 q -0.23633,0.46785 -0.6463,0.709 -0.40514,0.24116 -0.95015,0.24116 -0.82958,0 -1.23472,-0.54019 -0.40515,-0.54501 -0.40515,-1.64469 z" /> + <path + id="path38476" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583px" + d="m 236.80815,307.96934 v 1.53375 h 2.01607 v 0.68971 h -2.01607 v 2.93246 q 0,0.59807 0.22669,0.83441 0.22669,0.23633 0.79099,0.23633 h 0.99839 v 0.709 h -1.0852 q -0.99839,0 -1.40836,-0.40032 -0.40996,-0.40032 -0.40996,-1.37942 v -2.93246 h -1.44212 v -0.68971 h 1.44212 v -1.53375 z" /> + </g> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';letter-spacing:0px;word-spacing:0px;fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text30963-5-1" + aria-label="virtual-keyboard"> + <path + id="path38397" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 53.553686,252.84361 h 0.921218 l 1.567517,4.53374 1.572341,-4.53374 h 0.921217 l -1.919605,5.4019 h -1.143082 z" /> + <path + id="path38399" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 60.253014,252.84361 h 2.271694 v 4.7122 h 1.760442 v 0.6897 h -4.40834 v -0.6897 h 1.760442 v -4.02249 h -1.384238 z m 1.384238,-2.10289 h 0.887456 v 1.12379 h -0.887456 z" /> + <path + id="path38401" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 70.535927,253.95775 q -0.284565,-0.22186 -0.578775,-0.32315 -0.294211,-0.10128 -0.6463,-0.10128 -0.829578,0 -1.268483,0.52089 -0.438905,0.5209 -0.438905,1.50482 v 2.68648 h -0.892279 v -5.4019 h 0.892279 v 1.05626 q 0.221864,-0.57395 0.680061,-0.87781 0.463021,-0.30868 1.094851,-0.30868 0.327973,0 0.612537,0.082 0.284565,0.082 0.545014,0.25562 z" /> + <path + id="path38403" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 73.873534,251.30985 v 1.53376 h 2.016069 v 0.68971 h -2.016069 v 2.93246 q 0,0.59807 0.226687,0.8344 0.226687,0.23633 0.790994,0.23633 h 0.998388 v 0.709 h -1.085205 q -0.998388,0 -1.408354,-0.40032 -0.409966,-0.40032 -0.409966,-1.37941 v -2.93246 h -1.442116 v -0.68971 h 1.442116 v -1.53376 z" /> + <path + id="path38405" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 77.799561,256.20051 v -3.34726 h 0.887456 v 3.34726 q 0,0.72829 0.255626,1.07073 0.260449,0.34244 0.80064,0.34244 0.627006,0 0.959802,-0.4389 0.332796,-0.44373 0.332796,-1.26848 v -3.05305 h 0.892279 v 5.39226 h -0.892279 v -0.81028 q -0.236333,0.46784 -0.646299,0.709 -0.405143,0.24115 -0.950157,0.24115 -0.829578,0 -1.234721,-0.54019 -0.405143,-0.54501 -0.405143,-1.64468 z" /> + <path + id="path38407" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 86.191807,255.53009 h -0.294211 q -0.776524,0 -1.172021,0.27492 -0.390674,0.2701 -0.390674,0.81029 0,0.48713 0.294211,0.75723 0.294211,0.27009 0.815109,0.27009 0.733116,0 1.152728,-0.50643 0.419613,-0.51125 0.424436,-1.40835 v -0.19775 z m 1.721857,-0.36656 v 3.08198 h -0.892279 v -0.80064 q -0.284565,0.48232 -0.718646,0.71383 -0.429259,0.22668 -1.04662,0.22668 -0.824755,0 -1.316714,-0.46302 -0.491959,-0.46784 -0.491959,-1.24919 0,-0.90192 0.602891,-1.36977 0.607714,-0.46784 1.779735,-0.46784 h 1.191313 v -0.13987 q -0.0048,-0.6463 -0.327973,-0.93569 -0.32315,-0.29421 -1.03215,-0.29421 -0.453374,0 -0.916394,0.13023 -0.463021,0.13022 -0.901926,0.38102 v -0.88745 q 0.491959,-0.1881 0.940511,-0.27974 0.453374,-0.0965 0.877809,-0.0965 0.670415,0 1.143082,0.19775 0.47749,0.19775 0.771701,0.59325 0.183279,0.24115 0.260449,0.59807 0.07717,0.35208 0.07717,1.06108 z" /> + <path + id="path38409" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 91.834872,256.28732 q 0,0.59807 0.217041,0.90193 0.221864,0.30386 0.651122,0.30386 h 1.036973 v 0.7524 h -1.123789 q -0.795817,0 -1.234722,-0.51125 -0.434081,-0.51125 -0.434081,-1.44694 v -4.90512 h -1.422824 v -0.69453 h 2.31028 z" /> + <path + id="path38411" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 96.416844,255.14424 h 2.512851 v 0.79099 h -2.512851 z" /> + <path + id="path38413" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 101.78499,250.74072 h 0.91639 v 4.34564 l 2.32957,-2.24275 h 1.08038 l -2.127,2.03536 2.4598,3.36654 h -1.0852 l -1.99678,-2.78777 -0.66077,0.62219 v 2.16558 h -0.91639 z" /> + <path + id="path38415" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 111.95697,255.3227 v 0.43408 h -3.84404 v 0.0289 q 0,0.88263 0.4582,1.36494 0.46302,0.48232 1.30225,0.48232 0.42443,0 0.88745,-0.13505 0.46302,-0.13505 0.98874,-0.40997 v 0.88264 q -0.50643,0.20739 -0.97909,0.30868 -0.46785,0.1061 -0.90675,0.1061 -1.25884,0 -1.96784,-0.7524 -0.709,-0.75724 -0.709,-2.0836 0,-1.29259 0.69453,-2.0643 0.69453,-0.7717 1.85208,-0.7717 1.03215,0 1.6254,0.69936 0.59807,0.69935 0.59807,1.90996 z m -0.88746,-0.26045 q -0.0193,-0.78135 -0.37138,-1.18649 -0.34726,-0.40997 -1.00321,-0.40997 -0.64148,0 -1.05627,0.42444 -0.41479,0.42443 -0.49196,1.17684 z" /> + <path + id="path38417" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 116.67881,256.50919 q -0.22186,0.5643 -0.56431,1.48552 -0.47748,1.27331 -0.64147,1.55305 -0.22187,0.3762 -0.55466,0.56431 -0.3328,0.1881 -0.77653,0.1881 h -0.71382 v -0.74276 h 0.52572 q 0.39068,0 0.61254,-0.22669 0.22186,-0.22669 0.56431,-1.17202 l -2.08842,-5.31509 h 0.94051 l 1.60128,4.22506 1.57716,-4.22506 h 0.94051 z" /> + <path + id="path38419" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 122.91512,255.54938 q 0,-1.03215 -0.32797,-1.55787 -0.32797,-0.52572 -0.96945,-0.52572 -0.6463,0 -0.9791,0.53055 -0.33279,0.52572 -0.33279,1.55304 0,1.02251 0.33279,1.55305 0.3328,0.53055 0.9791,0.53055 0.64148,0 0.96945,-0.52572 0.32797,-0.52573 0.32797,-1.55788 z m -2.60931,-2.01606 q 0.21222,-0.3955 0.5836,-0.60772 0.3762,-0.21222 0.86816,-0.21222 0.97427,0 1.53376,0.75241 0.55948,0.74759 0.55948,2.0643 0,1.33601 -0.56431,2.09806 -0.55948,0.75723 -1.53858,0.75723 -0.48231,0 -0.85369,-0.20739 -0.36656,-0.21222 -0.58842,-0.61254 v 0.68006 h -0.88746 v -7.50479 h 0.88746 z" /> + <path + id="path38421" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 127.40546,253.46579 q -0.67524,0 -1.02251,0.52572 -0.34726,0.52572 -0.34726,1.55787 0,1.02733 0.34726,1.55788 0.34727,0.52572 1.02251,0.52572 0.68006,0 1.02732,-0.52572 0.34727,-0.53055 0.34727,-1.55788 0,-1.03215 -0.34727,-1.55787 -0.34726,-0.52572 -1.02732,-0.52572 z m 0,-0.75241 q 1.12379,0 1.71703,0.7283 0.59807,0.72829 0.59807,2.1077 0,1.38424 -0.59324,2.11254 -0.59325,0.72346 -1.72186,0.72346 -1.12379,0 -1.71704,-0.72346 -0.59324,-0.7283 -0.59324,-2.11254 0,-1.37941 0.59324,-2.1077 0.59325,-0.7283 1.71704,-0.7283 z" /> + <path + id="path38423" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 133.76716,255.53009 h -0.29421 q -0.77652,0 -1.17202,0.27492 -0.39067,0.2701 -0.39067,0.81029 0,0.48713 0.29421,0.75723 0.29421,0.27009 0.81511,0.27009 0.73311,0 1.15273,-0.50643 0.41961,-0.51125 0.42443,-1.40835 v -0.19775 z m 1.72186,-0.36656 v 3.08198 h -0.89228 v -0.80064 q -0.28456,0.48232 -0.71865,0.71383 -0.42925,0.22668 -1.04662,0.22668 -0.82475,0 -1.31671,-0.46302 -0.49196,-0.46784 -0.49196,-1.24919 0,-0.90192 0.60289,-1.36977 0.60772,-0.46784 1.77974,-0.46784 h 1.19131 v -0.13987 q -0.005,-0.6463 -0.32797,-0.93569 -0.32315,-0.29421 -1.03215,-0.29421 -0.45338,0 -0.9164,0.13023 -0.46302,0.13022 -0.90192,0.38102 v -0.88745 q 0.49196,-0.1881 0.94051,-0.27974 0.45337,-0.0965 0.87781,-0.0965 0.67041,0 1.14308,0.19775 0.47749,0.19775 0.7717,0.59325 0.18328,0.24115 0.26045,0.59807 0.0772,0.35208 0.0772,1.06108 z" /> + <path + id="path38425" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 141.89896,253.95775 q -0.28456,-0.22186 -0.57877,-0.32315 -0.29421,-0.10128 -0.6463,-0.10128 -0.82958,0 -1.26849,0.52089 -0.4389,0.5209 -0.4389,1.50482 v 2.68648 h -0.89228 v -5.4019 h 0.89228 v 1.05626 q 0.22186,-0.57395 0.68006,-0.87781 0.46302,-0.30868 1.09485,-0.30868 0.32797,0 0.61254,0.082 0.28456,0.082 0.54501,0.25562 z" /> + <path + id="path38427" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 146.41341,253.53332 v -2.7926 h 0.88745 v 7.50479 h -0.88745 v -0.68006 q -0.22187,0.40032 -0.59325,0.61254 -0.36656,0.20739 -0.84887,0.20739 -0.97909,0 -1.5434,-0.75723 -0.55948,-0.76205 -0.55948,-2.09806 0,-1.31671 0.5643,-2.0643 0.56431,-0.75241 1.53858,-0.75241 0.48714,0 0.85852,0.21222 0.37138,0.2074 0.5836,0.60772 z m -2.60932,2.01606 q 0,1.03215 0.32798,1.55788 0.32797,0.52572 0.96945,0.52572 0.64147,0 0.97427,-0.53055 0.33762,-0.53054 0.33762,-1.55305 0,-1.02732 -0.33762,-1.55304 -0.3328,-0.53055 -0.97427,-0.53055 -0.64148,0 -0.96945,0.52572 -0.32798,0.52572 -0.32798,1.55787 z" /> + </g> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;line-height:125%;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';letter-spacing:0px;word-spacing:0px;fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="text30963-5-7-4" + aria-label="wl_keyboard"> + <path + id="path38374" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 177.24667,252.70616 h 0.87781 l 0.94051,4.36493 0.7717,-2.78777 h 0.75724 l 0.78134,2.78777 0.94051,-4.36493 h 0.87781 l -1.26366,5.4019 h -0.84887 l -0.86334,-2.9614 -0.85852,2.9614 h -0.84887 z" /> + <path + id="path38376" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 186.27557,256.14987 q 0,0.59807 0.21704,0.90193 0.22187,0.30385 0.65113,0.30385 h 1.03697 v 0.75241 h -1.12379 q -0.79582,0 -1.23472,-0.51125 -0.43408,-0.51125 -0.43408,-1.44694 v -4.90512 h -1.42283 v -0.69453 h 2.31028 z" /> + <path + id="path38378" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 195.08743,260.05178 v 0.38585 h -5.94692 v -0.38585 z" /> + <path + id="path38380" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 196.22569,250.60327 h 0.9164 v 4.34564 l 2.32957,-2.24275 h 1.08038 l -2.127,2.03536 2.4598,3.36654 h -1.08521 l -1.99677,-2.78777 -0.66077,0.62219 v 2.16558 h -0.9164 z" /> + <path + id="path38382" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 206.39767,255.18525 v 0.43408 h -3.84403 v 0.0289 q 0,0.88263 0.45819,1.36494 0.46303,0.48232 1.30225,0.48232 0.42444,0 0.88746,-0.13505 0.46302,-0.13505 0.98874,-0.40997 v 0.88263 q -0.50643,0.2074 -0.9791,0.30868 -0.46784,0.10611 -0.90675,0.10611 -1.25883,0 -1.96783,-0.7524 -0.709,-0.75724 -0.709,-2.0836 0,-1.2926 0.69453,-2.0643 0.69453,-0.7717 1.85208,-0.7717 1.03215,0 1.62539,0.69936 0.59807,0.69935 0.59807,1.90996 z m -0.88745,-0.26045 q -0.0193,-0.78135 -0.37138,-1.18649 -0.34727,-0.40997 -1.00322,-0.40997 -0.64147,0 -1.05626,0.42444 -0.41479,0.42443 -0.49196,1.17684 z" /> + <path + id="path38384" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 211.11952,256.37174 q -0.22187,0.5643 -0.56431,1.48552 -0.47749,1.27331 -0.64148,1.55305 -0.22186,0.3762 -0.55466,0.5643 -0.33279,0.18811 -0.77652,0.18811 h -0.71382 v -0.74277 h 0.52572 q 0.39067,0 0.61253,-0.22668 0.22187,-0.22669 0.56431,-1.17202 l -2.08841,-5.31509 h 0.94051 l 1.60127,4.22506 1.57717,-4.22506 h 0.94051 z" /> + <path + id="path38386" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 217.35583,255.41193 q 0,-1.03215 -0.32798,-1.55787 -0.32797,-0.52572 -0.96945,-0.52572 -0.6463,0 -0.97909,0.53055 -0.3328,0.52572 -0.3328,1.55304 0,1.02251 0.3328,1.55305 0.33279,0.53055 0.97909,0.53055 0.64148,0 0.96945,-0.52573 0.32798,-0.52572 0.32798,-1.55787 z m -2.60932,-2.01607 q 0.21222,-0.39549 0.5836,-0.60771 0.37621,-0.21222 0.86816,-0.21222 0.97428,0 1.53376,0.75241 0.55948,0.74759 0.55948,2.0643 0,1.33601 -0.5643,2.09806 -0.55949,0.75723 -1.53858,0.75723 -0.48231,0 -0.8537,-0.20739 -0.36655,-0.21222 -0.58842,-0.61254 v 0.68006 h -0.88745 v -7.50479 h 0.88745 z" /> + <path + id="path38388" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 221.84616,253.32834 q -0.67524,0 -1.0225,0.52572 -0.34727,0.52572 -0.34727,1.55787 0,1.02733 0.34727,1.55787 0.34726,0.52573 1.0225,0.52573 0.68006,0 1.02733,-0.52573 0.34726,-0.53054 0.34726,-1.55787 0,-1.03215 -0.34726,-1.55787 -0.34727,-0.52572 -1.02733,-0.52572 z m 0,-0.75241 q 1.12379,0 1.71703,0.7283 0.59807,0.72829 0.59807,2.1077 0,1.38424 -0.59324,2.11253 -0.59325,0.72347 -1.72186,0.72347 -1.12379,0 -1.71704,-0.72347 -0.59324,-0.72829 -0.59324,-2.11253 0,-1.37941 0.59324,-2.1077 0.59325,-0.7283 1.71704,-0.7283 z" /> + <path + id="path38390" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 228.20787,255.39264 h -0.29421 q -0.77653,0 -1.17203,0.27492 -0.39067,0.27009 -0.39067,0.81028 0,0.48714 0.29421,0.75724 0.29421,0.27009 0.81511,0.27009 0.73312,0 1.15273,-0.50643 0.41961,-0.51125 0.42443,-1.40835 v -0.19775 z m 1.72185,-0.36656 v 3.08198 h -0.89228 v -0.80064 q -0.28456,0.48232 -0.71864,0.71383 -0.42926,0.22668 -1.04662,0.22668 -0.82476,0 -1.31672,-0.46302 -0.49195,-0.46784 -0.49195,-1.24919 0,-0.90192 0.60289,-1.36977 0.60771,-0.46784 1.77973,-0.46784 h 1.19131 v -0.13987 q -0.005,-0.6463 -0.32797,-0.93569 -0.32315,-0.29421 -1.03215,-0.29421 -0.45337,0 -0.91639,0.13023 -0.46302,0.13022 -0.90193,0.38102 v -0.88745 q 0.49196,-0.18811 0.94051,-0.27974 0.45338,-0.0965 0.87781,-0.0965 0.67042,0 1.14308,0.19775 0.47749,0.19775 0.7717,0.59325 0.18328,0.24115 0.26045,0.59806 0.0772,0.35209 0.0772,1.06109 z" /> + <path + id="path38392" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 236.33966,253.8203 q -0.28456,-0.22186 -0.57877,-0.32315 -0.29421,-0.10129 -0.6463,-0.10129 -0.82958,0 -1.26849,0.5209 -0.4389,0.5209 -0.4389,1.50482 v 2.68648 h -0.89228 v -5.4019 h 0.89228 v 1.05626 q 0.22186,-0.57395 0.68006,-0.87781 0.46302,-0.30868 1.09485,-0.30868 0.32797,0 0.61254,0.082 0.28456,0.082 0.54501,0.25562 z" /> + <path + id="path38394" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87777px;font-family:'DejaVu Sans Mono';-inkscape-font-specification:'DejaVu Sans Mono';fill:#0000ff;fill-opacity:1;stroke:#0000ff;stroke-width:0.264583px" + d="m 240.85411,253.39586 v -2.79259 h 0.88746 v 7.50479 h -0.88746 V 257.428 q -0.22186,0.40032 -0.59324,0.61254 -0.36656,0.20739 -0.84887,0.20739 -0.9791,0 -1.54341,-0.75723 -0.55948,-0.76205 -0.55948,-2.09806 0,-1.31671 0.56431,-2.0643 0.5643,-0.75241 1.53858,-0.75241 0.48713,0 0.85851,0.21222 0.37138,0.20739 0.5836,0.60771 z m -2.60931,2.01607 q 0,1.03215 0.32797,1.55787 0.32797,0.52573 0.96945,0.52573 0.64148,0 0.97427,-0.53055 0.33762,-0.53054 0.33762,-1.55305 0,-1.02732 -0.33762,-1.55304 -0.33279,-0.53055 -0.97427,-0.53055 -0.64148,0 -0.96945,0.52572 -0.32797,0.52572 -0.32797,1.55787 z" /> + </g> + <path + sodipodi:nodetypes="cc" + style="display:inline;fill:#0000ff;fill-rule:evenodd;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow1Sstart-8);marker-end:url(#Arrow1Send-99)" + d="m 80.64677,275.34982 h 39.56101" + id="path7485-6-9" /> + <path + id="path7485-6-9-2" + d="m 80.64677,293.05364 h 39.56101" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow1Sstart-8-1);marker-end:url(#Arrow1Send-99-4)" + sodipodi:nodetypes="cc" /> + <g + id="g37503"> + <path + sodipodi:nodetypes="cc" + style="display:inline;fill:#0000ff;fill-rule:evenodd;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow1Sstart-8-0);marker-end:url(#Arrow1Send-99-1)" + d="m 189.71362,275.34982 h 39.56101" + id="path7485-6-9-9" /> + <path + id="path7485-6-9-2-9" + d="m 189.71362,293.05364 h 39.56101" + style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow1Sstart-8-1-6);marker-end:url(#Arrow1Send-99-4-5)" + sodipodi:nodetypes="cc" /> + </g> + </g> +</svg>