ReykorSlave/Block_diagram/reykor.drawio - draw.io.html

565 lines
698 KiB
HTML

<!DOCTYPE html>
<!-- saved from url=(0025)https://app.diagrams.net/ -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>reykor.drawio - draw.io</title>
<meta name="application-name" content="diagrams.net"><meta name="apple-mobile-web-app-title" content="diagrams.net">
<meta name="Description" content="draw.io is free online diagram software for making flowcharts, process diagrams, org charts, UML, ER and network diagrams">
<meta name="Keywords" content="drawio, diagram, online, flow chart, flowchart maker, uml, erd">
<meta itemprop="name" content="draw.io - free flowchart maker and diagrams online">
<meta itemprop="description" content="draw.io is a free online diagramming application and flowchart maker . You can use it to create UML, entity relationship,
org charts, BPMN and BPM, database schema and networks. Also possible are telecommunication network, workflow, flowcharts, maps overlays and GIS, electronic
circuit and social network diagrams.">
<meta itemprop="image" content="https://lh4.googleusercontent.com/-cLKEldMbT_E/Tx8qXDuw6eI/AAAAAAAAAAs/Ke0pnlk8Gpg/w500-h344-k/BPMN%2Bdiagram%2Brc2f.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="msapplication-config" content="images/browserconfig.xml">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#d89000">
<script type="text/javascript" defer="true" src="./reykor.drawio - draw.io_files/dropins.js.download" id="dropboxjs" data-app-key="jg02tc0onwmhlgm"></script><script type="text/javascript" defer="true" src="./reykor.drawio - draw.io_files/OneDrive.js.download"></script><script type="text/javascript" defer="true" src="./reykor.drawio - draw.io_files/Dropbox-sdk.min.js.download"></script><script src="./reykor.drawio - draw.io_files/cb=gapi.loaded_0" async=""></script><script type="text/javascript" defer="true" src="./reykor.drawio - draw.io_files/extensions.min.js.download"></script><script type="text/javascript" defer="true" src="./reykor.drawio - draw.io_files/stencils.min.js.download"></script><script type="text/javascript" defer="true" src="./reykor.drawio - draw.io_files/shapes-14-6-5.min.js.download"></script><script type="text/javascript" defer="true" src="./reykor.drawio - draw.io_files/api.js.download" gapi_processed="true"></script><script type="text/javascript" defer="true" src="./reykor.drawio - draw.io_files/pusher.min.js.download"></script><script type="text/javascript" defer="true" src="./reykor.drawio - draw.io_files/PostConfig.js.download"></script><script type="text/javascript" defer="true" src="./reykor.drawio - draw.io_files/app.min.js.download"></script><script type="text/javascript" defer="true" src="./reykor.drawio - draw.io_files/PreConfig.js.download"></script><script id="geBootstrap" type="text/javascript">
/**
* URL Parameters and protocol description are here:
*
* https://www.drawio.com/doc/faq/supported-url-parameters
*
* Parameters for developers:
*
* - dev=1: For developers only
* - test=1: For developers only
* - export=URL for export: For developers only
* - ignoremime=1: For developers only (see DriveClient.js). Use Cmd-S to override mime.
* - createindex=1: For developers only (see etc/build/README)
* - filesupport=0: For developers only (see Editor.js in core)
* - savesidebar=1: For developers only (see Sidebar.js)
* - pages=1: For developers only (see Pages.js)
* - lic=email: For developers only (see LicenseServlet.java)
* --
* - networkshapes=1: For testing network shapes (temporary)
*/
var urlParams = (function()
{
var result = new Object();
var params = window.location.search.slice(1).split('&');
for (var i = 0; i < params.length; i++)
{
var idx = params[i].indexOf('=');
if (idx > 0)
{
result[params[i].substring(0, idx)] = params[i].substring(idx + 1);
}
}
return result;
})();
// Forces CDN caches by passing URL parameters via URL hash
if (window.location.hash != null && window.location.hash.substring(0, 2) == '#P')
{
try
{
urlParams = JSON.parse(decodeURIComponent(window.location.hash.substring(2)));
if (urlParams.hash != null)
{
window.location.hash = urlParams.hash;
}
}
catch (e)
{
// ignore
}
}
// Global variable for desktop
var mxIsElectron = navigator.userAgent != null && navigator.userAgent.toLowerCase().indexOf(' electron/') > -1 &&
navigator.userAgent.indexOf(' draw.io/') > -1;
// Redirects page if required
if (urlParams['dev'] != '1')
{
(function()
{
var proto = window.location.protocol;
if (!mxIsElectron)
{
var host = window.location.host;
// Redirects apex, drive and rt to www
if (host === 'draw.io' || host === 'rt.draw.io' || host === 'drive.draw.io')
{
host = 'www.draw.io';
}
var href = proto + '//' + host + window.location.href.substring(
window.location.protocol.length +
window.location.host.length + 2);
// Redirects if href changes
if (href != window.location.href)
{
window.location.href = href;
}
}
})();
}
/**
* Adds meta tag to the page.
*/
function mxmeta(name, content, httpEquiv)
{
try
{
var s = document.createElement('meta');
if (name != null)
{
s.setAttribute('name', name);
}
s.setAttribute('content', content);
if (httpEquiv != null)
{
s.setAttribute('http-equiv', httpEquiv);
}
var t = document.getElementsByTagName('meta')[0];
t.parentNode.insertBefore(s, t);
}
catch (e)
{
// ignore
}
};
/**
* Synchronously adds scripts to the page.
*/
function mxscript(src, onLoad, id, dataAppKey, noWrite, onError)
{
var defer = onLoad == null && !noWrite;
if ((urlParams['dev'] != '1' && typeof document.createElement('canvas').getContext === "function") ||
onLoad != null || noWrite)
{
var s = document.createElement('script');
s.setAttribute('type', 'text/javascript');
s.setAttribute('defer', 'true');
s.setAttribute('src', src);
if (id != null)
{
s.setAttribute('id', id);
}
if (dataAppKey != null)
{
s.setAttribute('data-app-key', dataAppKey);
}
if (onLoad != null)
{
var r = false;
s.onload = s.onreadystatechange = function()
{
if (!r && (!this.readyState || this.readyState == 'complete'))
{
r = true;
onLoad();
}
};
}
if (onError != null)
{
s.onerror = function(e)
{
onError('Failed to load ' + src, e);
};
}
var t = document.getElementsByTagName('script')[0];
if (t != null)
{
t.parentNode.insertBefore(s, t);
}
}
else
{
document.write('<script src="' + src + '"' + ((id != null) ? ' id="' + id +'" ' : '') +
((dataAppKey != null) ? ' data-app-key="' + dataAppKey +'" ' : '') + '></scr' + 'ipt>');
}
};
/**
* Asynchronously adds scripts to the page.
*/
function mxinclude(src)
{
var g = document.createElement('script');
g.type = 'text/javascript';
g.async = true;
g.src = src;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(g, s);
};
/**
* Adds meta tags with application name (depends on offline URL parameter)
*/
(function()
{
var name = 'diagrams.net';
mxmeta('apple-mobile-web-app-title', name);
mxmeta('application-name', name);
if (mxIsElectron)
{
mxmeta(null, 'default-src \'self\'; script-src \'self\' \'sha256-6g514VrT/cZFZltSaKxIVNFF46+MFaTSDTPB8WfYK+c=\'; connect-src \'self\' https://*.draw.io https://*.diagrams.net https://fonts.googleapis.com https://fonts.gstatic.com; img-src * data:; media-src *; font-src *; frame-src \'none\'; style-src \'self\' \'unsafe-inline\' https://fonts.googleapis.com; base-uri \'none\';child-src \'self\';object-src \'none\';', 'Content-Security-Policy');
}
})();
// Checks for local storage
var isLocalStorage = false;
try
{
isLocalStorage = urlParams['local'] != '1' && typeof(localStorage) != 'undefined';
}
catch (e)
{
// ignored
}
var mxScriptsLoaded = false, mxWinLoaded = false;
function checkAllLoaded()
{
if (mxScriptsLoaded && mxWinLoaded)
{
App.main();
}
};
var t0 = new Date();
// Changes paths for local development environment
if (urlParams['dev'] == '1')
{
// Used to request grapheditor/mxgraph sources in dev mode
var mxDevUrl = '';
// Used to request draw.io sources in dev mode
var drawDevUrl = '';
var geBasePath = 'js/grapheditor';
var mxBasePath = 'mxgraph/src';
if (document.location.protocol == 'file:')
{
// Forces includes for dev environment in node.js
mxForceIncludes = true;
}
mxForceIncludes = false;
mxscript(drawDevUrl + 'js/PreConfig.js');
mxscript(drawDevUrl + 'js/diagramly/Init.js');
mxscript(geBasePath + '/Init.js');
mxscript(mxBasePath + '/mxClient.js');
// Adds all JS code that depends on mxClient. This indirection via Devel.js is
// required in some browsers to make sure mxClient.js (and the files that it
// loads asynchronously) are available when the code loaded in Devel.js runs.
mxscript(drawDevUrl + 'js/diagramly/Devel.js');
// Electron
if (mxIsElectron)
{
mxscript('js/diagramly/DesktopLibrary.js');
mxscript('js/diagramly/ElectronApp.js');
}
mxscript(drawDevUrl + 'js/PostConfig.js');
}
else
{
(function()
{
var hostName = window.location.hostname;
// Supported domains are *.draw.io and the packaged version in Quip
var supportedDomain = (hostName.substring(hostName.length - 8, hostName.length) === '.draw.io') ||
(hostName.substring(hostName.length - 13, hostName.length) === '.diagrams.net');
function loadAppJS()
{
mxscript('js/app.min.js', function()
{
mxScriptsLoaded = true;
checkAllLoaded();
// Electron
if (mxIsElectron)
{
mxscript('js/diagramly/DesktopLibrary.js', function()
{
mxscript('js/diagramly/ElectronApp.js', function()
{
mxscript('js/extensions.min.js', function()
{
mxscript('js/stencils.min.js', function()
{
mxscript('js/shapes-14-6-5.min.js', function()
{
mxscript('js/PostConfig.js');
});
});
});
});
});
}
else if (!supportedDomain || navigator.onLine)
{
mxscript('js/PostConfig.js');
}
});
};
if (!supportedDomain || mxIsElectron || navigator.onLine)
{
mxscript('js/PreConfig.js', loadAppJS);
}
else
{
loadAppJS();
}
})();
}
// Adds basic error handling
window.onerror = function()
{
var status = document.getElementById('geStatus');
if (status != null)
{
status.innerHTML = 'Page could not be loaded. Please try refreshing.';
}
};
</script>
<link rel="icon" href="https://app.diagrams.net/favicon.ico" sizes="any">
<link rel="apple-touch-icon" href="https://app.diagrams.net/images/apple-touch-icon.png">
<link rel="stylesheet" type="text/css" href="./reykor.drawio - draw.io_files/grapheditor.css">
<link rel="stylesheet" media="(forced-colors: active)" href="./reykor.drawio - draw.io_files/high-contrast.css" id="high-contrast-stylesheet">
<link rel="canonical" href="https://app.diagrams.net/">
<link rel="manifest" href="https://app.diagrams.net/images/manifest.json">
<link rel="shortcut icon" href="https://app.diagrams.net/favicon.ico">
<style type="text/css">
body { overflow:hidden; }
div.picker { z-index: 10007; }
.geSidebarContainer .geTitle input {
font-size:8pt;
color:#606060;
}
.geBlock {
z-index:-3;
margin:100px;
margin-top:40px;
margin-bottom:30px;
padding:20px;
text-align:center;
min-width:50%;
}
.geBlock h1, .geBlock h2 {
margin-top:0px;
padding-top:0px;
}
.geEditor *:not(.geScrollable)::-webkit-scrollbar {
width:10px;
height:10px;
}
.geEditor ::-webkit-scrollbar-track {
background-clip:padding-box;
border:solid transparent;
border-width:1px;
}
.geEditor ::-webkit-scrollbar-corner {
background-color:transparent;
}
.geEditor ::-webkit-scrollbar-thumb {
background-clip:padding-box;
border:solid transparent;
border-radius:10px;
}
.geTemplate {
border:1px solid transparent;
display:inline-block;
_display:inline;
vertical-align:top;
border-radius:3px;
overflow:hidden;
font-size:14pt;
cursor:pointer;
margin:5px;
}
</style>
<!-- Workaround for binary XHR in IE 9/10, see App.loadUrl -->
<!--[if (IE 9)|(IE 10)]><!-->
<script type="text/vbscript">
Function mxUtilsBinaryToArray(Binary)
Dim i
ReDim byteArray(LenB(Binary))
For i = 1 To LenB(Binary)
byteArray(i-1) = AscB(MidB(Binary, i, 1))
Next
mxUtilsBinaryToArray = byteArray
End Function
</script>
<!--<![endif]-->
<style type="text/css"></style><link rel="stylesheet" href="./reykor.drawio - draw.io_files/common.css" charset="UTF-8" type="text/css"><script type="text/javascript" src="./reykor.drawio - draw.io_files/startup.js.download"></script><script src="./reykor.drawio - draw.io_files/core.js.download" charset="UTF-8"></script><script src="./reykor.drawio - draw.io_files/svg.js.download" charset="UTF-8"></script><script src="./reykor.drawio - draw.io_files/tex.js.download" charset="UTF-8"></script><script src="./reykor.drawio - draw.io_files/asciimath.js.download" charset="UTF-8"></script><script src="./reykor.drawio - draw.io_files/safe.js.download" charset="UTF-8"></script><script src="./reykor.drawio - draw.io_files/tex(1).js.download" charset="UTF-8"></script><style>.picker-dialog-frame{width:100%;height:100%;border:0;overflow:hidden}.picker-dialog-bg{position:absolute;top:0;left:0;background-color:#fff;z-index:1000}.picker-dialog{position:absolute;top:0;left:0;background-color:#fff;border:1px solid #acacac;width:auto;padding:0;z-index:1001;overflow:auto;box-shadow:0 4px 16px rgba(0,0,0,.2)}.picker-dialog-content{height:100%;font-size:0;padding:0}.picker-dialog-buttons,.picker-dialog-title{display:none}</style><style type="text/css"> @-webkit-keyframes rotate {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(360deg); }
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.dropbox-dropin-btn, .dropbox-dropin-btn:link, .dropbox-dropin-btn:hover {
display: inline-block;
height: 14px;
font-family: "Lucida Grande", "Segoe UI", "Tahoma", "Helvetica Neue", "Helvetica", sans-serif;
font-size: 11px;
font-weight: 600;
color: #636363;
text-decoration: none;
padding: 1px 7px 5px 3px;
border: 1px solid #ebebeb;
border-radius: 2px;
border-bottom-color: #d4d4d4;
background: #fcfcfc;
background: -moz-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%);
background: -webkit-linear-gradient(top, #fcfcfc 0%, #f5f5f5 100%);
background: linear-gradient(to bottom, #fcfcfc 0%, #f5f5f5 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#f5f5f5',GradientType=0);
}
.dropbox-dropin-default:hover, .dropbox-dropin-error:hover {
border-color: #dedede;
border-bottom-color: #cacaca;
background: #fdfdfd;
background: -moz-linear-gradient(top, #fdfdfd 0%, #f5f5f5 100%);
background: -webkit-linear-gradient(top, #fdfdfd 0%, #f5f5f5 100%);
background: linear-gradient(to bottom, #fdfdfd 0%, #f5f5f5 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfd', endColorstr='#f5f5f5',GradientType=0);
}
.dropbox-dropin-default:active, .dropbox-dropin-error:active {
border-color: #d1d1d1;
box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
}
.dropbox-dropin-btn .dropin-btn-status {
display: inline-block;
width: 15px;
height: 14px;
vertical-align: bottom;
margin: 0 5px 0 2px;
background: transparent url('https://www.dropbox.com/static/metaserver/static/images/widgets/dbx-saver-status.png') no-repeat;
position: relative;
top: 2px;
}
.dropbox-dropin-default .dropin-btn-status {
background-position: 0px 0px;
}
.dropbox-dropin-progress .dropin-btn-status {
width: 18px;
margin: 0 4px 0 0;
background: url('https://www.dropbox.com/static/metaserver/static/images/widgets/dbx-progress.png') no-repeat center center;
-webkit-animation-name: rotate;
-webkit-animation-duration: 1.7s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
animation-name: rotate;
animation-duration: 1.7s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
.dropbox-dropin-success .dropin-btn-status {
background-position: -15px 0px;
}
.dropbox-dropin-disabled {
background: #e0e0e0;
border: 1px #dadada solid;
border-bottom: 1px solid #ccc;
box-shadow: none;
}
.dropbox-dropin-disabled .dropin-btn-status {
background-position: -30px 0px;
}
.dropbox-dropin-error .dropin-btn-status {
background-position: -45px 0px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.4) {
.dropbox-dropin-btn .dropin-btn-status {
background-image: url('https://www.dropbox.com/static/metaserver/static/images/widgets/dbx-saver-status-2x.png');
background-size: 60px 14px;
-webkit-background-size: 60px 14px;
}
.dropbox-dropin-progress .dropin-btn-status {
background: url('https://www.dropbox.com/static/metaserver/static/images/widgets/dbx-progress-2x.png') no-repeat center center;
background-size: 20px 20px;
-webkit-background-size: 20px 20px;
}
}
.dropbox-saver:hover, .dropbox-chooser:hover {
text-decoration: none;
cursor: pointer;
}
.dropbox-chooser, .dropbox-dropin-btn {
line-height: 11px !important;
text-decoration: none !important;
box-sizing: content-box !important;
-webkit-box-sizing: content-box !important;
-moz-box-sizing: content-box !important;
}
</style></head>
<body class="geEditor" style="color-scheme: light;">
<script id="geMain" type="text/javascript">
/**
* Main
*/
if (urlParams['dev'] != '1' && typeof document.createElement('canvas').getContext === "function")
{
window.addEventListener('load', function()
{
mxWinLoaded = true;
checkAllLoaded();
});
}
else
{
App.main();
}
</script>
<a class="geToolbarButton geAdaptiveAsset" title="Appearance" style="background-position: center center; background-repeat: no-repeat; background-size: 100% 100%; cursor: pointer; z-index: 1; position: absolute; height: 18px; width: 18px; right: 10px; top: 5px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHdpZHRoPSIyNCI+PHBhdGggZD0iTTEyIDE1cTEuMjUgMCAyLjEyNS0uODc1VDE1IDEycTAtMS4yNS0uODc1LTIuMTI1VDEyIDlxLTEuMjUgMC0yLjEyNS44NzVUOSAxMnEwIDEuMjUuODc1IDIuMTI1VDEyIDE1Wm0wIDJxLTIuMDc1IDAtMy41MzctMS40NjNRNyAxNC4wNzUgNyAxMnQxLjQ2My0zLjUzOFE5LjkyNSA3IDEyIDd0My41MzggMS40NjJRMTcgOS45MjUgMTcgMTJxMCAyLjA3NS0xLjQ2MiAzLjUzN1ExNC4wNzUgMTcgMTIgMTdaTTIgMTNxLS40MjUgMC0uNzEyLS4yODhRMSAxMi40MjUgMSAxMnQuMjg4LS43MTNRMS41NzUgMTEgMiAxMWgycS40MjUgMCAuNzEzLjI4N1E1IDExLjU3NSA1IDEydC0uMjg3LjcxMlE0LjQyNSAxMyA0IDEzWm0xOCAwcS0uNDI1IDAtLjcxMi0uMjg4UTE5IDEyLjQyNSAxOSAxMnQuMjg4LS43MTNRMTkuNTc1IDExIDIwIDExaDJxLjQyNSAwIC43MTIuMjg3LjI4OC4yODguMjg4LjcxM3QtLjI4OC43MTJRMjIuNDI1IDEzIDIyIDEzWm0tOC04cS0uNDI1IDAtLjcxMi0uMjg4UTExIDQuNDI1IDExIDRWMnEwLS40MjUuMjg4LS43MTNRMTEuNTc1IDEgMTIgMXQuNzEzLjI4N1ExMyAxLjU3NSAxMyAydjJxMCAuNDI1LS4yODcuNzEyUTEyLjQyNSA1IDEyIDVabTAgMThxLS40MjUgMC0uNzEyLS4yODhRMTEgMjIuNDI1IDExIDIydi0ycTAtLjQyNS4yODgtLjcxMlExMS41NzUgMTkgMTIgMTl0LjcxMy4yODhRMTMgMTkuNTc1IDEzIDIwdjJxMCAuNDI1LS4yODcuNzEyUTEyLjQyNSAyMyAxMiAyM1pNNS42NSA3LjA1IDQuNTc1IDZxLS4zLS4yNzUtLjI4OC0uNy4wMTMtLjQyNS4yODgtLjcyNS4zLS4zLjcyNS0uM3QuNy4zTDcuMDUgNS42NXEuMjc1LjMuMjc1LjcgMCAuNC0uMjc1LjctLjI3NS4zLS42ODcuMjg3LS40MTMtLjAxMi0uNzEzLS4yODdaTTE4IDE5LjQyNWwtMS4wNS0xLjA3NXEtLjI3NS0uMy0uMjc1LS43MTIgMC0uNDEzLjI3NS0uNjg4LjI3NS0uMy42ODgtLjI4Ny40MTIuMDEyLjcxMi4yODdMMTkuNDI1IDE4cS4zLjI3NS4yODguNy0uMDEzLjQyNS0uMjg4LjcyNS0uMy4zLS43MjUuM3QtLjctLjNaTTE2Ljk1IDcuMDVxLS4zLS4yNzUtLjI4Ny0uNjg4LjAxMi0uNDEyLjI4Ny0uNzEyTDE4IDQuNTc1cS4yNzUtLjMuNy0uMjg4LjQyNS4wMTMuNzI1LjI4OC4zLjMuMy43MjV0LS4zLjdMMTguMzUgNy4wNXEtLjMuMjc1LS43LjI3NS0uNCAwLS43LS4yNzVaTTQuNTc1IDE5LjQyNXEtLjMtLjMtLjMtLjcyNXQuMy0uN2wxLjA3NS0xLjA1cS4zLS4yNzUuNzEzLS4yNzUuNDEyIDAgLjY4Ny4yNzUuMy4yNzUuMjg4LjY4OC0uMDEzLjQxMi0uMjg4LjcxMkw2IDE5LjQyNXEtLjI3NS4zLS43LjI4Ny0uNDI1LS4wMTItLjcyNS0uMjg3Wk0xMiAxMloiLz48L3N2Zz4=&quot;);"></a><div class="geMenubarContainer" style="top: 0px; left: 0px; right: 0px; height: 64px;"><div class="geMenubar" style="position: absolute; padding-left: 59px; box-sizing: border-box; top: 34px;"><a class="geItem">File</a><a class="geItem">Edit</a><a class="geItem">View</a><a class="geItem">Arrange</a><a class="geItem">Extras</a><a class="geItem">Help</a><a class="geItem geStatus"><div title="All changes saved">All changes saved</div></a><div class="geButtonContainer"><button class="geBtn gePrimaryBtn" style="display: inline-flex; position: relative; align-items: center; margin-top: -12px;"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNNDAtMTYwdi0xMTJxMC0zNCAxNy41LTYyLjVUMTA0LTM3OHE2Mi0zMSAxMjYtNDYuNVQzNjAtNDQwcTY2IDAgMTMwIDE1LjVUNjE2LTM3OHEyOSAxNSA0Ni41IDQzLjVUNjgwLTI3MnYxMTJINDBabTcyMCAwdi0xMjBxMC00NC0yNC41LTg0LjVUNjY2LTQzNHE1MSA2IDk2IDIwLjV0ODQgMzUuNXEzNiAyMCA1NSA0NC41dDE5IDUzLjV2MTIwSDc2MFpNMzYwLTQ4MHEtNjYgMC0xMTMtNDd0LTQ3LTExM3EwLTY2IDQ3LTExM3QxMTMtNDdxNjYgMCAxMTMgNDd0NDcgMTEzcTAgNjYtNDcgMTEzdC0xMTMgNDdabTQwMC0xNjBxMCA2Ni00NyAxMTN0LTExMyA0N3EtMTEgMC0yOC0yLjV0LTI4LTUuNXEyNy0zMiA0MS41LTcxdDE0LjUtODFxMC00Mi0xNC41LTgxVDU0NC03OTJxMTQtNSAyOC02LjV0MjgtMS41cTY2IDAgMTEzIDQ3dDQ3IDExM1pNMTIwLTI0MGg0ODB2LTMycTAtMTEtNS41LTIwVDU4MC0zMDZxLTU0LTI3LTEwOS00MC41VDM2MC0zNjBxLTU2IDAtMTExIDEzLjVUMTQwLTMwNnEtOSA1LTE0LjUgMTR0LTUuNSAyMHYzMlptMjQwLTMyMHEzMyAwIDU2LjUtMjMuNVQ0NDAtNjQwcTAtMzMtMjMuNS01Ni41VDM2MC03MjBxLTMzIDAtNTYuNSAyMy41VDI4MC02NDBxMCAzMyAyMy41IDU2LjVUMzYwLTU2MFptMCAzMjBabTAtNDAwWiIvPjwvc3ZnPg==" align="absmiddle" style="width: 16px; height: 16px; margin-right: 4px; opacity: 0.8; filter: invert(1);">Share</button></div></div><a style="display: block; position: absolute; width: 32px; height: 36px; background-color: light-dark(rgb(240, 135, 5), transparent); margin: 8px 0px 8px 16px; opacity: 0.85; border-radius: 3px; background-position: center center; background-size: 100% 100%; background-repeat: no-repeat; background-image: url(&quot;data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIKICAgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMzA2LjE4NSAxMjAuMjk2IgogICB2aWV3Qm94PSIyNCAyNiA2OCA2OCIKICAgeT0iMHB4IgogICB4PSIwcHgiCiAgIHZlcnNpb249IjEuMSI+CiAgIAkgPGc+PGxpbmUKICAgICAgIHkyPSI3Mi4zOTQiCiAgICAgICB4Mj0iNDEuMDYxIgogICAgICAgeTE9IjQzLjM4NCIKICAgICAgIHgxPSI1OC4wNjkiCiAgICAgICBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiCiAgICAgICBzdHJva2Utd2lkdGg9IjMuNTUyOCIKICAgICAgIHN0cm9rZT0iI0ZGRkZGRiIKICAgICAgIGZpbGw9Im5vbmUiIC8+PGxpbmUKICAgICAgIHkyPSI3Mi4zOTQiCiAgICAgICB4Mj0iNzUuMDc2IgogICAgICAgeTE9IjQzLjM4NCIKICAgICAgIHgxPSI1OC4wNjgiCiAgICAgICBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiCiAgICAgICBzdHJva2Utd2lkdGg9IjMuNTAwOCIKICAgICAgIHN0cm9rZT0iI0ZGRkZGRiIKICAgICAgIGZpbGw9Im5vbmUiIC8+PGc+PHBhdGgKICAgICAgICAgZD0iTTUyLjc3Myw3Ny4wODRjMCwxLjk1NC0xLjU5OSwzLjU1My0zLjU1MywzLjU1M0gzNi45OTljLTEuOTU0LDAtMy41NTMtMS41OTktMy41NTMtMy41NTN2LTkuMzc5ICAgIGMwLTEuOTU0LDEuNTk5LTMuNTUzLDMuNTUzLTMuNTUzaDEyLjIyMmMxLjk1NCwwLDMuNTUzLDEuNTk5LDMuNTUzLDMuNTUzVjc3LjA4NHoiCiAgICAgICAgIGZpbGw9IiNGRkZGRkYiIC8+PC9nPjxnCiAgICAgICBpZD0iZzM0MTkiPjxwYXRoCiAgICAgICAgIGQ9Ik02Ny43NjIsNDguMDc0YzAsMS45NTQtMS41OTksMy41NTMtMy41NTMsMy41NTNINTEuOTg4Yy0xLjk1NCwwLTMuNTUzLTEuNTk5LTMuNTUzLTMuNTUzdi05LjM3OSAgICBjMC0xLjk1NCwxLjU5OS0zLjU1MywzLjU1My0zLjU1M0g2NC4yMWMxLjk1NCwwLDMuNTUzLDEuNTk5LDMuNTUzLDMuNTUzVjQ4LjA3NHoiCiAgICAgICAgIGZpbGw9IiNGRkZGRkYiIC8+PC9nPjxnPjxwYXRoCiAgICAgICAgIGQ9Ik04Mi43NTIsNzcuMDg0YzAsMS45NTQtMS41OTksMy41NTMtMy41NTMsMy41NTNINjYuOTc3Yy0xLjk1NCwwLTMuNTUzLTEuNTk5LTMuNTUzLTMuNTUzdi05LjM3OSAgICBjMC0xLjk1NCwxLjU5OS0zLjU1MywzLjU1My0zLjU1M2gxMi4yMjJjMS45NTQsMCwzLjU1MywxLjU5OSwzLjU1MywzLjU1M1Y3Ny4wODR6IgogICAgICAgICBmaWxsPSIjRkZGRkZGIiAvPjwvZz48L2c+PC9zdmc+&quot;); transition: 125ms linear; cursor: pointer;"></a><div style="position: absolute; right: 120px; left: 60px; top: 9px; height: 26px; display: block; overflow: hidden; text-overflow: ellipsis;"><a title="reykor.drawio - Rename" class="geItem" style="padding: 2px 8px; display: inline; font-size: 18px; white-space: nowrap;">reykor.drawio</a></div><a class="geUser geItem" style="background-image: url(&quot;images/expanded.gif&quot;); background-position: 100% 70%; background-repeat: no-repeat; position: absolute; margin: 4px; padding: 2px 16px 2px 2px; right: 26px; top: 2px; display: none;"></a></div><div style="touch-action: none; visibility: hidden; position: absolute; overflow: hidden; height: 1px; width: 1px;"><svg style="left: 0px; top: 0px; width: 100%; height: 100%; display: block; min-width: 1px; min-height: 1px;"><g><g></g><g></g><g></g><g></g></g></svg></div><div class="geSidebarContainer" style="left: 0px; z-index: 1; overflow: visible; top: 103px; width: 212px; bottom: 0px;"><div style="position: relative; overflow: hidden auto; left: 0px; top: 0px; right: 0px; box-sizing: border-box; max-height: calc(100% - 52px);"><div style="visibility: hidden; display: block;"></div><div style="display: block;"><div class="geSidebar geSearchSidebar"><div style="white-space: nowrap; text-overflow: clip; padding-bottom: 8px; cursor: default;"><input placeholder="Search Shapes" type="text"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgLTk2MCA5NjAgOTYwIiB3aWR0aD0iMjQiPjxwYXRoIGQ9Ik03ODQtMTIwIDUzMi0zNzJxLTMwIDI0LTY5IDM4dC04MyAxNHEtMTA5IDAtMTg0LjUtNzUuNVQxMjAtNTgwcTAtMTA5IDc1LjUtMTg0LjVUMzgwLTg0MHExMDkgMCAxODQuNSA3NS41VDY0MC01ODBxMCA0NC0xNCA4M3QtMzggNjlsMjUyIDI1Mi01NiA1NlpNMzgwLTQwMHE3NSAwIDEyNy41LTUyLjVUNTYwLTU4MHEwLTc1LTUyLjUtMTI3LjVUMzgwLTc2MHEtNzUgMC0xMjcuNSA1Mi41VDIwMC01ODBxMCA3NSA1Mi41IDEyNy41VDM4MC00MDBaIi8+PC9zdmc+" title="Search" class="geAdaptiveAsset" style="position: relative; cursor: pointer; opacity: 0.5; height: 16px; left: -20px; top: 4px; background: url(&quot;data:image/gif;base64,R0lGODlhMAAwAIAAAP///wAAACH5BAEAAAAALAAAAAAwADAAAAIxhI+py+0Po5y02ouz3rz7D4biSJbmiabqyrbuC8fyTNf2jef6zvf+DwwKh8Si8egpAAA7&quot;);"></div><center style="padding-top: 4px; padding-bottom: 4px;"><button style="display: none; line-height: normal; font-size: 12px; padding: 6px 12px; margin-top: 4px; margin-bottom: 8px;">More Results</button></center></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; position: relative;"><span>Scratchpad</span><div style="background-color: inherit;"><div title="Help" style="display: inline; margin-left: 8px; margin-right: 1px; cursor: help;"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNNDc4LTI0MHEyMSAwIDM1LjUtMTQuNVQ1MjgtMjkwcTAtMjEtMTQuNS0zNS41VDQ3OC0zNDBxLTIxIDAtMzUuNSAxNC41VDQyOC0yOTBxMCAyMSAxNC41IDM1LjVUNDc4LTI0MFptLTM2LTE1NGg3NHEwLTMzIDcuNS01MnQ0Mi41LTUycTI2LTI2IDQxLTQ5LjV0MTUtNTYuNXEwLTU2LTQxLTg2dC05Ny0zMHEtNTcgMC05Mi41IDMwVDM0Mi02MThsNjYgMjZxNS0xOCAyMi41LTM5dDUzLjUtMjFxMzIgMCA0OCAxNy41dDE2IDM4LjVxMCAyMC0xMiAzNy41VDUwNi01MjZxLTQ0IDM5LTU0IDU5dC0xMCA3M1ptMzggMzE0cS04MyAwLTE1Ni0zMS41VDE5Ny0xOTdxLTU0LTU0LTg1LjUtMTI3VDgwLTQ4MHEwLTgzIDMxLjUtMTU2VDE5Ny03NjNxNTQtNTQgMTI3LTg1LjVUNDgwLTg4MHE4MyAwIDE1NiAzMS41VDc2My03NjNxNTQgNTQgODUuNSAxMjdUODgwLTQ4MHEwIDgzLTMxLjUgMTU2VDc2My0xOTdxLTU0IDU0LTEyNyA4NS41VDQ4MC04MFptMC04MHExMzQgMCAyMjctOTN0OTMtMjI3cTAtMTM0LTkzLTIyN3QtMjI3LTkzcS0xMzQgMC0yMjcgOTN0LTkzIDIyN3EwIDEzNCA5MyAyMjd0MjI3IDkzWm0wLTMyMFoiLz48L3N2Zz4=" valign="middle" border="0" class="geAdaptiveAsset" style="margin-top: -2px; height: 16px; width: 16px;"></div><img class="geAdaptiveAsset" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTkgMTNoLTZ2NmgtMnYtNkg1di0yaDZWNWgydjZoNnYyeiIvPjwvc3ZnPg==" title="Add" valign="absmiddle" border="0" style="position: relative; top: 2px; width: 14px; cursor: pointer; margin: 0px 3px;"><img class="geAdaptiveAsset" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjAwLTIwMGg1N2wzOTEtMzkxLTU3LTU3LTM5MSAzOTF2NTdabS04MCA4MHYtMTcwbDUyOC01MjdxMTItMTEgMjYuNS0xN3QzMC41LTZxMTYgMCAzMSA2dDI2IDE4bDU1IDU2cTEyIDExIDE3LjUgMjZ0NS41IDMwcTAgMTYtNS41IDMwLjVUODE3LTY0N0wyOTAtMTIwSDEyMFptNjQwLTU4NC01Ni01NiA1NiA1NlptLTE0MSA4NS0yOC0yOSA1NyA1Ny0yOS0yOFoiLz48L3N2Zz4=" title="Edit" valign="absmiddle" border="0" style="position: relative; top: 2px; width: 14px; cursor: pointer; margin: 0px 3px;"><img class="geAdaptiveAsset" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMThweCIgdmlld0JveD0iMCAwIDI0IDI0IiB3aWR0aD0iMThweCIgZmlsbD0iIzAwMDAwMCI+PHBhdGggZD0iTTAgMGgyNHYyNEgwVjB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE5IDYuNDFMMTcuNTkgNSAxMiAxMC41OSA2LjQxIDUgNSA2LjQxIDEwLjU5IDEyIDUgMTcuNTkgNi40MSAxOSAxMiAxMy40MSAxNy41OSAxOSAxOSAxNy41OSAxMy40MSAxMiAxOSA2LjQxeiIvPjwvc3ZnPg==" title="Close" valign="absmiddle" border="0" style="position: relative; top: 2px; width: 14px; cursor: pointer; margin: 0px 3px;"></div></a><div><div class="geSidebar" style="touch-action: none;"><div class="geDropTarget">Drag elements here</div></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>General</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none;"><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px; opacity: 1;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.6" y="7.8" width="28.8" height="14.4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.6" y="7.8" width="28.8" height="14.4" rx="2.16" ry="2.16" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1" y="7.5" width="30" height="15" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1" y="7.5" width="30" height="15" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.5)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="200%" height="200%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 58px; height: 1px; padding-top: 30px; margin-left: 3px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Text</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.6" y="5.16" width="28.8" height="19.2" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1.6" y="5.16" width="28.8" height="19.2" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.16)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="625%" height="625%"><div style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 178px; height: 1px; padding-top: 39px; margin-left: 12px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 116px; overflow: hidden; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;"><h1 style="margin-top: 0px; pointer-events: none;">Heading</h1><p style="pointer-events: none;">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p></div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px; opacity: 1;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><ellipse cx="16" cy="15" rx="14.399999999999999" ry="9.6" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></ellipse></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="2.4" y="1.4" width="27.2" height="27.2" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><ellipse cx="16" cy="15" rx="13.600000000000001" ry="13.600000000000001" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></ellipse></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.6" y="7.8" width="28.8" height="14.4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect><path d="M 4.48 7.8 L 4.48 22.2 M 27.52 7.8 L 27.52 22.2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 4.48 7.8 L 4.48 22.2 M 27.52 7.8 L 27.52 22.2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px; opacity: 1;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 16 1.4 L 29.6 15 L 16 28.6 L 2.4 15 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px; opacity: 1;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 22.2 L 6.4 7.8 L 30.4 7.8 L 25.6 22.2 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 6.4 5.4 L 25.6 5.4 L 30.4 15 L 25.6 24.6 L 6.4 24.6 L 1.6 15 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.8 1.4 L 26.2 15 L 5.8 28.6 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.8 6.5 C 5.8 3.68 10.37 1.4 16 1.4 C 18.71 1.4 21.3 1.94 23.21 2.89 C 25.13 3.85 26.2 5.15 26.2 6.5 L 26.2 23.5 C 26.2 26.32 21.63 28.6 16 28.6 C 10.37 28.6 5.8 26.32 5.8 23.5 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 26.2 6.5 C 26.2 9.32 21.63 11.6 16 11.6 C 10.37 11.6 5.8 9.32 5.8 6.5" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 26.2 6.5 C 26.2 9.32 21.63 11.6 16 11.6 C 10.37 11.6 5.8 9.32 5.8 6.5" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 8.8 10.2 C 3.04 10.2 1.6 15 6.21 15.96 C 1.6 18.07 6.78 22.68 10.53 20.76 C 13.12 24.6 21.76 24.6 24.64 20.76 C 30.4 20.76 30.4 16.92 26.8 15 C 30.4 11.16 24.64 7.32 19.6 9.24 C 16 6.36 10.24 6.36 8.8 10.2 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 5.4 L 30.4 5.4 L 30.4 21.72 Q 23.2 16.54 16 21.72 Q 8.8 26.9 1.6 21.72 L 1.6 8.28 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="2.4" y="1.4" width="27.2" height="27.2" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect><path d="M 2.4 8.2 L 29.6 8.2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.4 8.2 L 29.6 8.2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 9.2 1.4 L 9.2 28.6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 9.2 1.4 L 9.2 28.6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 5.4 L 25.6 5.4 L 30.4 10.2 L 30.4 24.6 L 6.4 24.6 L 1.6 19.8 L 1.6 5.4 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 1.6 5.4 L 25.6 5.4 L 30.4 10.2 L 6.4 10.2 Z" fill-opacity="0.05" fill="#000000" stroke="none" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); pointer-events: none;"></path><path d="M 1.6 5.4 L 6.4 10.2 L 6.4 24.6 L 1.6 19.8 Z" fill-opacity="0.1" fill="#000000" stroke="none" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); pointer-events: none;"></path><path d="M 6.4 24.6 L 6.4 10.2 L 1.6 5.4 M 6.4 10.2 L 30.4 10.2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 6.4 24.6 L 6.4 10.2 L 1.6 5.4 M 6.4 10.2 L 30.4 10.2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 5.4 L 25.6 5.4 L 30.4 15 L 25.6 24.6 L 1.6 24.6 L 6.4 15 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 22.2 L 6.4 7.8 L 25.6 7.8 L 30.4 22.2 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 7.8 Q 8.8 16.44 16 7.8 Q 23.2 -0.84 30.4 7.8 L 30.4 22.2 Q 23.2 13.56 16 22.2 Q 8.8 30.84 1.6 22.2 L 1.6 7.8 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.2 1.5 L 18.7 1.5 L 26.8 9.6 L 26.8 28.5 L 5.2 28.5 L 5.2 1.5 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 18.7 1.5 L 18.7 9.6 L 26.8 9.6 Z" fill-opacity="0.05" fill="#000000" stroke="none" style="fill: light-dark(rgb(0, 0, 0), rgb(237, 237, 237)); pointer-events: none;"></path><path d="M 18.7 1.5 L 18.7 9.6 L 26.8 9.6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 18.7 1.5 L 18.7 9.6 L 26.8 9.6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 13.3 1.5 L 26.8 1.5 L 26.8 28.5 L 5.2 28.5 L 5.2 9.6 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 5.4 L 30.4 5.4 L 30.4 17.4 L 20.8 17.4 L 16 24.6 L 16 17.4 L 1.6 17.4 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><ellipse cx="16" cy="4.88" rx="3.375" ry="3.375" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></ellipse><path d="M 16 8.25 L 16 19.5 M 16 10.5 L 9.25 10.5 M 16 10.5 L 22.75 10.5 M 16 19.5 L 9.25 28.5 M 16 19.5 L 22.75 28.5" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 16 8.25 L 16 19.5 M 16 10.5 L 9.25 10.5 M 16 10.5 L 22.75 10.5 M 16 19.5 L 9.25 28.5 M 16 19.5 L 22.75 28.5" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.8 1.4 Q 26.2 1.4 26.2 15 Q 26.2 28.6 5.8 28.6 Q 16 15 5.8 1.4 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.8 1.4 Q 26.2 1.4 26.2 15 Q 26.2 28.6 5.8 28.6 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 7.3 3.4 L 30.5 3.4 Q 18.9 15 30.5 26.6 L 7.3 26.6 Q -4.3 15 7.3 3.4 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 3 2 L 3 2 L 29 2 L 29 2" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 3 2 L 3 28 L 29 28 L 29 2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3 2 L 3 28 L 29 28 L 29 2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 3 4.99 L 3 2 L 29 2 L 29 4.99" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 3 4.99 L 3 28 L 29 28 L 29 4.99" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3 4.99 L 3 28 L 29 28 L 29 4.99" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 3 4.99 L 29 4.99" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3 4.99 L 29 4.99" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.13)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="770%" height="770%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 27px; margin-left: 24px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">Vertical Container</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.99 2 L 3 2 L 3 28 L 5.99 28" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 5.99 2 L 29 2 L 29 28 L 5.99 28" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 5.99 2 L 29 2 L 29 28 L 5.99 28" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 5.99 2 L 5.99 28" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 5.99 2 L 5.99 28" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.13)rotate(-90 34.57692307692307 115.38461538461537)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="770%" height="770%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 198px; height: 1px; padding-top: 115px; margin-left: -64px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">Horizontal Container</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.3 8.7 L 1.3 2.4 L 30.7 2.4 L 30.7 8.7" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 1.3 8.7 L 1.3 27.6 L 30.7 27.6 L 30.7 8.7" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.3 8.7 L 1.3 27.6 L 30.7 27.6 L 30.7 8.7" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 1.3 8.7 L 30.7 8.7" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.3 8.7 L 30.7 8.7" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.21)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="477%" height="477%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 26px; margin-left: 7px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">List</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.3" y="8.7" width="29.4" height="6.3" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1.3" y="8.7" width="29.4" height="6.3" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.21)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="477%" height="477%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 130px; height: 1px; padding-top: 56px; margin-left: 12px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Item 1</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.3" y="15" width="29.4" height="6.3" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1.3" y="15" width="29.4" height="6.3" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.21)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="477%" height="477%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 130px; height: 1px; padding-top: 86px; margin-left: 12px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Item 2</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.3" y="21.3" width="29.4" height="6.3" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1.3" y="21.3" width="29.4" height="6.3" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.21)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="477%" height="477%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 130px; height: 1px; padding-top: 116px; margin-left: 12px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Item 3</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.2" y="9.45" width="29.6" height="11.1" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1.2" y="9.45" width="29.6" height="11.1" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.37)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="271%" height="271%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe flex-start; width: 70px; height: 1px; padding-top: 41px; margin-left: 9px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 26px; overflow: hidden; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">List Item</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 3.54 28.64 Q 29.04 28.64 16.29 15.89 Q 3.54 3.14 25.79 3.14" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3.54 28.64 Q 29.04 28.64 16.29 15.89 Q 3.54 3.14 25.79 3.14" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 28.47 3.14 L 24.9 4.93 L 25.79 3.14 L 24.9 1.36 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 7.18 25.73 L 9.18 27.74 L 2.6 28.4 L 3.26 21.82 L 5.27 23.82 L 24.82 4.27 L 22.82 2.26 L 29.4 1.6 L 28.74 8.18 L 26.73 6.18 Z" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 7.18 25.73 L 9.18 27.74 L 2.6 28.4 L 3.26 21.82 L 5.27 23.82 L 24.82 4.27 L 22.82 2.26 L 29.4 1.6 L 28.74 8.18 L 26.73 6.18 Z" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px; opacity: 1;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.94 28.74 L 2.26 25.06 L 20.91 6.41 L 17.05 2.55 L 29.73 1.27 L 28.45 13.95 L 24.59 10.09 Z" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 5.94 28.74 L 2.26 25.06 L 20.91 6.41 L 17.05 2.55 L 29.73 1.27 L 28.45 13.95 L 24.59 10.09 Z" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.48 27.98 L 28.99 1.48" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.48 27.98 L 28.99 1.48" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" stroke-dasharray="1.59 1.59" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.74 27.74 L 28.74 1.74" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.74 27.74 L 28.74 1.74" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" stroke-dasharray="1.04 3.12" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.48 27.98 L 28.99 1.48" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.48 27.98 L 28.99 1.48" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 7.39 23.2 L 24.2 6.39" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 7.39 23.2 L 24.2 6.39" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 5.87 24.72 L 6.88 21.68 L 7.39 23.2 L 8.91 23.71 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 25.72 4.87 L 24.71 7.91 L 24.2 6.39 L 22.68 5.88 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px; opacity: 1;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 5.29 25.29 L 24.4 6.18" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 5.29 25.29 L 24.4 6.18" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 25.96 4.62 L 24.92 7.74 L 24.4 6.18 L 22.84 5.66 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.5 14.42 L 30.5 14.42 M 30.5 15.58 L 1.5 15.58 M 30.5 15.58" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.5 14.42 L 30.5 14.42 M 30.5 15.58 L 1.5 15.58 M 30.5 15.58" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 3.38 14.88 L 26.78 14.88" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3.38 14.88 L 26.78 14.88" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 28.1 14.88 L 26.35 15.75 L 26.78 14.88 L 26.35 14 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="visibility: hidden; pointer-events: none;"></g><g style="pointer-events: none;"><g transform="scale(0.25)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="400%" height="400%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 62px; margin-left: 68px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); background-color: rgb(241, 243, 244); pointer-events: none;"><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; background-color: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); white-space: nowrap;">Label</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.31 15.55 L 28.43 15.55" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.31 15.55 L 28.43 15.55" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 29.32 15.55 L 28.13 16.15 L 28.43 15.55 L 28.13 14.96 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="visibility: hidden; pointer-events: none;"></g><g style="pointer-events: none;"><g transform="scale(0.17)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="589%" height="589%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 94px; margin-left: 99px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); background-color: rgb(241, 243, 244); pointer-events: none;"><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; background-color: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); white-space: nowrap;">Label</div></div></div></foreignobject></g></g><g style="visibility: hidden; pointer-events: none;"></g><g style="pointer-events: none;"><g transform="scale(0.17)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="589%" height="589%"><div style="display: flex; align-items: unsafe flex-end; justify-content: unsafe flex-start; width: 1px; height: 1px; padding-top: 94px; margin-left: 16px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; color: rgb(0, 0, 0); background-color: rgb(241, 243, 244); pointer-events: none;"><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; background-color: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); white-space: nowrap;">Source</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.31 15.55 L 28.43 15.55" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.31 15.55 L 28.43 15.55" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 29.32 15.55 L 28.13 16.15 L 28.43 15.55 L 28.13 14.96 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="visibility: hidden; pointer-events: none;"></g><g style="pointer-events: none;"><g transform="scale(0.17)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="589%" height="589%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 94px; margin-left: 99px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); background-color: rgb(241, 243, 244); pointer-events: none;"><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; background-color: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); white-space: nowrap;">Label</div></div></div></foreignobject></g></g><g style="visibility: hidden; pointer-events: none;"></g><g style="pointer-events: none;"><g transform="scale(0.17)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="589%" height="589%"><div style="display: flex; align-items: unsafe flex-end; justify-content: unsafe flex-start; width: 1px; height: 1px; padding-top: 94px; margin-left: 16px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; color: rgb(0, 0, 0); background-color: rgb(241, 243, 244); pointer-events: none;"><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; background-color: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); white-space: nowrap;">Source</div></div></div></foreignobject></g></g><g style="visibility: hidden; pointer-events: none;"></g><g style="pointer-events: none;"><g transform="scale(0.17)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="589%" height="589%"><div style="display: flex; align-items: unsafe flex-end; justify-content: unsafe flex-end; width: 1px; height: 1px; padding-top: 94px; margin-left: 176px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: right; color: rgb(0, 0, 0); background-color: rgb(241, 243, 244); pointer-events: none;"><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; background-color: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); white-space: nowrap;">Target</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 3.38 14.88 L 26.78 14.88" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3.38 14.88 L 26.78 14.88" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 28.1 14.88 L 26.35 15.75 L 26.78 14.88 L 26.35 14 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 13.88 13.13 L 18.88 13.13 L 18.88 16.63 L 13.88 16.63 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 13.88 13.13 L 16.38 14.88 L 18.88 13.13" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 13.88 13.13 L 16.38 14.88 L 18.88 13.13" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>Misc</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>Advanced</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none; display: none; transform-origin: left top;"><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><ellipse cx="16" cy="15" rx="13.600000000000001" ry="13.600000000000001" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></ellipse><path d="M 16 28.6 L 29.6 28.6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 16 28.6 L 29.6 28.6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.4 28.6 L 2.4 11.6 L 29.6 1.4 L 29.6 28.6 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 7.3 3.4 L 24.7 3.4 L 30.5 8.04 L 30.5 26.6 L 1.5 26.6 L 1.5 8.04 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.4 1.4 L 29.6 1.4 L 29.6 18.4 L 16 28.6 L 2.4 18.4 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px; opacity: 1;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.2 7.6 L 23.4 7.6 Q 30.8 7.6 30.8 15 Q 30.8 22.4 23.4 22.4 L 1.2 22.4 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.2 15 L 8.6 7.6 L 23.4 7.6 Q 30.8 7.6 30.8 15 Q 30.8 22.4 23.4 22.4 L 8.6 22.4 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.5 12.39 L 24.7 12.39 L 24.7 6.3 L 30.5 15 L 24.7 23.7 L 24.7 17.61 L 1.5 17.61 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" transform="rotate(180,16,15)" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.5 12.39 L 24.7 12.39 L 24.7 6.3 L 30.5 15 L 24.7 23.7 L 24.7 17.61 L 1.5 17.61 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.5 12.57 L 24.1 12.57 L 24.1 6.9 L 29.5 15 L 24.1 23.1 L 24.1 17.43 L 2.5 17.43 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" transform="rotate(270,16,15)" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.5 12.57 L 24.1 12.57 L 24.1 6.9 L 29.5 15 L 24.1 23.1 L 24.1 17.43 L 2.5 17.43 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" transform="rotate(90,16,15)" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.5 15 L 7.3 6.3 L 7.3 12.39 L 24.7 12.39 L 24.7 6.3 L 30.5 15 L 24.7 23.7 L 24.7 17.61 L 7.3 17.61 L 7.3 23.7 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.5 15 L 7.9 6.9 L 7.9 12.57 L 24.1 12.57 L 24.1 6.9 L 29.5 15 L 24.1 23.1 L 24.1 17.43 L 7.9 17.43 L 7.9 23.1 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" transform="rotate(90,16,15)" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 7 28.5 C 7 17.7 7 12.3 16 12.3 C 10 12.3 10 1.5 16 1.5 C 22 1.5 22 12.3 16 12.3 C 25 12.3 25 17.7 25 28.5 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.4 12.28 L 13.28 12.28 L 13.28 1.4 L 18.72 1.4 L 18.72 12.28 L 29.6 12.28 L 29.6 17.72 L 18.72 17.72 L 18.72 28.6 L 13.28 28.6 L 13.28 17.72 L 2.4 17.72 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.4 1.4 L 29.6 1.4 L 29.6 8.2 L 9.2 8.2 L 9.2 28.6 L 2.4 28.6 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.4 1.4 L 29.6 1.4 L 29.6 8.2 L 19.4 8.2 L 19.4 28.6 L 12.6 28.6 L 12.6 8.2 L 2.4 8.2 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.5 5.1 C 2.5 0.3 29.5 0.3 29.5 5.1 L 29.5 24.9 C 29.5 29.7 2.5 29.7 2.5 24.9 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2.5 5.1 C 2.5 8.7 29.5 8.7 29.5 5.1 M 2.5 6.9 C 2.5 10.5 29.5 10.5 29.5 6.9 M 2.5 8.7 C 2.5 12.3 29.5 12.3 29.5 8.7" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.5 5.1 C 2.5 8.7 29.5 8.7 29.5 5.1 M 2.5 6.9 C 2.5 10.5 29.5 10.5 29.5 6.9 M 2.5 8.7 C 2.5 12.3 29.5 12.3 29.5 8.7" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><ellipse cx="16" cy="15" rx="13.600000000000001" ry="13.600000000000001" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></ellipse><path d="M 2.4 15 L 29.6 15" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.4 15 L 29.6 15" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 16 1.4 L 16 28.6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 16 1.4 L 16 28.6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><ellipse cx="16" cy="15" rx="13.600000000000001" ry="13.600000000000001" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></ellipse><path d="M 6.34 5.34 L 25.66 24.66" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 6.34 5.34 L 25.66 24.66" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 25.66 5.34 L 6.34 24.66" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 25.66 5.34 L 6.34 24.66" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><ellipse cx="16" cy="15" rx="13.600000000000001" ry="13.600000000000001" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></ellipse><path d="M 2.4 15 L 29.6 15" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.4 15 L 29.6 15" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><ellipse cx="16" cy="15" rx="13.600000000000001" ry="13.600000000000001" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></ellipse><path d="M 16 1.4 L 16 28.6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 16 1.4 L 16 28.6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 16 1.4 L 29.6 15 L 16 28.6 L 2.4 15 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2.4 15 L 29.6 15" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.4 15 L 29.6 15" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.4 1.4 L 29.6 1.4 L 16 15 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2.4 28.6 L 29.6 28.6 L 16 15 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.5 1.5 Q 16 15 29.5 1.5 Q 16 15 29.5 28.5 Q 16 15 2.5 28.5 Q 16 15 2.5 1.5" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.2 12.3 L 1.2 10 L 30.8 10 L 30.8 12.3" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></path><path d="M 1.2 12.3 L 1.2 10 L 30.8 10 L 30.8 12.3" fill="none" stroke="none" style="pointer-events: none;"></path><path d="M 1.2 12.3 L 1.2 20 L 30.8 20 L 30.8 12.3" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></path><path d="M 1.2 12.3 L 30.8 12.3" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.1)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1000%" height="1000%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 294px; height: 1px; padding-top: 112px; margin-left: 13px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: normal; overflow-wrap: normal;">Process Bar</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.2 13.3 L 10.2 13.3 L 12.2 16.15 L 10.2 19 L 2.2 19 L 4.2 16.15 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.1)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1000%" height="1000%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 162px; margin-left: 23px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Step 1</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 11 13.3 L 19 13.3 L 21 16.15 L 19 19 L 11 19 L 13 16.15 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.1)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1000%" height="1000%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 162px; margin-left: 111px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Step 2</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 19.8 13.3 L 27.8 13.3 L 29.8 16.15 L 27.8 19 L 19.8 19 L 21.8 16.15 Z" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.1)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1000%" height="1000%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 162px; margin-left: 199px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Step 3</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 3 4.99 L 3 2 L 29 2 L 29 4.99" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 3 4.99 L 3 28 L 29 28 L 29 4.99" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3 4.99 L 3 28 L 29 28 L 29 4.99" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 3 4.99 L 29 4.99" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3 4.99 L 29 4.99" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g fill="#000000" font-family="&quot;Helvetica&quot;" font-weight="bold" text-anchor="middle" font-size="1.56px" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"><text x="16" y="4.14" style="pointer-events: none;">Container</text></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.3 9.28 L 1.3 3.82 L 30.7 3.82 L 30.7 9.28" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.3 9.28 L 1.3 3.82 L 30.7 3.82 L 30.7 9.28" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 1.3 9.28 L 1.3 25.66 L 30.7 25.66 L 30.7 9.28" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.3 9.28 L 1.3 25.66 L 30.7 25.66 L 30.7 9.28" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 1.3 9.28 L 30.7 9.28" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.3 9.28 L 30.7 9.28" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.21)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="477%" height="477%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 31px; margin-left: 76px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: nowrap;">List</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.3" y="9.28" width="29.4" height="5.46" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1.3" y="9.28" width="29.4" height="5.46" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.21)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="477%" height="477%"><div style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 130px; height: 1px; padding-top: 51px; margin-left: 12px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 22px; overflow: hidden; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Item 1</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.3" y="14.74" width="29.4" height="5.46" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1.3" y="14.74" width="29.4" height="5.46" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.21)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="477%" height="477%"><div style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 130px; height: 1px; padding-top: 77px; margin-left: 12px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 22px; overflow: hidden; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Item 2</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.3" y="20.2" width="29.4" height="5.46" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1.3" y="20.2" width="29.4" height="5.46" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.21)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="477%" height="477%"><div style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 130px; height: 1px; padding-top: 103px; margin-left: 12px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 22px; overflow: hidden; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Item 3</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1" y="7.75" width="30" height="13" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="1" y="7.75" width="30" height="13" fill="none" stroke="none" style="pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.5)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="200%" height="200%"><div style="display: flex; align-items: unsafe flex-start; justify-content: unsafe flex-start; width: 50px; height: 1px; padding-top: 23px; margin-left: 8px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: left; max-height: 22px; overflow: hidden; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">List Item</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 4.8 L 1.6 3.6 L 30.4 3.6 L 30.4 4.8" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 1.6 4.8 L 1.6 26.4 L 30.4 26.4 L 30.4 4.8" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.6 4.8 L 1.6 26.4 L 30.4 26.4 L 30.4 4.8" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 1.6 4.8 L 30.4 4.8" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.6 4.8 L 30.4 4.8" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.06)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1667%" height="1667%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 70px; margin-left: 267px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: nowrap;">Pool</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.8 4.8 L 1.6 4.8 L 1.6 12 L 2.8 12" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2.8 4.8 L 30.4 4.8 L 30.4 12 L 2.8 12" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.8 4.8 L 30.4 4.8 L 30.4 12 L 2.8 12" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2.8 4.8 L 2.8 12" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.8 4.8 L 2.8 12" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.06)rotate(-90 36.666666666666686 139.99999999999997)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1667%" height="1667%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 140px; margin-left: 37px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: nowrap;">Lane 1</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.8 12 L 1.6 12 L 1.6 19.2 L 2.8 19.2" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2.8 12 L 30.4 12 L 30.4 19.2 L 2.8 19.2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.8 12 L 30.4 12 L 30.4 19.2 L 2.8 19.2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2.8 12 L 2.8 19.2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.8 12 L 2.8 19.2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.06)rotate(-90 36.66666666666666 260)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1667%" height="1667%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 260px; margin-left: 37px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: nowrap;">Lane 2</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.8 19.2 L 1.6 19.2 L 1.6 26.4 L 2.8 26.4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2.8 19.2 L 30.4 19.2 L 30.4 26.4 L 2.8 26.4" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.8 19.2 L 30.4 19.2 L 30.4 26.4 L 2.8 26.4" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2.8 19.2 L 2.8 26.4" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.8 19.2 L 2.8 26.4" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.06)rotate(-90 36.666666666666686 379.99999999999994)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1667%" height="1667%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 380px; margin-left: 37px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: nowrap;">Lane 3</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2.8 4.2 L 1.6 4.2 L 1.6 25.8 L 2.8 25.8" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2.8 4.2 L 30.4 4.2 L 30.4 25.8 L 2.8 25.8" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.8 4.2 L 30.4 4.2 L 30.4 25.8 L 2.8 25.8" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2.8 4.2 L 2.8 25.8" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.8 4.2 L 2.8 25.8" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.06)rotate(-90 36.66666666666666 249.99999999999997)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1667%" height="1667%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 250px; margin-left: 37px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: nowrap;">Pool</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 4 4.2 L 2.8 4.2 L 2.8 11.4 L 4 11.4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 4 4.2 L 30.4 4.2 L 30.4 11.4 L 4 11.4" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 4 4.2 L 30.4 4.2 L 30.4 11.4 L 4 11.4" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 4 4.2 L 4 11.4" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 4 4.2 L 4 11.4" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.06)rotate(-90 56.66666666666664 129.99999999999991)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1667%" height="1667%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 130px; margin-left: 57px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: nowrap;">Lane 1</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 4 11.4 L 2.8 11.4 L 2.8 18.6 L 4 18.6" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 4 11.4 L 30.4 11.4 L 30.4 18.6 L 4 18.6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 4 11.4 L 30.4 11.4 L 30.4 18.6 L 4 18.6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 4 11.4 L 4 18.6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 4 11.4 L 4 18.6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.06)rotate(-90 56.66666666666664 249.99999999999994)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1667%" height="1667%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 250px; margin-left: 57px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: nowrap;">Lane 2</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 4 18.6 L 2.8 18.6 L 2.8 25.8 L 4 25.8" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 4 18.6 L 30.4 18.6 L 30.4 25.8 L 4 25.8" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 4 18.6 L 30.4 18.6 L 30.4 25.8 L 4 25.8" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 4 18.6 L 4 25.8" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 4 18.6 L 4 25.8" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.06)rotate(-90 56.66666666666667 369.9999999999999)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1667%" height="1667%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 370px; margin-left: 57px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: nowrap;">Lane 3</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 7 4 L 7 3 L 25 3 L 25 4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 7 4 L 7 27 L 25 27 L 25 4" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 7 4 L 7 27 L 25 27 L 25 4" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 7 4 L 25 4" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 7 4 L 25 4" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.05)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="2000%" height="2000%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 70px; margin-left: 320px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: nowrap;">Pool</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 7 5 L 7 4 L 13 4 L 13 5" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 7 5 L 7 27 L 13 27 L 13 5" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 7 5 L 7 27 L 13 27 L 13 5" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 7 5 L 13 5" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 7 5 L 13 5" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.05)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="2000%" height="2000%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 90px; margin-left: 200px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: nowrap;">Lane 1</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 13 5 L 13 4 L 19 4 L 19 5" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 13 5 L 13 27 L 19 27 L 19 5" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 13 5 L 13 27 L 19 27 L 19 5" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 13 5 L 19 5" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 13 5 L 19 5" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.05)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="2000%" height="2000%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 90px; margin-left: 320px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: nowrap;">Lane 2</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 19 5 L 19 4 L 25 4 L 25 5" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 19 5 L 19 27 L 25 27 L 25 5" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 19 5 L 19 27 L 25 27 L 25 5" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 19 5 L 25 5" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 19 5 L 25 5" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.05)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="2000%" height="2000%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 90px; margin-left: 440px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: nowrap;">Lane 3</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 7.5 3 L 6.5 3 L 6.5 27 L 7.5 27" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 7.5 3 L 25.5 3 L 25.5 27 L 7.5 27" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 7.5 3 L 25.5 3 L 25.5 27 L 7.5 27" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 7.5 3 L 7.5 27" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 7.5 3 L 7.5 27" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g fill="#000000" font-family="&quot;Helvetica&quot;" font-weight="bold" text-anchor="middle" font-size="0.6000000000000001px" transform="rotate(-90,7,15)" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"><text x="7" y="15.25" style="pointer-events: none;">Pool</text></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 7.5 4 L 7.5 3 L 13.5 3 L 13.5 4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 7.5 4 L 7.5 27 L 13.5 27 L 13.5 4" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 7.5 4 L 7.5 27 L 13.5 27 L 13.5 4" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 7.5 4 L 13.5 4" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 7.5 4 L 13.5 4" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g fill="#000000" font-family="&quot;Helvetica&quot;" font-weight="bold" text-anchor="middle" font-size="0.6000000000000001px" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"><text x="10.5" y="3.75" style="pointer-events: none;">Lane 1</text></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 13.5 4 L 13.5 3 L 19.5 3 L 19.5 4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 13.5 4 L 13.5 27 L 19.5 27 L 19.5 4" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 13.5 4 L 13.5 27 L 19.5 27 L 19.5 4" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 13.5 4 L 19.5 4" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 13.5 4 L 19.5 4" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g fill="#000000" font-family="&quot;Helvetica&quot;" font-weight="bold" text-anchor="middle" font-size="0.6000000000000001px" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"><text x="16.5" y="3.75" style="pointer-events: none;">Lane 2</text></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 19.5 4 L 19.5 3 L 25.5 3 L 25.5 4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 19.5 4 L 19.5 27 L 25.5 27 L 25.5 4" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 19.5 4 L 19.5 27 L 25.5 27 L 25.5 4" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 19.5 4 L 25.5 4" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 19.5 4 L 25.5 4" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g fill="#000000" font-family="&quot;Helvetica&quot;" font-weight="bold" text-anchor="middle" font-size="0.6000000000000001px" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"><text x="22.5" y="3.75" style="pointer-events: none;">Lane 3</text></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2 7.5 L 2 5.5 L 30 5.5 L 30 7.5" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2 7.5 L 2 24.5 L 30 24.5 L 30 7.5" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2 7.5 L 2 24.5 L 30 24.5 L 30 7.5" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2 7.5 L 30 7.5" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2 7.5 L 30 7.5" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g fill="#000000" font-family="&quot;Helvetica&quot;" font-weight="bold" text-anchor="middle" font-size="1.2000000000000002px" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"><text x="16" y="7" style="pointer-events: none;">Vertical Tree Layout</text></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="11" y="9.5" width="10" height="4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.1)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1000%" height="1000%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 115px; margin-left: 111px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Root</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="4" y="18.5" width="10" height="4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.1)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1000%" height="1000%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 205px; margin-left: 41px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Child 1</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 16 13.5 L 16 15 Q 16 16 15 16 L 10 16 Q 9 16 9 16.93 L 9 17.86" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 16 13.5 L 16 15 Q 16 16 15 16 L 10 16 Q 9 16 9 16.93 L 9 17.86" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 9 18.39 L 8.65 17.69 L 9 17.86 L 9.35 17.69 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="18" y="18.5" width="10" height="4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.1)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1000%" height="1000%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 205px; margin-left: 181px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Child 2</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 16 13.5 L 16 15 Q 16 16 17 16 L 22 16 Q 23 16 23 16.93 L 23 17.86" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 16 13.5 L 16 15 Q 16 16 17 16 L 22 16 Q 23 16 23 16.93 L 23 17.86" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 23 18.39 L 22.65 17.69 L 23 17.86 L 23.35 17.69 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 3.85 7.8 L 2.05 7.8 L 2.05 22.2 L 3.85 22.2" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 3.85 7.8 L 29.95 7.8 L 29.95 22.2 L 3.85 22.2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3.85 7.8 L 29.95 7.8 L 29.95 22.2 L 3.85 22.2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 3.85 7.8 L 3.85 22.2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3.85 7.8 L 3.85 22.2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g fill="#000000" font-family="&quot;Helvetica&quot;" font-weight="bold" text-anchor="middle" font-size="1.08px" transform="rotate(-90,2.95,15)" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"><text x="2.95" y="15.45" style="pointer-events: none;">Horizontal Tree Layout</text></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="5.65" y="13.2" width="9" height="3.6" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.09)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1112%" height="1112%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 167px; margin-left: 64px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Root</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="19.15" y="9.6" width="9" height="3.6" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.09)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1112%" height="1112%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 127px; margin-left: 214px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Child 1</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 14.65 15 L 16.1 15 Q 17 15 17 14.1 L 17 12.3 Q 17 11.4 17.79 11.4 L 18.58 11.4" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 14.65 15 L 16.1 15 Q 17 15 17 14.1 L 17 12.3 Q 17 11.4 17.79 11.4 L 18.58 11.4" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 19.05 11.4 L 18.42 11.71 L 18.58 11.4 L 18.42 11.08 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="19.15" y="16.8" width="9" height="3.6" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.09)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1112%" height="1112%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 207px; margin-left: 214px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Child 2</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 14.65 15 L 16.1 15 Q 17 15 17 15.9 L 17 17.7 Q 17 18.6 17.79 18.6 L 18.58 18.6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 14.65 15 L 16.1 15 Q 17 15 17 15.9 L 17 17.7 Q 17 18.6 17.79 18.6 L 18.58 18.6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 19.05 18.6 L 18.42 18.92 L 18.58 18.6 L 18.42 18.29 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 3.85 4.2 L 3.85 2.4 L 28.15 2.4 L 28.15 4.2" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 3.85 4.2 L 3.85 27.6 L 28.15 27.6 L 28.15 4.2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3.85 4.2 L 3.85 27.6 L 28.15 27.6 L 28.15 4.2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 3.85 4.2 L 28.15 4.2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3.85 4.2 L 28.15 4.2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g fill="#000000" font-family="&quot;Helvetica&quot;" font-weight="bold" text-anchor="middle" font-size="1.08px" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"><text x="16" y="3.75" style="pointer-events: none;">Vertical Flow Layout</text></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="11.5" y="6" width="9" height="3.6" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.09)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1112%" height="1112%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 87px; margin-left: 129px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Start</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="5.65" y="14.1" width="9" height="3.6" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.09)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1112%" height="1112%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 177px; margin-left: 64px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Task</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 13.97 9.6 L 13.97 10.14 Q 13.97 10.68 13.21 11.15 L 10.92 12.55 Q 10.15 13.02 10.15 13.27 L 10.15 13.53" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 13.97 9.6 L 13.97 10.14 Q 13.97 10.68 13.21 11.15 L 10.92 12.55 Q 10.15 13.02 10.15 13.27 L 10.15 13.53" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 10.15 14 L 9.83 13.37 L 10.15 13.53 L 10.46 13.37 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="17.35" y="14.1" width="9" height="3.6" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.09)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1112%" height="1112%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 177px; margin-left: 194px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Task</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 18.02 9.6 L 18.02 10.14 Q 18.02 10.68 18.79 11.15 L 21.08 12.55 Q 21.85 13.02 21.85 13.27 L 21.85 13.53" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 18.02 9.6 L 18.02 10.14 Q 18.02 10.68 18.79 11.15 L 21.08 12.55 Q 21.85 13.02 21.85 13.27 L 21.85 13.53" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 21.85 14 L 21.54 13.37 L 21.85 13.53 L 22.16 13.37 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="11.5" y="22.2" width="9" height="3.6" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.09)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1112%" height="1112%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 267px; margin-left: 129px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">End</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 10.15 17.7 L 10.15 18.24 Q 10.15 18.78 10.92 19.25 L 13.21 20.65 Q 13.97 21.12 13.97 21.37 L 13.97 21.63" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 10.15 17.7 L 10.15 18.24 Q 10.15 18.78 10.92 19.25 L 13.21 20.65 Q 13.97 21.12 13.97 21.37 L 13.97 21.63" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 13.97 22.1 L 13.66 21.47 L 13.97 21.63 L 14.29 21.47 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 21.85 17.7 L 21.85 18.24 Q 21.85 18.78 21.08 19.25 L 18.79 20.65 Q 18.02 21.12 18.02 21.37 L 18.02 21.63" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 21.85 17.7 L 21.85 18.24 Q 21.85 18.78 21.08 19.25 L 18.79 20.65 Q 18.02 21.12 18.02 21.37 L 18.02 21.63" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 18.02 22.1 L 17.71 21.47 L 18.02 21.63 L 18.34 21.47 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 3.4 10.5 L 2.2 10.5 L 2.2 19.5 L 3.4 19.5" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 3.4 10.5 L 29.8 10.5 L 29.8 19.5 L 3.4 19.5" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3.4 10.5 L 29.8 10.5 L 29.8 19.5 L 3.4 19.5" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 3.4 10.5 L 3.4 19.5" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 3.4 10.5 L 3.4 19.5" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.06)rotate(-90 46.66666666666665 250)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1667%" height="1667%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 250px; margin-left: 47px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; font-weight: bold; white-space: nowrap;">Horizontal Flow Layout</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="4.6" y="13.8" width="6" height="2.4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.06)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1667%" height="1667%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 250px; margin-left: 78px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Start</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="13.6" y="11.7" width="6" height="2.4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.06)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1667%" height="1667%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 215px; margin-left: 228px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Task</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 10.6 14.55 L 12.57 13.12" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 10.6 14.55 L 12.57 13.12" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 12.83 12.94 L 12.61 13.36 L 12.57 13.12 L 12.36 13.02 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="13.6" y="15.9" width="6" height="2.4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.06)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1667%" height="1667%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 285px; margin-left: 228px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Task</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 10.6 15.45 L 12.57 16.88" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 10.6 15.45 L 12.57 16.88" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 12.83 17.06 L 12.36 16.98 L 12.57 16.88 L 12.61 16.64 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="22.6" y="13.8" width="6" height="2.4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.06)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1667%" height="1667%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 250px; margin-left: 378px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">End</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 19.6 12.9 L 21.57 14.33" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 19.6 12.9 L 21.57 14.33" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 21.83 14.51 L 21.36 14.43 L 21.57 14.33 L 21.61 14.09 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 19.6 17.1 L 21.57 15.67" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 19.6 17.1 L 21.57 15.67" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 21.83 15.49 L 21.61 15.91 L 21.57 15.67 L 21.36 15.57 Z" fill="#000000" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2 5.2 L 2 3.8 L 30 3.8 L 30 5.2" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2 5.2 L 2 26.2 L 30 26.2 L 30 5.2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2 5.2 L 2 26.2 L 30 26.2 L 30 5.2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2 5.2 L 30 5.2" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2 5.2 L 30 5.2" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g fill="#000000" font-family="&quot;Helvetica&quot;" font-weight="bold" text-anchor="middle" font-size="0.8400000000000001px" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"><text x="16" y="4.85" style="pointer-events: none;">Tree Container</text></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 16 10.8 L 16 12 L 16 13.6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 16 10.8 L 16 12 L 16 13.6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="11.8" y="8" width="8.4" height="2.8" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.07)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1429%" height="1429%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 134px; margin-left: 170px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Parent</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="11.8" y="13.6" width="8.4" height="2.8" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.07)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1429%" height="1429%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 214px; margin-left: 170px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Child</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.3 11.99 L 1.3 10.59 L 30.7 10.59 L 30.7 11.99" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 1.3 11.99 L 1.3 19.41 L 30.7 19.41 L 30.7 11.99" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.3 11.99 L 1.3 19.41 L 30.7 19.41 L 30.7 11.99" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 1.3 11.99 L 30.7 11.99" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.3 11.99 L 30.7 11.99" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g fill="#000000" font-family="&quot;Helvetica&quot;" font-weight="bold" text-anchor="middle" font-size="0.8400000000000001px" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"><text x="16" y="11.64" style="pointer-events: none;">Mindmap</text></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 19.5 16.19 Q 19.5 16.19 23 14.09" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 19.5 16.19 Q 19.5 16.19 23 14.09" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 19.5 16.19 Q 19.5 16.19 23 18.01" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 19.5 16.19 Q 19.5 16.19 23 18.01" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 12.5 16.19 Q 12.5 16.19 9 14.09" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 12.5 16.19 Q 12.5 16.19 9 14.09" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 12.5 16.19 Q 12.5 16.19 8.44 18.01" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 12.5 16.19 Q 12.5 16.19 8.44 18.01" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><ellipse cx="16" cy="16.19" rx="3.5000000000000004" ry="1.4000000000000001" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></ellipse></g><g style="pointer-events: none;"><g transform="scale(0.07)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1429%" height="1429%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 231px; margin-left: 180px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Central Idea</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="23.7" y="13.39" width="5.6" height="1.4" rx="0.7" ry="0.7" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.07)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1429%" height="1429%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 74px; height: 1px; padding-top: 201px; margin-left: 342px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Topic</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="23.7" y="16.19" width="5.04" height="1.82" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="23.7" y="16.19" width="5.04" height="1.82" fill="none" stroke="none" style="pointer-events: none;"></rect><path d="M 23.7 16.19 M 28.74 16.19 M 28.74 18.01 L 23.7 18.01" fill="none" stroke="white" stroke-width="9.3" stroke-linecap="square" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 23.7 16.19 M 28.74 16.19 M 28.74 18.01 L 23.7 18.01" fill="none" stroke="#000000" stroke-width="1.3" stroke-linecap="square" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.07)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1429%" height="1429%"><div style="display: flex; align-items: unsafe flex-end; justify-content: unsafe center; width: 70px; height: 1px; padding-top: 254px; margin-left: 340px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Branch</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="2.7" y="13.39" width="5.6" height="1.4" rx="0.7" ry="0.7" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.07)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1429%" height="1429%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 74px; height: 1px; padding-top: 201px; margin-left: 42px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Topic</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="2.7" y="16.19" width="5.04" height="1.82" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="2.7" y="16.19" width="5.04" height="1.82" fill="none" stroke="none" style="pointer-events: none;"></rect><path d="M 2.7 16.19 M 7.74 16.19 M 7.74 18.01 L 2.7 18.01" fill="none" stroke="white" stroke-width="9.3" stroke-linecap="square" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2.7 16.19 M 7.74 16.19 M 7.74 18.01 L 2.7 18.01" fill="none" stroke="#000000" stroke-width="1.3" stroke-linecap="square" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.07)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1429%" height="1429%"><div style="display: flex; align-items: unsafe flex-end; justify-content: unsafe center; width: 70px; height: 1px; padding-top: 254px; margin-left: 40px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Branch</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><ellipse cx="16" cy="15" rx="14.499999999999998" ry="5.8" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></ellipse></g><g style="pointer-events: none;"><g transform="scale(0.29)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="345%" height="345%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 52px; margin-left: 6px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Central Idea</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="11.2" y="10.2" width="19.2" height="4.8" fill="none" stroke="white" visibility="hidden" stroke-width="9" style="pointer-events: none;"></rect><rect x="11.2" y="10.2" width="19.2" height="4.8" fill="none" stroke="none" style="pointer-events: none;"></rect><path d="M 11.2 10.2 M 30.4 10.2 M 30.4 15 L 11.2 15" fill="none" stroke="white" stroke-width="9.3" stroke-linecap="square" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 11.2 10.2 M 30.4 10.2 M 30.4 15 L 11.2 15" fill="none" stroke="#000000" stroke-width="1.3" stroke-linecap="square" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g transform="scale(0.24)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="417%" height="417%"><div style="display: flex; align-items: unsafe flex-end; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 60px; margin-left: 48px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Branch</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 19.8 Q 4 19.8 6.4 17.4 Q 8.8 15 11 15" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.6 19.8 Q 4 19.8 6.4 17.4 Q 8.8 15 11 15" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="11.2" y="10.2" width="19.2" height="6.24" rx="3.12" ry="3.12" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.24)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="417%" height="417%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 74px; height: 1px; padding-top: 56px; margin-left: 50px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Sub Topic</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 19.8 Q 4 19.8 6.4 16.56 Q 8.8 13.32 11.2 13.32" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.6 19.8 Q 4 19.8 6.4 16.56 Q 8.8 13.32 11.2 13.32" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 2 6 L 2 4 L 30 4 L 30 6" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2 6 L 2 26 L 30 26 L 30 6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2 6 L 2 26 L 30 26 L 30 6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path><path d="M 2 6 L 30 6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 2 6 L 30 6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g style="pointer-events: none;"><g fill="#000000" font-family="&quot;Helvetica&quot;" font-weight="bold" text-anchor="middle" font-size="1.2000000000000002px" style="fill: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"><text x="16" y="5.5" style="pointer-events: none;">Orgchart</text></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 16 14 L 16 16 L 9 16 L 9 18" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 16 14 L 16 16 L 9 16 L 9 18" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 16 14 L 16 16 L 23 16 L 23 18" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 16 14 L 16 16 L 23 16 L 23 18" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="10" y="8" width="12" height="6" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.1)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1000%" height="1000%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 110px; margin-left: 101px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Organization</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="4" y="18" width="10" height="6" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.1)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1000%" height="1000%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 210px; margin-left: 41px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Division</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="18" y="18" width="10" height="6" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.1)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="1000%" height="1000%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 210px; margin-left: 181px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Division</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.6" y="7.8" width="28.8" height="14.4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.24)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="417%" height="417%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 63px; margin-left: 8px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Organization</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="6.4" y="12.6" width="24" height="14.4" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.24)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="417%" height="417%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 82px; margin-left: 28px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Division</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 1.6 3 L 1.6 8 L 18.4 8 L 18.4 12.6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 1.6 3 L 1.6 8 L 18.4 8 L 18.4 12.6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a><a class="geItem" style="overflow: hidden; width: 34px; height: 32px; padding: 1px;"><svg style="left: 1px; top: 1px; width: 32px; height: 30px; display: block; position: relative; overflow: hidden; pointer-events: none;"><g style="pointer-events: none;"><g style="pointer-events: none;"></g><g style="pointer-events: none;"><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 16 8.5 L 16.1 17.6 L 14.7 17.6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 16 8.5 L 16.1 17.6 L 14.7 17.6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><path d="M 16 8.5 L 16.1 11.2 L 16 17.6 L 17.3 17.6" fill="none" stroke="white" stroke-width="9.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;" visibility="hidden"></path><path d="M 16 8.5 L 16.1 11.2 L 16 17.6 L 17.3 17.6" fill="none" stroke="#000000" stroke-width="1.3" stroke-miterlimit="10" style="stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="1.7" y="13.7" width="13" height="7.8" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.13)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="770%" height="770%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 135px; margin-left: 14px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Sub Section</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; pointer-events: none;"><rect x="17.3" y="13.7" width="13" height="7.8" fill="#f1f3f4" stroke="#000000" stroke-width="1.3" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); stroke: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); pointer-events: none;"></rect></g><g style="pointer-events: none;"><g transform="scale(0.13)" style="pointer-events: none;"><foreignobject style="overflow: visible; text-align: left; pointer-events: none;" width="770%" height="770%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 98px; height: 1px; padding-top: 135px; margin-left: 134px; pointer-events: none;"><div style="box-sizing: border-box; font-size: 0px; text-align: center; color: rgb(0, 0, 0); pointer-events: none;"><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: light-dark(rgb(0, 0, 0), rgb(192, 192, 192)); line-height: 1.2; pointer-events: none; white-space: normal; overflow-wrap: normal;">Sub Section</div></div></div></foreignobject></g></g></g><g style="pointer-events: none;"></g><g style="pointer-events: none;"></g></g></svg></a></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>Basic</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Arrows</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>Arrows</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Clipart / Computer</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Clipart / Finance</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Clipart / Various</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Clipart / Networking</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Clipart / People</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Clipart / Telecommunication</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>Flowchart</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Active Directory</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Android</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Atlassian</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Bootstrap</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Data Flow Diagram</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>Entity Relation</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>iOS Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>iOS UI</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>iOS6</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Kubernetes</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Buttons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Containers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Forms</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Graphics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Markup</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Misc</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Navigation</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Mockup Text</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Sitemap</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Salesforce / Components</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Salesforce / Product</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Salesforce / Platform</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Salesforce / Industry</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>UML 2.5</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: block;"><span>UML</span></a><div style="display: block;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Alibaba Cloud</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Allied Telesis / Buildings</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Allied Telesis / Computer and Terminals</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Allied Telesis / Media Converters</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Allied Telesis / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Allied Telesis / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Allied Telesis / Switch</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Allied Telesis / Wireless</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Application Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Artificial Intelligence</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Business Productivity</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Contact Center</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Database</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Desktop and App Streaming</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Developer Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Game Development</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / General</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Groups</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Internet of Things</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Management Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Messaging</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Migration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Mobile Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Network and Content Delivery</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / On-Demand Workforce</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / SDK</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Security Identity and Compliance</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS17 / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Arrows</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / General Resources</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Illustrations</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Groups (light)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Groups (dark)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Application Integration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / AR &amp; VR</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Cost Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Business Productivity</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Customer Engagement</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Database</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Desktop &amp; App Streaming</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Developer Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Game Development</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Internet of Things</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / IoT Things</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / IoT Resources</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Machine Learning</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Management Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Media Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Migration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Mobile Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Network &amp; Content Delivery</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Security, Identity &amp; Compliance</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Arrows</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / General Resources</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Illustrations</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Groups</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Application Integration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / AR &amp; VR</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Blockchain</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Business Applications</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Cloud Financial Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Contact Center</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Containers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Customer Enablement</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Customer Engagement</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Database</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Developer Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / End User Computing</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Front End Web Mobile</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Game Tech</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Internet of Things</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Machine Learning</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Management &amp; Governance</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Media Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Migration &amp; Transfer</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Network &amp; Content Delivery</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Quantum Technologies</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Robotics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Satellite</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Security, Identity &amp; Compliance</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Serverless</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS 3D</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / AI and Machine Learning</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / App Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Ecosystem</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Azure Stack</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / VMware Solution</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Blockchain</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Containers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / CXP</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Databases</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / DevOps</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / General</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Hybrid and Multicloud</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Identity</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Integration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Intune</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / IoT</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Management and Governance</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Menu</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Migrate</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Mixed Reality</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Mobile</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Monitor</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Networking</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Other</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Power Platform</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Preview</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Azure / Web</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Companies</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Enterprise (flat)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Intune (flat)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / OMS (flat)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / System Center (flat)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / AI and ML Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Analytics Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Compute Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Compute Service VM</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Container Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Databases Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / DevOps Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / General Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Identity Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Integration Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Internet of Things Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Intune Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Management and Governance Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Management and Governance Service - Media</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Migrate Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Mixed Reality Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Mobile Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Networking Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Other Category Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Security Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Storage Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>CAE / Web Service</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>C4</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Buildings</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Computers and Peripherals</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Controllers and Modules</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Directors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Hubs and Gateways</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Misc</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Modems and Phones</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / People</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Routers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Servers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Switches</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco / Wireless</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / LAN Switching</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / Routing WAN</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / Network Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / Data Center</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / Wireless LAN</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / Collaboration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / Security, Clouds and Connectors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / Endpoint Client and Device Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / DNA/SD-Access</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / SD-WAN and Viptela</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / ETA/Stealthwatch</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco 19 / SAFE</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / Architecture</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / Business Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / Capability</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / Design</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / IoT Things Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / People, Places, Things Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / Security Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / Technology Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cisco Safe / Threat</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cumulus</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / Locations</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / Users and Devices</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / Cloud Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / Components</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / Resources</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / NetScaler</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / Networking</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix / Authentication</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Citrix (legacy)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Dynamics365 / App</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Dynamics365 / Mixed Reality</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Dynamics365 / Product Family</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Dynamics365 / Sub App</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Paths</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Zones</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Service Cards</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / User and Device Cards</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / API Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Data Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Data Transfer</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Cloud AI</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Internet of Things</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Databases</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Management Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Networking</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Developer Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Expanded Product Cards</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / Product Cards</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP / General Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / AI and Machine Learning</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Serverless</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Operations</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Networking</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / CI/CD</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Integration Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / API Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Internet of Things</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Databases</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Migration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Hybrid and Multi Cloud</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Open Source Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / AI and Machine Learning</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / API Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Data Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Databases</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Developer Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Expanded Product Card Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Generic</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Hybrid and Multi Cloud</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Internet of Things</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Management Tools</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Migration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Networking</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Open Source Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GCP Icons / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Applications</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Blockchain</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Data</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / DevOps</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Infrastructure</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Miscellaneous</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Social</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Users</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / VPC</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Boxes</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Connectors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Groups</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Actors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / AI</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Compute</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Containers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Data</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / DevOps</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Network</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Observability</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>IBM / Connectors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Network</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Annotations</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Colored Connectors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Foundations</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Integration Suite</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / App Dev Automation</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Data Analytics</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / AI</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Generic Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Component Groups</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Components</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Default Connectors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Default Shapes</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Numbers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Products</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Build Workzone</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Semantic Accent</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SAP / Texts</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Clouds</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Communications</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Concepts</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Databases</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Devices</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Servers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Services</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Sites</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Office / Users</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>OpenStack / Blue</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>OpenStack / Grey</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>OpenStack / Green</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>OpenStack / Red</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / General</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / APC</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / Cisco</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / Dell</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / F5</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / HP</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / HPE Aruba / Gateways and Controllers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / HPE Aruba / Security</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / HPE Aruba / Switches</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / IBM</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Rack / Oracle</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Data Center</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Miscellaneous</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Software</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Users and Status</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Availability Suite components</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Backup and Replication</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Products</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / VMs and Tape</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / 3D</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Auxiliary</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Data Center</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Features</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / General</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Products and Components</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Software</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / States</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / Storage</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Veeam / 3D</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>VMware Validated Design</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Generic</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Relationships</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Motivation</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Strategy</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Business</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Application</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Technology</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Archimate 3.2 / Implementation and Migration</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>ArchiMate 2.1</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>BPMN 2.0 General</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>BPMN 2.0 Tasks</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>BPMN 2.0 Choreographies</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>BPMN 2.0 Events</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>BPMN 2.0 Gateways</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Model Elements</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Blocks</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Ports and Flows</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Constraint Blocks</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Activities</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Interactions</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / State Machines</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / UseCases</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Allocations</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Requirements</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Profiles</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>SysML / Stereotypes</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Value Stream Mapping</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Cabinets</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Infographic</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>EIP / Message Construction</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>EIP / Message Routing</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>EIP / Message Transformation</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>EIP / Messaging Channels</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>EIP / Messaging Endpoints</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>EIP / Messaging Systems</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>EIP / System Management</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Logic Gates</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Resistors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Capacitors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Inductors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Switches and Relays</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Diodes</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Sources</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Transistors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Instruments</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Misc</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Audio</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / PLC Ladder</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Optical</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Vacuum Tubes</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Waveforms</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Rotating Equipment &amp; Mechanical Functions</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Transmission Paths</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Floorplans</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Fluid Power (ISO 1219)</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Bottom Navigation</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Bottom Sheets</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Buttons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Cards</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Chips</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Dialogs</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Dividers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Grid Lists</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Lists</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Menus</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Misc</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Pickers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Selection Controls</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Sliders</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Steppers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Tabs</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>GMDL / Text Fields</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Instruments</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Misc</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Valves</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Compressors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Engines</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Filters</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Flow Sensors</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Piping</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Crushers Grinding</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Fittings</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Separators</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Agitators</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Apparatus Elements</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Centrifuges</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Compressors ISO</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Driers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Feeders</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Heat Exchangers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Mixers</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Pumps</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Pumps DIN</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Pumps ISO</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Shaping Machines</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Proc. Eng. / Vessels</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Threat Modeling</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Web Icons</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Web Logos</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Animals</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Food</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Healthcare</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Nature</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / People</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Safety</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Science</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Sports</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Tech</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Transportation</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div><a title="Click or drag and drop shapes. Shift+click to change selection. Alt+click to insert and connect." class="geTitle" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Signs / Travel</span></a><div style="display: none;"><div class="geSidebar" style="touch-action: none; display: none;"></div></div></div><div class="geSidebarFooter" style="position: absolute; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; width: 100%; margin-top: -1px; height: 52px;"><button class="geBtn gePrimaryBtn" style="display: inline-flex; align-items: center; white-space: nowrap; padding: 8px; margin: 0px;"><span style="font-size: 18px; margin-right: 5px;">+</span>More Shapes</button></div></div><div class="geSidebarContainer geFormatContainer" style="right: 0px; z-index: 1; top: 103px; width: 240px; bottom: 0px;"><div style="white-space: nowrap; text-align: left; cursor: default;"><div class="geFormatSection" style="text-align: center; font-weight: bold; padding-top: 8px; font-size: 13px; border-width: 0px; border-style: solid; display: inline-block; height: 25px; overflow: hidden; width: 33.3%; cursor: pointer;">Style</div><div class="geFormatSection" style="text-align: center; font-weight: bold; padding-top: 8px; font-size: 13px; border-width: 0px 0px 1px 1px; border-style: solid; display: inline-block; height: 25px; overflow: hidden; width: 33.3%; background-color: light-dark(rgb(228, 228, 228), rgb(0, 0, 0)); cursor: pointer;">Text</div><div class="geFormatSection" style="text-align: center; font-weight: bold; padding-top: 8px; font-size: 13px; border-width: 0px 0px 1px 1px; border-style: solid; display: inline-block; height: 25px; overflow: hidden; width: 33.3%; background-color: light-dark(rgb(228, 228, 228), rgb(0, 0, 0)); cursor: pointer;">Arrange</div></div><div style="white-space: nowrap; text-align: left; cursor: default;"><div class="geFormatSection" style="padding: 12px 0px 6px 16px; position: relative;"><div style="white-space: nowrap; padding-left: 24px; padding-right: 20px;"><button class="geStyleButton" style="width: 36px; height: 24px; margin: 0px 6px 6px 0px; background-color: light-dark(#ffffff, var(--ge-dark-color, #121212)); border: 1px solid light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); border-radius: 0px;"></button><button class="geStyleButton" style="width: 36px; height: 24px; margin: 0px 6px 6px 0px; background-image: linear-gradient(to right bottom, light-dark(rgb(245, 245, 245), rgb(26, 26, 26)) 50%, rgb(245, 245, 245) 50.3%); border-width: 1px; border-style: solid; border-color: light-dark(rgb(102, 102, 102), rgb(149, 149, 149)) rgb(102, 102, 102) rgb(102, 102, 102) light-dark(rgb(102, 102, 102), rgb(149, 149, 149)); border-image: initial; border-radius: 0px;"></button><button class="geStyleButton" style="width: 36px; height: 24px; margin: 0px 6px 6px 0px; background-image: linear-gradient(to right bottom, light-dark(rgb(218, 232, 252), rgb(29, 41, 59)) 50%, rgb(218, 232, 252) 50.3%); border-width: 1px; border-style: solid; border-color: light-dark(rgb(108, 142, 191), rgb(92, 121, 163)) rgb(108, 142, 191) rgb(108, 142, 191) light-dark(rgb(108, 142, 191), rgb(92, 121, 163)); border-image: initial; border-radius: 0px;"></button><button class="geStyleButton" style="width: 36px; height: 24px; margin: 0px 6px 6px 0px; background-image: linear-gradient(to right bottom, light-dark(rgb(213, 232, 212), rgb(31, 47, 30)) 50%, rgb(213, 232, 212) 50.3%); border-width: 1px; border-style: solid; border-color: light-dark(rgb(130, 179, 102), rgb(68, 110, 44)) rgb(130, 179, 102) rgb(130, 179, 102) light-dark(rgb(130, 179, 102), rgb(68, 110, 44)); border-image: initial; border-radius: 0px;"></button><br><button class="geStyleButton" style="width: 36px; height: 24px; margin: 0px 6px 6px 0px; background-image: linear-gradient(to right bottom, light-dark(rgb(255, 230, 204), rgb(54, 33, 10)) 50%, rgb(255, 230, 204) 50.3%); border-width: 1px; border-style: solid; border-color: light-dark(rgb(215, 155, 0), rgb(153, 101, 0)) rgb(215, 155, 0) rgb(215, 155, 0) light-dark(rgb(215, 155, 0), rgb(153, 101, 0)); border-image: initial; border-radius: 0px;"></button><button class="geStyleButton" style="width: 36px; height: 24px; margin: 0px 6px 6px 0px; background-image: linear-gradient(to right bottom, light-dark(rgb(255, 242, 204), rgb(40, 29, 0)) 50%, rgb(255, 242, 204) 50.3%); border-width: 1px; border-style: solid; border-color: light-dark(rgb(214, 182, 86), rgb(109, 81, 0)) rgb(214, 182, 86) rgb(214, 182, 86) light-dark(rgb(214, 182, 86), rgb(109, 81, 0)); border-image: initial; border-radius: 0px;"></button><button class="geStyleButton" style="width: 36px; height: 24px; margin: 0px 6px 6px 0px; background-image: linear-gradient(to right bottom, light-dark(rgb(248, 206, 204), rgb(81, 45, 43)) 50%, rgb(248, 206, 204) 50.3%); border-width: 1px; border-style: solid; border-color: light-dark(rgb(184, 84, 80), rgb(215, 129, 126)) rgb(184, 84, 80) rgb(184, 84, 80) light-dark(rgb(184, 84, 80), rgb(215, 129, 126)); border-image: initial; border-radius: 0px;"></button><button class="geStyleButton" style="width: 36px; height: 24px; margin: 0px 6px 6px 0px; background-image: linear-gradient(to right bottom, light-dark(rgb(225, 213, 231), rgb(57, 47, 63)) 50%, rgb(225, 213, 231) 50.3%); border-width: 1px; border-style: solid; border-color: light-dark(rgb(150, 115, 166), rgb(149, 119, 163)) rgb(150, 115, 166) rgb(150, 115, 166) light-dark(rgb(150, 115, 166), rgb(149, 119, 163)); border-image: initial; border-radius: 0px;"></button></div><div style="position: absolute; left: 10px; top: 8px; bottom: 28px; width: 20px; margin: 4px; opacity: 0.5; background-repeat: no-repeat; background-position: center center; background-image: url(&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAIVBMVEUAAAB2dnZ4eHh3d3d1dXVxcXF2dnZ2dnZ2dnZxcXF2dnYmb3w1AAAACnRSTlMAfCTkhhvb7cQSPH2JPgAAADRJREFUCNdjwACMAmBKaiGYs2oJmLPKAZ3DabU8AMRTXpUKopislqFyVzCAuUZgikkBZjoAcMYLnp53P/UAAAAASUVORK5CYII=&quot;);"></div><div style="position: absolute; left: 202px; top: 8px; bottom: 28px; width: 20px; margin: 4px; opacity: 0.5; background-repeat: no-repeat; background-position: center center; background-image: url(&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAQBAMAAADQT4M0AAAAIVBMVEUAAAB2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnZ2dnYBuwCcAAAACnRSTlMAfCTkhhvb7cQSPH2JPgAAADZJREFUCNdjQAOMAmBKaiGY8loF5rKswsZlrVo8AUiFrTICcbIWK8A5DF1gDoMymMPApIAwHwCS0Qx/U7qCBQAAAABJRU5ErkJggg==&quot;);"></div><div style="white-space: nowrap; position: relative; text-align: center; width: 210px;"><div style="display: inline-block; width: 6px; height: 6px; margin-left: 4px; margin-right: 3px; border-radius: 3px; cursor: pointer; background: rgb(132, 215, 255); border: 1px solid rgb(181, 182, 183);"></div><div style="display: inline-block; width: 6px; height: 6px; margin-left: 4px; margin-right: 3px; border-radius: 3px; cursor: pointer; background: transparent; border: 1px solid rgb(181, 182, 183);"></div><div style="display: inline-block; width: 6px; height: 6px; margin-left: 4px; margin-right: 3px; border-radius: 3px; cursor: pointer; background: transparent; border: 1px solid rgb(181, 182, 183);"></div><div style="display: inline-block; width: 6px; height: 6px; margin-left: 4px; margin-right: 3px; border-radius: 3px; cursor: pointer; background: transparent; border: 1px solid rgb(181, 182, 183);"></div><div style="display: inline-block; width: 6px; height: 6px; margin-left: 4px; margin-right: 3px; border-radius: 3px; cursor: pointer; background: transparent; border: 1px solid rgb(181, 182, 183);"></div><div style="display: inline-block; width: 6px; height: 6px; margin-left: 4px; margin-right: 3px; border-radius: 3px; cursor: pointer; background: transparent; border: 1px solid rgb(181, 182, 183);"></div></div></div><div class="geFormatSection" style="padding: 6px 0px 6px 14px;"><div style="padding: 3px 0px; white-space: nowrap; overflow: hidden; width: 200px; height: 18px; font-weight: bold;"><input type="checkbox" checked="" style="margin: 1px 6px 0px 0px; vertical-align: top;"><span style="vertical-align: top;">Fill</span><input type="color" style="position: relative; visibility: hidden; top: 10px; width: 0px; height: 0px; border: none;"><button class="geColorBtn" title="Use black and white" style="position: absolute; margin-top: -3px; left: 178px; height: 22px;"><div style="width: 21px; height: 12px; margin: 2px 18px 2px 3px; border-width: 1px; border-style: solid; background-color: light-dark(#ffffff, var(--ge-dark-color, #121212));"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0iTTYgNDJ2LTguNGwxOC44NS0xOC44NS0zLjYtMy42TDIzLjMgOS4xbDQuNiA0LjZMMzUgNi42cS41NS0uNTUgMS4xNzUtLjU1dDEuMTc1LjU1bDQuMDUgNC4wNXEuNTUuNTUuNTUgMS4xNzVUNDEuNCAxM2wtNy4xIDcuMSA0LjYgNC42LTIuMDUgMi4wNS0zLjYtMy42TDE0LjQgNDJabTMtM2g0LjM1TDMxLjEgMjEuMjVsLTQuMzUtNC4zNUw5IDM0LjY1Wm0yMy4xNS0yMSA2LjItNi4yLTIuMTUtMi4xNS02LjIgNi4yWm0wIDBMMzAgMTUuODUgMzIuMTUgMThaIi8+PC9zdmc+" class="geColorDropper geAdaptiveAsset" style="position: relative; right: -20px; top: -1px; width: auto; height: 14px;"></div></button><select style="position: absolute; left: 104px; width: 70px; height: 22px; margin-top: -3px; border-width: 1px; border-style: solid; box-sizing: border-box;"><option value="auto">Auto</option><option value="hatch">Hatch</option><option value="solid">Solid</option><option value="dots">Dots</option><option value="cross-hatch">Cross Hatch</option><option value="dashed">Dashed</option><option value="zigzag-line">ZigZag Line</option></select></div><div style="padding: 3px 0px; white-space: nowrap; overflow: hidden; width: 200px; height: 18px; font-weight: bold;"><input type="checkbox" style="margin: 1px 6px 0px 0px; vertical-align: top;"><span style="vertical-align: top;">Gradient</span><input type="color" style="position: relative; visibility: hidden; top: 10px; width: 0px; height: 0px; border: none;"><button class="geColorBtn" style="position: absolute; margin-top: -3px; left: 178px; height: 22px; display: none;"><div style="width: 21px; height: 12px; margin: 2px 18px 2px 3px; border-width: 1px; border-style: solid; background-color: transparent;"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0iTTYgNDJ2LTguNGwxOC44NS0xOC44NS0zLjYtMy42TDIzLjMgOS4xbDQuNiA0LjZMMzUgNi42cS41NS0uNTUgMS4xNzUtLjU1dDEuMTc1LjU1bDQuMDUgNC4wNXEuNTUuNTUuNTUgMS4xNzVUNDEuNCAxM2wtNy4xIDcuMSA0LjYgNC42LTIuMDUgMi4wNS0zLjYtMy42TDE0LjQgNDJabTMtM2g0LjM1TDMxLjEgMjEuMjVsLTQuMzUtNC4zNUw5IDM0LjY1Wm0yMy4xNS0yMSA2LjItNi4yLTIuMTUtMi4xNS02LjIgNi4yWm0wIDBMMzAgMTUuODUgMzIuMTUgMThaIi8+PC9zdmc+" class="geColorDropper geAdaptiveAsset" style="position: relative; right: -20px; top: -1px; width: auto; height: 14px;"></div></button><select style="position: absolute; left: 104px; width: 70px; height: 22px; margin-top: -3px; border-width: 1px; border-style: solid; box-sizing: border-box; display: none;"><option value="north">North</option><option value="east">East</option><option value="south">South</option><option value="west">West</option><option value="radial">Radial</option></select></div></div><div class="geFormatSection" style="padding: 6px 0px 4px 14px; white-space: normal;"><div style="font-weight: bold;"><div style="padding: 3px 0px; white-space: nowrap; overflow: hidden; width: 200px; height: 18px;"><input type="checkbox" checked="" style="margin: 1px 6px 0px 0px; vertical-align: top;"><span style="vertical-align: top;">Line</span><input type="color" style="position: relative; visibility: hidden; top: 10px; width: 0px; height: 0px; border: none;"><button class="geColorBtn" title="Use black and white" style="position: absolute; margin-top: -3px; left: 178px; height: 22px;"><div style="width: 21px; height: 12px; margin: 2px 18px 2px 3px; border-width: 1px; border-style: solid; background-color: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0iTTYgNDJ2LTguNGwxOC44NS0xOC44NS0zLjYtMy42TDIzLjMgOS4xbDQuNiA0LjZMMzUgNi42cS41NS0uNTUgMS4xNzUtLjU1dDEuMTc1LjU1bDQuMDUgNC4wNXEuNTUuNTUuNTUgMS4xNzVUNDEuNCAxM2wtNy4xIDcuMSA0LjYgNC42LTIuMDUgMi4wNS0zLjYtMy42TDE0LjQgNDJabTMtM2g0LjM1TDMxLjEgMjEuMjVsLTQuMzUtNC4zNUw5IDM0LjY1Wm0yMy4xNS0yMSA2LjItNi4yLTIuMTUtMi4xNS02LjIgNi4yWm0wIDBMMzAgMTUuODUgMzIuMTUgMThaIi8+PC9zdmc+" class="geColorDropper geAdaptiveAsset" style="position: relative; right: -20px; top: -1px; width: auto; height: 14px;"></div></button><select style="position: absolute; height: 22px; margin-top: -3px; text-align: center; box-sizing: border-box; left: 90px; width: 83px; border-width: 1px; border-style: solid; visibility: hidden;"><option value="sharp">Sharp</option><option value="rounded">Rounded</option><option value="curved">Curved</option></select></div></div><div style="font-weight: normal; display: none; white-space: nowrap; position: relative; padding-left: 5px; overflow: hidden; margin-top: 2px; width: 220px;"><a class="geColorBtn" title="Connection" style="display: inline-flex; box-sizing: border-box; width: 64px; height: 22px; border-width: 1px; border-style: solid; margin: 2px 2px 2px 3px;"><div class="geAdaptiveAsset" style="display: inline-block; background-position: center center; text-align: center; flex-grow: 1; opacity: 0.6; background-repeat: no-repeat; background-image: url(&quot;data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIyMHB4IiBoZWlnaHQ9IjIycHgiIHZpZXdCb3g9IjAgMCA0MiAyMCIgdmVyc2lvbj0iMS4xIiBzdHlsZT0iY29sb3Itc2NoZW1lOiBsaWdodCBkYXJrOyI+PHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCwzKSIgc3Ryb2tlLXdpZHRoPSIyIiBkPSJNIDAgOCBMIDI2IDggTCAyNiA0IEwgMzIgOCBMIDI2IDEyIEwgMjYgOCBaIiBzdHJva2U9IiM0MDQwNDAiIGZpbGw9IiM0MDQwNDAiLz48L3N2Zz4=&quot;);"></div><div class="geAdaptiveAsset" style="display: inline-block; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0iTTI0IDMwLjEgMTIuNyAxOC43NWwxLjYtMS42IDkuNyA5LjcgOS43LTkuNyAxLjYgMS42NVoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: -2px 1px; background-size: 18px 18px; opacity: 0.5; height: 100%; width: 14px;"></div></a><a class="geColorBtn" title="Pattern" style="display: inline-flex; box-sizing: border-box; width: 64px; height: 22px; border-width: 1px; border-style: solid; margin: 2px 2px 2px 3px;"><div class="geIcon" style="display: inline-block; background-position-x: 50%; text-align: center; height: 100%; flex-grow: 1; opacity: 0.6; width: 22px;"><div style="width: 30px; height: 10px; border-bottom: 1px solid currentcolor; margin-left: 10px;"></div></div><div class="geAdaptiveAsset" style="display: inline-block; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0iTTI0IDMwLjEgMTIuNyAxOC43NWwxLjYtMS42IDkuNyA5LjcgOS43LTkuNyAxLjYgMS42NVoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: -2px 1px; background-size: 18px 18px; opacity: 0.5; height: 100%; width: 14px;"></div></a><input title="Linewidth" style="position: absolute; text-align: right; margin-top: 2px; width: 52px; height: 22px; left: 146px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; top: 2px; left: 198px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div></div><div style="font-weight: normal; white-space: nowrap; position: relative; padding-left: 5px; overflow: hidden; margin-top: 2px; width: 220px;"><a class="geColorBtn" title="Pattern" style="display: inline-flex; box-sizing: border-box; width: 134px; height: 22px; border-width: 1px; border-style: solid; margin: 2px 2px 2px 3px;"><div class="geIcon" style="display: inline-block; background-position-x: 50%; text-align: center; height: 100%; flex-grow: 1; opacity: 0.6;"><div style="width: 102px; height: 10px; border-bottom: 1px solid currentcolor; margin-left: 10px;"></div></div><div class="geAdaptiveAsset" style="display: inline-block; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0iTTI0IDMwLjEgMTIuNyAxOC43NWwxLjYtMS42IDkuNyA5LjcgOS43LTkuNyAxLjYgMS42NVoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: -2px 1px; background-size: 18px 18px; opacity: 0.5; height: 100%; width: 14px;"></div></a><input title="Linewidth" style="position: absolute; text-align: right; margin-top: 2px; width: 52px; height: 22px; left: 146px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; top: 2px; left: 198px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div></div><div style="font-weight: normal; position: relative; padding-left: 16px; margin-bottom: 2px; margin-top: 6px; border-width: 0px; padding-bottom: 18px;"><div style="position: absolute; margin-left: 3px; margin-bottom: 12px; margin-top: 1px; font-weight: normal; width: 120px;">Perimeter</div><input style="position: absolute; text-align: right; margin-top: -2px; left: 146px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 198px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div></div></div><div class="geFormatSection" style="padding: 12px 0px 8px 14px; display: none;"></div><div class="geFormatSection" style="padding: 8px 0px 10px 14px; font-weight: bold;">Opacity<input style="position: absolute; text-align: right; margin-top: -2px; left: 160px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 212px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div></div><div class="geFormatSection" style="padding: 4px 0px 4px 14px;"><table style="width: 210px; font-weight: bold; table-layout: fixed;"><tbody><tr style="padding: 0px;"><td valign="top" style="padding: 0px; width: 50%;"><div style="display: flex; align-items: center; padding: 3px 0px; height: 18px; width: 100%;"><input type="checkbox" style="margin: 1px 6px 0px 0px; vertical-align: top;"><div title="Rounded" style="display: inline-block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; max-width: 75%; user-select: none;">Rounded</div></div><div style="display: flex; align-items: center; padding: 3px 0px; height: 18px; width: 100%;"><input type="checkbox" style="margin: 1px 6px 0px 0px; vertical-align: top;"><div title="Shadow" style="display: inline-block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; max-width: 75%; user-select: none;">Shadow</div></div></td><td valign="top" style="padding: 0px 0px 0px 8px; width: 50%;"><div style="display: flex; align-items: center; padding: 3px 0px; height: 18px; width: 100%;"><input type="checkbox" style="margin: 1px 6px 0px 0px; vertical-align: top;"><div title="Sketch" style="display: inline-block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; max-width: 75%; user-select: none;">Sketch</div></div></td></tr></tbody></table></div><div class="geFormatSection" style="padding: 8px 0px 8px 14px;"><select style="width: 210px; text-align: center; margin-bottom: 2px;"><option value="edit" title="Edit (F2/Enter)">Edit</option><option value="copyAsText" title="Copy as Text">Copy as Text...</option><option value="editLink" title="Edit Link (Alt+Shift+L)">Edit Link...</option><option value="editData" title="Edit Data (Ctrl+M)">Edit Data...</option><option value="copyData" title="Copy Data (Alt+Shift+B)">Copy Data...</option><option value="editConnectionPoints" title="Edit Connection Points (Alt+Shift+Q)">Edit Connection Points...</option><option value="editGeometry" title="Edit Geometry (Ctrl+Shift+M)">Edit Geometry...</option><option value="editTooltip" title="Edit Tooltip (Alt+Shift+T)">Edit Tooltip...</option><option value="editStyle" title="Edit Style (Ctrl+E)">Edit Style...</option></select><br><button title="Copy Style (Alt+C)" style="margin-bottom: 2px; width: 210px;">Copy Style</button><br><button title="Set as Default Style (Ctrl+Shift+D)" style="margin-bottom: 2px; width: 210px;">Set as Default Style</button><br></div><div class="geFormatSection" style="padding: 0px; position: relative;"><table class="geProperties" style="white-space: nowrap; width: 100%;"><tr class="gePropHeader" style="cursor: pointer;"><th class="gePropHeaderCell" style="padding-left: 16px; background-repeat: no-repeat; background-position: -2px 50%; background-size: 20px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4=&quot;);">Property</th><th class="gePropHeaderCell" style="padding-left: 4px;">Value</th></tr><tr class="gePropRowAlt gePropNonHeaderRow" data-pname="id" data-pvalue="GqrG1Ci3Wa_y-aWqF825-88" style="display: none;"><td class="gePropRowCell" title="ID" colspan="2">ID<input readonly="" title="GqrG1Ci3Wa_y-aWqF825-88" style="border-width: 0px; width: 190px; position: relative; right: 6px; float: right; background: none; text-align: right;"></td><td class="gePropRowCell" title="GqrG1Ci3Wa_y-aWqF825-88"></td></tr><tr class="gePropRow gePropNonHeaderRow" data-pname="arcSize" data-pvalue="20" style="display: none;"><td class="gePropRowCell" title="Arc Size">Arc Size</td><td class="gePropRowCell" title="20">20</td></tr><tr class="gePropRowAlt gePropNonHeaderRow" data-pname="double" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Double">Double</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="fillOpacity" data-pvalue="100" style="display: none;"><td class="gePropRowCell" title="Fill Opacity">Fill Opacity</td><td class="gePropRowCell" title="100">100</td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="strokeOpacity" data-pvalue="100" style="display: none;"><td class="gePropRowCell" title="Stroke Opacity">Stroke Opacity</td><td class="gePropRowCell" title="100">100</td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="overflow" data-pvalue="visible" style="display: none;"><td class="gePropRowCell" title="Text Overflow">Text Overflow</td><td class="gePropRowCell" title="visible">Visible</td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="noLabel" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Hide Label">Hide Label</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="labelPadding" data-pvalue="0" style="display: none;"><td class="gePropRowCell" title="Label Padding">Label Padding</td><td class="gePropRowCell" title="0">0</td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="direction" data-pvalue="east" style="display: none;"><td class="gePropRowCell" title="Direction">Direction</td><td class="gePropRowCell" title="east">East</td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="portConstraint" data-pvalue="none" style="display: none;"><td class="gePropRowCell" title="Constraint">Constraint</td><td class="gePropRowCell" title="none">None</td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="portConstraintRotation" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Rotate Constraint">Rotate Constraint</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="connectable" data-pvalue="true" style="display: none;"><td class="gePropRowCell" title="Connectable">Connectable</td><td class="gePropRowCell" title="true"><input type="checkbox"></td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="allowArrows" data-pvalue="true" style="display: none;"><td class="gePropRowCell" title="Allow Arrows">Allow Arrows</td><td class="gePropRowCell" title="true"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="snapToPoint" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Snap to Point">Snap to Point</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="perimeter" data-pvalue="rhombusPerimeter" style="display: none;"><td class="gePropRowCell" title="Perimeter">Perimeter</td><td class="gePropRowCell" title="rhombusPerimeter">Rhombus</td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="fixDash" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Fixed Dash">Fixed Dash</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="container" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Container">Container</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="dropTarget" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Drop Target">Drop Target</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="collapsible" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Collapsible">Collapsible</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="recursiveResize" data-pvalue="true" style="display: none;"><td class="gePropRowCell" title="Resize Children">Resize Children</td><td class="gePropRowCell" title="true"><input type="checkbox"></td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="expand" data-pvalue="true" style="display: none;"><td class="gePropRowCell" title="Expand">Expand</td><td class="gePropRowCell" title="true"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="editable" data-pvalue="true" style="display: none;"><td class="gePropRowCell" title="Editable">Editable</td><td class="gePropRowCell" title="true"><input type="checkbox"></td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="metaEdit" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Edit Dialog">Edit Dialog</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="backgroundOutline" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Background Outline">Background Outline</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="movable" data-pvalue="true" style="display: none;"><td class="gePropRowCell" title="Movable">Movable</td><td class="gePropRowCell" title="true"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="movableLabel" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Movable Label">Movable Label</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="autosize" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Autosize">Autosize</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="fixedWidth" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Fixed Width">Fixed Width</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="resizable" data-pvalue="true" style="display: none;"><td class="gePropRowCell" title="Resizable">Resizable</td><td class="gePropRowCell" title="true"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="resizeWidth" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Resize Width">Resize Width</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="resizeHeight" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Resize Height">Resize Height</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="rotatable" data-pvalue="true" style="display: none;"><td class="gePropRowCell" title="Rotatable">Rotatable</td><td class="gePropRowCell" title="true"><input type="checkbox"></td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="cloneable" data-pvalue="true" style="display: none;"><td class="gePropRowCell" title="Cloneable">Cloneable</td><td class="gePropRowCell" title="true"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="deletable" data-pvalue="true" style="display: none;"><td class="gePropRowCell" title="Deletable">Deletable</td><td class="gePropRowCell" title="true"><input type="checkbox"></td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="treeFolding" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Tree Folding">Tree Folding</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="treeMoving" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Tree Moving">Tree Moving</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="enumerate" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Enumerate">Enumerate</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="comic" data-pvalue="false" style="display: none;"><td class="gePropRowCell" title="Comic">Comic</td><td class="gePropRowCell" title="false"><input type="checkbox"></td></tr><tr class="gePropRowDarkAlt gePropNonHeaderRow" data-pname="linecap" data-pvalue="null" style="display: none;"><td class="gePropRowCell" title="Line Cap">Line Cap</td><td class="gePropRowCell" title="None">Flat</td></tr><tr class="gePropRowDark gePropNonHeaderRow" data-pname="linejoin" data-pvalue="null" style="display: none;"><td class="gePropRowCell" title="Line Join">Line Join</td><td class="gePropRowCell" title="None">Miter</td></tr></table></div></div><div style="white-space: nowrap; text-align: left; cursor: default; display: none; border-bottom: none;"><div style="padding: 10px 0px 6px 14px; white-space: nowrap; overflow: hidden; width: 200px; font-weight: bold;">Font</div><div class="geToolbarContainer" style="padding: 2px 0px 2px 14px; position: relative; margin-left: -2px; border-width: 0px;"><a class="geColorBtn" title="Font Family" style="display: inline-flex; box-sizing: border-box; width: 211px; height: 22px; border-width: 1px; border-style: solid; margin: 0px; align-items: center; justify-content: center; white-space: nowrap; overflow: hidden; position: relative;">Helvetica<div class="geAdaptiveAsset" style="display: inline-block; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0iTTI0IDMwLjEgMTIuNyAxOC43NWwxLjYtMS42IDkuNyA5LjcgOS43LTkuNyAxLjYgMS42NVoiLz48L3N2Zz4=&quot;); background-repeat: no-repeat; background-position: 50% 1px; background-size: 18px 18px; opacity: 0.6; height: 100%; width: 14px; text-align: center; flex-grow: 1; position: absolute; right: 2px; float: right;"></div></a></div><div class="geToolbarContainer" style="padding: 2px 0px 2px 14px; position: relative; margin-left: -3px; border-width: 0px; height: 31px;"><a class="geButton" title="Bold (Ctrl+B)" style="border-radius: 3px; border: 1px solid rgb(160, 160, 160); padding: 3px 1px 4px 4px; margin: 1px 2px 1px 1px; width: 24px; height: 20px;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjcyLTIwMHYtNTYwaDIyMXE2NSAwIDEyMCA0MHQ1NSAxMTFxMCA1MS0yMyA3OC41VDYwMi00OTFxMjUgMTEgNTUuNSA0MXQzMC41IDkwcTAgODktNjUgMTI0LjVUNTAxLTIwMEgyNzJabTEyMS0xMTJoMTA0cTQ4IDAgNTguNS0yNC41VDU2Ni0zNzJxMC0xMS0xMC41LTM1LjVUNDk0LTQzMkgzOTN2MTIwWm0wLTIyOGg5M3EzMyAwIDQ4LTE3dDE1LTM4cTAtMjQtMTctMzl0LTQ0LTE1aC05NXYxMDlaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton" title="Italic (Ctrl+I)" style="border-radius: 3px; border: 1px solid rgb(160, 160, 160); padding: 3px 1px 4px 4px; margin: 1px 2px 1px 1px; width: 24px; height: 20px;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjAwLTIwMHYtMTAwaDE2MGwxMjAtMzYwSDMyMHYtMTAwaDQwMHYxMDBINTgwTDQ2MC0zMDBoMTQwdjEwMEgyMDBaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton" title="Underline (Ctrl+U)" style="border-radius: 3px; border: 1px solid rgb(160, 160, 160); padding: 3px 1px 4px 4px; margin: 1px 12px 1px 1px; width: 24px; height: 20px;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjAwLTEyMHYtODBoNTYwdjgwSDIwMFptMjgwLTE2MHEtMTAxIDAtMTU3LTYzdC01Ni0xNjd2LTMzMGgxMDN2MzM2cTAgNTYgMjggOTF0ODIgMzVxNTQgMCA4Mi0zNXQyOC05MXYtMzM2aDEwM3YzMzBxMCAxMDQtNTYgMTY3dC0xNTcgNjNaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton" title="Vertical" style="border-radius: 3px; border: 1px solid rgb(160, 160, 160); padding: 3px 1px 4px 4px; margin: 1px 2px 1px 1px; width: 24px; height: 20px;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNNzYwLTE2MGgtODB2LTUyOGwtNDIgNDItNTYtNTYgMTM4LTEzOCAxNDAgMTM4LTU4IDU2LTQyLTQydjUyOFpNNTYwLTI3NiAxMjAtNDQwdi04MGw0NDAtMTY0djc2bC0xMTIgMzh2MTc4bDExMiA0MHY3NlpNMzg0LTQxNHYtMTMybC0xODIgNjR2NGwxODIgNjRaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><input style="position: absolute; border-width: 1px; border-style: solid; text-align: right; margin-top: 4px; left: 161px; width: 53px; height: 23px; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: 4px; left: 214px;"><div style="height: 10px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 10px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div></div><div class="geToolbarContainer" style="padding: 2px 0px 0px 14px; position: relative; margin-left: -3px; border-width: 0px; height: 31px;"><a class="geButton" title="Left" style="border-radius: 3px; border: 1px solid rgb(160, 160, 160); padding: 3px 1px 4px 4px; margin: 1px 2px 1px 1px; width: 24px; height: 20px;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMTIwLTEyMHYtODBoNzIwdjgwSDEyMFptMC0xNjB2LTgwaDQ4MHY4MEgxMjBabTAtMTYwdi04MGg3MjB2ODBIMTIwWm0wLTE2MHYtODBoNDgwdjgwSDEyMFptMC0xNjB2LTgwaDcyMHY4MEgxMjBaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton geActiveItem" title="Center" style="border-radius: 3px; border: 1px solid rgb(160, 160, 160); padding: 3px 1px 4px 4px; margin: 1px 2px 1px 1px; width: 24px; height: 20px;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMTIwLTEyMHYtODBoNzIwdjgwSDEyMFptMTYwLTE2MHYtODBoNDAwdjgwSDI4MFpNMTIwLTQ0MHYtODBoNzIwdjgwSDEyMFptMTYwLTE2MHYtODBoNDAwdjgwSDI4MFpNMTIwLTc2MHYtODBoNzIwdjgwSDEyMFoiLz48L3N2Zz4=&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton" title="Right" style="border-radius: 3px; border: 1px solid rgb(160, 160, 160); padding: 3px 1px 4px 4px; margin: 1px 12px 1px 1px; width: 24px; height: 20px;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMTIwLTc2MHYtODBoNzIwdjgwSDEyMFptMjQwIDE2MHYtODBoNDgwdjgwSDM2MFpNMTIwLTQ0MHYtODBoNzIwdjgwSDEyMFptMjQwIDE2MHYtODBoNDgwdjgwSDM2MFpNMTIwLTEyMHYtODBoNzIwdjgwSDEyMFoiLz48L3N2Zz4=&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton" title="Top" style="border-radius: 3px; border: 1px solid rgb(160, 160, 160); padding: 3px 1px 4px 4px; margin: 1px 2px 1px 1px; width: 24px; height: 20px;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMTYwLTc2MHYtODBoNjQwdjgwSDE2MFptMjgwIDY0MHYtNDA4TDMzNi00MjRsLTU2LTU2IDIwMC0yMDAgMjAwIDIwMC01NiA1Ni0xMDQtMTA0djQwOGgtODBaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton geActiveItem" title="Middle" style="border-radius: 3px; border: 1px solid rgb(160, 160, 160); padding: 3px 1px 4px 4px; margin: 1px 2px 1px 1px; width: 24px; height: 20px;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNNDQwLTgwdi0xNjhsLTY0IDY0LTU2LTU2IDE2MC0xNjAgMTYwIDE2MC01NiA1Ni02NC02NHYxNjhoLTgwWk0xNjAtNDQwdi04MGg2NDB2ODBIMTYwWm0zMjAtMTIwTDMyMC03MjBsNTYtNTYgNjQgNjR2LTE2OGg4MHYxNjhsNjQtNjQgNTYgNTYtMTYwIDE2MFoiLz48L3N2Zz4=&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton" title="Bottom" style="border-radius: 3px; border: 1px solid rgb(160, 160, 160); padding: 3px 1px 4px 4px; margin: 1px 2px 1px 1px; width: 24px; height: 20px;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMTYwLTEyMHYtODBoNjQwdjgwSDE2MFptMzIwLTE2MEwyODAtNDgwbDU2LTU2IDEwNCAxMDR2LTQwOGg4MHY0MDhsMTA0LTEwNCA1NiA1Ni0yMDAgMjAwWiIvPjwvc3ZnPg==&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a></div><div style="padding: 8px 0px 4px 14px; position: relative; margin-left: 0px; border-width: 0px; font-weight: normal;">Position<select style="position: absolute; left: 126px; width: 98px; border-width: 1px; border-style: solid; margin-top: -3px;"><option value="topLeft">Top Left</option><option value="top">Top</option><option value="topRight">Top Right</option><option value="left">Left</option><option value="center">Center</option><option value="right">Right</option><option value="bottomLeft">Bottom Left</option><option value="bottom">Bottom</option><option value="bottomRight">Bottom Right</option></select></div><div style="padding: 4px 0px 4px 14px; position: relative; margin-left: 0px; border-width: 0px; font-weight: normal;">Writing Direction<select style="position: absolute; border-width: 1px; border-style: solid; left: 126px; width: 98px; margin-top: -3px;"><option value="automatic">Automatic</option><option value="leftToRight">Left to right</option><option value="rightToLeft">Right to left</option><option value="vertical-leftToRight">Vertical (Left to right)</option><option value="vertical-rightToLeft">Vertical (Right to left)</option></select></div><div class="geFormatSection" style="padding: 6px 0px 2px 14px; margin-top: 8px; border-width: 1px; border-style: solid;"><div style="padding: 3px 0px; white-space: nowrap; overflow: hidden; width: 200px; height: 18px; font-weight: bold;"><input type="checkbox" checked="" style="margin: 1px 6px 0px 0px; vertical-align: top;"><span style="vertical-align: top;">Font Color</span><input type="color" style="position: relative; visibility: hidden; top: 10px; width: 0px; height: 0px; border: none;"><button class="geColorBtn" title="Use black and white" style="position: absolute; margin-top: -3px; left: 178px; height: 22px;"><div style="width: 21px; height: 12px; margin: 2px 18px 2px 3px; border-width: 1px; border-style: solid; background-color: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0iTTYgNDJ2LTguNGwxOC44NS0xOC44NS0zLjYtMy42TDIzLjMgOS4xbDQuNiA0LjZMMzUgNi42cS41NS0uNTUgMS4xNzUtLjU1dDEuMTc1LjU1bDQuMDUgNC4wNXEuNTUuNTUuNTUgMS4xNzVUNDEuNCAxM2wtNy4xIDcuMSA0LjYgNC42LTIuMDUgMi4wNS0zLjYtMy42TDE0LjQgNDJabTMtM2g0LjM1TDMxLjEgMjEuMjVsLTQuMzUtNC4zNUw5IDM0LjY1Wm0yMy4xNS0yMSA2LjItNi4yLTIuMTUtMi4xNS02LjIgNi4yWm0wIDBMMzAgMTUuODUgMzIuMTUgMThaIi8+PC9zdmc+" class="geColorDropper geAdaptiveAsset" style="position: relative; right: -20px; top: -1px; width: auto; height: 14px;"></div></button></div><div style="padding: 3px 0px; white-space: nowrap; overflow: hidden; width: 200px; height: 18px; font-weight: bold;"><input type="checkbox" style="margin: 1px 6px 0px 0px; vertical-align: top;"><span style="vertical-align: top;">Background Color</span><input type="color" style="position: relative; visibility: hidden; top: 10px; width: 0px; height: 0px; border: none;"><button class="geColorBtn" style="position: absolute; margin-top: -3px; left: 178px; height: 22px; display: none;"><div style="width: 21px; height: 12px; margin: 2px 18px 2px 3px; border-width: 1px; border-style: solid; background-color: transparent;"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0iTTYgNDJ2LTguNGwxOC44NS0xOC44NS0zLjYtMy42TDIzLjMgOS4xbDQuNiA0LjZMMzUgNi42cS41NS0uNTUgMS4xNzUtLjU1dDEuMTc1LjU1bDQuMDUgNC4wNXEuNTUuNTUuNTUgMS4xNzVUNDEuNCAxM2wtNy4xIDcuMSA0LjYgNC42LTIuMDUgMi4wNS0zLjYtMy42TDE0LjQgNDJabTMtM2g0LjM1TDMxLjEgMjEuMjVsLTQuMzUtNC4zNUw5IDM0LjY1Wm0yMy4xNS0yMSA2LjItNi4yLTIuMTUtMi4xNS02LjIgNi4yWm0wIDBMMzAgMTUuODUgMzIuMTUgMThaIi8+PC9zdmc+" class="geColorDropper geAdaptiveAsset" style="position: relative; right: -20px; top: -1px; width: auto; height: 14px;"></div></button></div><div style="padding: 3px 0px; white-space: nowrap; overflow: hidden; width: 200px; height: 18px; font-weight: bold;"><input type="checkbox" style="margin: 1px 6px 0px 0px; vertical-align: top;"><span style="vertical-align: top;">Border Color</span><input type="color" style="position: relative; visibility: hidden; top: 10px; width: 0px; height: 0px; border: none;"><button class="geColorBtn" style="position: absolute; margin-top: -3px; left: 178px; height: 22px; display: none;"><div style="width: 21px; height: 12px; margin: 2px 18px 2px 3px; border-width: 1px; border-style: solid; background-color: transparent;"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0iTTYgNDJ2LTguNGwxOC44NS0xOC44NS0zLjYtMy42TDIzLjMgOS4xbDQuNiA0LjZMMzUgNi42cS41NS0uNTUgMS4xNzUtLjU1dDEuMTc1LjU1bDQuMDUgNC4wNXEuNTUuNTUuNTUgMS4xNzVUNDEuNCAxM2wtNy4xIDcuMSA0LjYgNC42LTIuMDUgMi4wNS0zLjYtMy42TDE0LjQgNDJabTMtM2g0LjM1TDMxLjEgMjEuMjVsLTQuMzUtNC4zNUw5IDM0LjY1Wm0yMy4xNS0yMSA2LjItNi4yLTIuMTUtMi4xNS02LjIgNi4yWm0wIDBMMzAgMTUuODUgMzIuMTUgMThaIi8+PC9zdmc+" class="geColorDropper geAdaptiveAsset" style="position: relative; right: -20px; top: -1px; width: auto; height: 14px;"></div></button></div><div style="display: flex; align-items: center; padding: 3px 0px; height: 18px; width: 100%; font-weight: bold;"><input type="checkbox" style="margin: 1px 6px 0px 0px; vertical-align: top;"><div title="Shadow" style="display: inline-block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; max-width: 75%; user-select: none;">Shadow</div></div></div><div class="geFormatSection" style="padding: 2px 0px 4px 14px;"><div style="display: flex; align-items: center; padding: 3px 0px; height: 18px; font-weight: bold;"><input type="checkbox" checked="" style="margin: 1px 6px 0px 0px; vertical-align: top;"><div title="Word Wrap" style="display: inline-block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; max-width: 75%; user-select: none;">Word Wrap</div></div><div style="display: flex; align-items: center; padding: 3px 0px; height: 18px; font-weight: bold;"><input type="checkbox" checked="" style="margin: 1px 6px 0px 0px; vertical-align: top;"><div title="Formatted Text" style="display: inline-block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; max-width: 75%; user-select: none;">Formatted Text</div></div></div><div class="geFormatSection" style="padding: 10px 0px 12px 14px; font-weight: bold;">Opacity<input style="position: absolute; text-align: right; margin-top: -2px; left: 160px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 212px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div></div><div class="geFormatSection" style="padding: 10px 0px 28px 14px; font-weight: normal;"><div style="position: absolute; width: 70px; margin-top: 0px; font-weight: bold;">Spacing</div><input style="position: absolute; text-align: right; margin-top: -2px; left: 89px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 141px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><input style="position: absolute; text-align: right; margin-top: -2px; left: 160px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 212px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><br><div style="position: absolute; left: 89px; width: 64px; margin-top: 6px; display: flex; justify-content: center;">Top</div><div style="position: absolute; left: 160px; width: 64px; margin-top: 6px; display: flex; justify-content: center;">Global</div><br><br><input style="position: absolute; text-align: right; margin-top: -2px; left: 18px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 70px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><input style="position: absolute; text-align: right; margin-top: -2px; left: 89px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 141px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><input style="position: absolute; text-align: right; margin-top: -2px; left: 160px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 212px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><br><div style="position: absolute; left: 18px; width: 64px; margin-top: 6px; display: flex; justify-content: center;">Left</div><div style="position: absolute; left: 89px; width: 64px; margin-top: 6px; display: flex; justify-content: center;">Bottom</div><div style="position: absolute; left: 160px; width: 64px; margin-top: 6px; display: flex; justify-content: center;">Right</div></div><div class="geFormatSection" style="padding: 8px 0px 6px 14px;"><button title="Clear Formatting" style="margin-bottom: 2px; width: 210px;">Clear Formatting</button><br></div></div><div style="white-space: nowrap; text-align: left; cursor: default; display: none;"><div class="geFormatSection" style="padding: 12px 0px 8px 14px;"><button title="To Front (Ctrl+Shift+F)" style="margin-bottom: 2px; width: 104px; margin-right: 2px;">To Front</button><button title="To Back (Ctrl+Shift+B)" style="margin-bottom: 2px; width: 104px;">To Back</button><br><button title="Bring Forward (Ctrl+Alt+Shift+F)" style="margin-bottom: 2px; width: 104px; margin-right: 2px;">Bring Forward</button><button title="Send Backward (Ctrl+Alt+Shift+B)" style="margin-bottom: 2px; width: 104px;">Send Backward</button><br></div><div class="geFormatSection" style="padding: 12px 0px 8px 14px;"><div style="position: absolute; width: 50px; margin-top: 0px; font-weight: bold;">Size</div><input style="position: absolute; text-align: right; margin-top: -2px; left: 89px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 141px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><input style="position: absolute; text-align: right; margin-top: -2px; left: 160px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 212px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><div class="geAdaptiveAsset" title="Autosize (Ctrl+Shift+Y)" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNNDAtNDB2LTI0MGg4MHYtNDAwSDQwdi0yNDBoMjQwdjgwaDQwMHYtODBoMjQwdjI0MGgtODB2NDAwaDgwdjI0MEg2ODB2LTgwSDI4MHY4MEg0MFptMjQwLTE2MGg0MDB2LTgwaDgwdi00MDBoLTgwdi04MEgyODB2ODBoLTgwdjQwMGg4MHY4MFptMzItMTIwIDEzNi0zNjBoNjRsMTM2IDM2MGgtNjJsLTMyLTkySDQwOGwtMzIgOTJoLTY0Wm0xMTQtMTQ0aDEwOGwtNTItMTUwaC00bC01MiAxNTBaTTEyMC03NjBoODB2LTgwaC04MHY4MFptNjQwIDBoODB2LTgwaC04MHY4MFptMCA2NDBoODB2LTgwaC04MHY4MFptLTY0MCAwaDgwdi04MGgtODB2ODBabTgwLTY0MFptNTYwIDBabTAgNTYwWm0tNTYwIDBaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px 18px; width: 21px; height: 21px; position: relative; cursor: pointer; margin-top: -3px; border: 0px; left: 42px; opacity: 0.5;"></div><div style="position: absolute; left: 89px; width: 64px; margin-top: 6px; display: flex; justify-content: center;">Width</div><div style="position: absolute; left: 160px; width: 64px; margin-top: 6px; display: flex; justify-content: center;">Height</div><br><div style="padding-top: 8px; padding-right: 20px; white-space: nowrap; text-align: right;"><div style="display: flex; align-items: center; padding: 3px 0px; height: 18px; width: 210px;"><input type="checkbox" style="margin: 1px 6px 0px 0px; vertical-align: top;"><div title="Constrain Proportions" style="display: inline-block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; max-width: 75%; user-select: none;">Constrain Proportions</div></div></div></div><div class="geFormatSection" style="padding: 12px 0px 30px 14px;"><div style="position: absolute; width: 70px; margin-top: 0px; font-weight: bold;">Position</div><input style="position: absolute; text-align: right; margin-top: -2px; left: 89px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 141px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><input style="position: absolute; text-align: right; margin-top: -2px; left: 160px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 212px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><br><div style="position: absolute; left: 89px; width: 64px; margin-top: 8px; display: flex; justify-content: center;">Left</div><div style="position: absolute; left: 160px; width: 64px; margin-top: 8px; display: flex; justify-content: center;">Top</div></div><div class="geFormatSection" style="padding: 12px 0px 8px 14px; display: none;"><div style="position: absolute; width: 70px; margin-top: 0px; font-weight: bold;">Width</div><input style="position: absolute; text-align: right; margin-top: -2px; left: 172px; width: 44px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 216px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><br></div><div class="geFormatSection" style="padding: 12px 0px 30px 14px; display: none;"><div style="position: absolute; width: 70px; margin-top: 0px;">Line start</div><input style="position: absolute; text-align: right; margin-top: -2px; left: 89px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 141px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><input style="position: absolute; text-align: right; margin-top: -2px; left: 160px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 212px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><br><div style="position: absolute; left: 89px; width: 64px; margin-top: 6px; display: flex; justify-content: center;">Left</div><div style="position: absolute; left: 160px; width: 64px; margin-top: 6px; display: flex; justify-content: center;">Top</div></div><div class="geFormatSection" style="padding: 12px 0px 30px 14px; display: none;"><div style="position: absolute; width: 70px; margin-top: 0px;">Line end</div><input style="position: absolute; text-align: right; margin-top: -2px; left: 89px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 141px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><input style="position: absolute; text-align: right; margin-top: -2px; left: 160px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 212px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><br><div style="position: absolute; left: 89px; width: 64px; margin-top: 6px; display: flex; justify-content: center;">Left</div><div style="position: absolute; left: 160px; width: 64px; margin-top: 6px; display: flex; justify-content: center;">Top</div></div><div class="geFormatSection" style="padding: 10px 0px 12px 14px;"><div style="position: absolute; width: 70px; margin-top: 0px; font-weight: bold;">Angle</div><input style="position: absolute; text-align: right; margin-top: -2px; left: 160px; width: 52px; height: 21px; border-width: 1px; border-style: solid; box-sizing: border-box;"><div class="geBtnStepper" style="position: absolute; margin-top: -2px; left: 212px;"><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJtMjgwLTQwMCAyMDAtMjAwIDIwMCAyMDBIMjgwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div><div style="height: 9px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); width: 10px;"></div></div><br><button title="Rotate shape only by 90° (Ctrl+R)" style="width: 210px; margin-top: 8px;">Rotate shape only by 90°</button></div><div class="geFormatSection" style="padding: 6px 0px 10px 14px;"><div style="margin-top: 2px; margin-bottom: 8px; font-weight: bold;">Flip</div><button title="Horizontal" style="width: 104px; margin-right: 2px;">Horizontal</button><button title="Vertical" style="width: 104px;">Vertical</button></div><div class="geFormatSection" style="padding: 6px 0px 8px 14px;"><div style="padding: 0px 0px 6px; white-space: nowrap; overflow: hidden; width: 200px; font-weight: bold;">Align</div><div class="geToolbarContainer" style="position: relative; white-space: nowrap; padding-left: 0px; padding-bottom: 2px; border-width: 0px; width: 220px;"></div><button title="Snap to Grid" style="margin-bottom: 2px; width: 210px;">Snap to Grid</button><br></div><div class="geFormatSection" style="padding: 6px 0px 10px 14px; display: none;"><div style="margin-top: 0px; margin-bottom: 6px; font-weight: bold;">Table</div></div><div class="geFormatSection" style="padding: 8px 0px 6px 14px;"><button title="Group (Ctrl+G)" style="margin-bottom: 2px; width: 210px;">Group</button><br><button title="Copy Size (Alt+Shift+F)" style="margin-bottom: 2px; width: 210px;">Copy Size</button><br><select style="width: 210px; text-align: center; margin-bottom: 2px;"><option value="reset" title="Reset">Reset</option><option value="clearWaypoints" title="Waypoints (Alt+Shift+R)">Waypoints</option><option value="clearAnchors" title="Connection Points">Connection Points</option></select><br><button title="Lock/Unlock (Ctrl+L)" style="margin-bottom: 2px; width: 210px;">Lock/Unlock</button><br><button title="Explore" style="margin-bottom: 2px; width: 210px;">Explore</button><br></div></div></div><div class="geFooterContainer" style="left: 0px; right: 0px; bottom: 0px; z-index: 10003; height: 0px; display: none;"><div class="geFooter"></div></div><div class="geDiagramContainer geDiagramBackdrop" style="inset: 103px 240px 36px 212px; touch-action: none; overflow: auto;" tabindex="0"><div class="geBackgroundPage" style="position: absolute; border-width: 1px; overflow: hidden; left: 1433px; top: 778px; width: 2974px; height: 5774px; border-color: light-dark(rgb(255, 255, 255), rgb(18, 18, 18)); border-style: solid; background-color: light-dark(rgb(255, 255, 255), rgb(18, 18, 18)); background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyBzdHlsZT0iY29sb3Itc2NoZW1lOiBsaWdodCBkYXJrOyIgd2lkdGg9IjcwIiBoZWlnaHQ9IjcwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJncmlkIiB3aWR0aD0iNzAiIGhlaWdodD0iNzAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxwYXRoIGQ9Ik0gMCAxNy41IEwgNzAgMTcuNSBNIDE3LjUgMCBMIDE3LjUgNzAgTSAwIDM1IEwgNzAgMzUgTSAzNSAwIEwgMzUgNzAgTSAwIDUyLjUgTCA3MCA1Mi41IE0gNTIuNSAwIEwgNTIuNSA3MCIgZmlsbD0ibm9uZSIgc3R5bGU9InN0cm9rZTpsaWdodC1kYXJrKCNkMGQwZDAsICM0MjQyNDIpOyIgc3Ryb2tlPSIjZDBkMGQwIiBvcGFjaXR5PSIwLjIiIHN0cm9rZS13aWR0aD0iMSIvPjxwYXRoIGQ9Ik0gNzAgMCBMIDAgMCAwIDcwIiBmaWxsPSJub25lIiBzdHlsZT0ic3Ryb2tlOmxpZ2h0LWRhcmsoI2QwZDBkMCwgIzQyNDI0Mik7IiBzdHJva2U9IiNkMGQwZDAiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIvPjwvc3ZnPg==&quot;); background-position: -1px -36px;"></div><svg style="left: 0px; top: 0px; width: 100%; height: 100%; display: block; min-width: 5842px; min-height: 7333px; position: absolute; background-image: none;"><defs><filter id="drawio-drop-shadow"><fegaussianblur in="SourceAlpha" stdDeviation="1.7" result="blur"></fegaussianblur><feoffset in="blur" dx="3" dy="3" result="offsetBlur"></feoffset><feflood flood-color="#3D4574" flood-opacity="0.4" result="offsetColor"></feflood><fecomposite in="offsetColor" in2="offsetBlur" operator="in" result="offsetBlur"></fecomposite><feblend in="SourceGraphic" in2="offsetBlur"></feblend></filter></defs><g><g style=""><g transform="translate(0.5,0.5)" style="visibility: visible;"><path d="M 2921 779 L 2921 6554" fill="none" stroke="white" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(192, 192, 192), rgb(72, 72, 72));" visibility="hidden" stroke-width="9"></path><path d="M 2921 779 L 2921 6554" fill="none" stroke="#c0c0c0" stroke-miterlimit="10" stroke-dasharray="3 3" pointer-events="none" style="stroke: light-dark(rgb(192, 192, 192), rgb(72, 72, 72));"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible;"><path d="M 1433 2704 L 4408 2704" fill="none" stroke="white" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(192, 192, 192), rgb(72, 72, 72));" visibility="hidden" stroke-width="9"></path><path d="M 1433 2704 L 4408 2704" fill="none" stroke="#c0c0c0" stroke-miterlimit="10" stroke-dasharray="3 3" pointer-events="none" style="stroke: light-dark(rgb(192, 192, 192), rgb(72, 72, 72));"></path></g><g transform="translate(0.5,0.5)" style="visibility: visible;"><path d="M 1433 4629 L 4408 4629" fill="none" stroke="white" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(192, 192, 192), rgb(72, 72, 72));" visibility="hidden" stroke-width="9"></path><path d="M 1433 4629 L 4408 4629" fill="none" stroke="#c0c0c0" stroke-miterlimit="10" stroke-dasharray="3 3" pointer-events="none" style="stroke: light-dark(rgb(192, 192, 192), rgb(72, 72, 72));"></path></g></g><g style=""><g style="visibility: visible; cursor: col-resize;"><path d="M 2045.75 2301.25 L 2045.75 2412.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2045.75 2301.25 L 2045.75 2412.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2045.75 2421.79 L 2039.63 2409.54 L 2045.75 2412.61 L 2051.88 2409.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><ellipse cx="2045.75" cy="2231.25" rx="105" ry="70" fill="#ffffff" stroke="#000000" stroke-width="1.75" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></ellipse></g><g style="cursor: move; visibility: visible;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 1275px; margin-left: 1110px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Start</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: row-resize;"><path d="M 2045.8 3123.75 L 2045.8 3193.8 L 1625.8 3193.8 L 1625.8 3235.16" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2045.8 3123.75 L 2045.8 3193.8 L 1625.8 3193.8 L 1625.8 3235.16" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 1625.8 3244.34 L 1619.67 3232.09 L 1625.8 3235.16 L 1631.92 3232.09 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: pointer;"><path d="M 2045.75 3123.75 L 2045.8 3158.8 L 2045.77 3182.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2045.75 3123.75 L 2045.8 3158.8 L 2045.77 3182.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2045.75 3191.79 L 2039.65 3179.53 L 2045.77 3182.61 L 2051.9 3179.55 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><path d="M 1940.75 3123.75 L 1975.75 3018.75 L 2150.75 3018.75 L 2115.75 3123.75 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 1755px; margin-left: 1110px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">button input</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: col-resize;"><path d="M 1625.75 3386.25 L 1625.75 3462.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 1625.75 3386.25 L 1625.75 3462.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 1625.75 3471.79 L 1619.63 3459.54 L 1625.75 3462.61 L 1631.88 3459.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: hidden;"></g><g style="visibility: visible;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 1958px; margin-left: 927px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; background-color: #ffffff; "><div style="display: inline-block; font-size: 11px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; background-color: light-dark(#ffffff, var(--ge-dark-color, #121212)); white-space: nowrap; ">Yes</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: col-resize;"><path d="M 1695.7 3316.3 L 1783.3 3316.3 L 1783.3 3228.8 L 1783.27 3204.89" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 1695.7 3316.3 L 1783.3 3316.3 L 1783.3 3228.8 L 1783.27 3204.89" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 1783.25 3195.71 L 1789.4 3207.95 L 1783.27 3204.89 L 1777.15 3207.97 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: hidden; cursor: move;"></g><g style="visibility: visible; cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 1897px; margin-left: 988px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; background-color: #ffffff; "><div style="display: inline-block; font-size: 11px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; background-color: light-dark(#ffffff, var(--ge-dark-color, #121212)); white-space: nowrap; ">No</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: move;"><path d="M 1625.75 3246.25 L 1695.75 3316.25 L 1625.75 3386.25 L 1555.75 3316.25 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1895px; margin-left: 890px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">if Red_IN btn</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: crosshair;"><path d="M 2045.75 3193.75 L 2273.25 3193.75 L 1993.25 3193.75 L 1993.25 3235.11" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2045.75 3193.75 L 2273.25 3193.75 L 1993.25 3193.75 L 1993.25 3235.11" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 1993.25 3244.29 L 1987.13 3232.04 L 1993.25 3235.11 L 1999.38 3232.04 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: col-resize;"><path d="M 1993.25 3386.25 L 1993.25 3445.11" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 1993.25 3386.25 L 1993.25 3445.11" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 1993.25 3454.29 L 1987.13 3442.04 L 1993.25 3445.11 L 1999.38 3442.04 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: hidden;"></g><g style="visibility: visible;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 1954px; margin-left: 1139px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; background-color: #ffffff; "><div style="display: inline-block; font-size: 11px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; background-color: light-dark(#ffffff, var(--ge-dark-color, #121212)); white-space: nowrap; ">Yes</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: row-resize;"><path d="M 2063.25 3316.25 L 2134.1 3316.3 L 2133.33 3204.89" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2063.25 3316.25 L 2134.1 3316.3 L 2133.33 3204.89" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2133.26 3195.71 L 2139.47 3207.91 L 2133.33 3204.89 L 2127.22 3208 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: hidden; cursor: move;"></g><g style="visibility: visible; cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 1894px; margin-left: 1196px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; background-color: #ffffff; "><div style="display: inline-block; font-size: 11px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; background-color: light-dark(#ffffff, var(--ge-dark-color, #121212)); white-space: nowrap; ">No</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: move;"><path d="M 1993.25 3246.25 L 2063.25 3316.25 L 1993.25 3386.25 L 1923.25 3316.25 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1895px; margin-left: 1100px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">if Amber_IN btn</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: pointer;"><path d="M 2273.25 3193.75 L 2343.25 3193.75 L 2343.25 3252.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2273.25 3193.75 L 2343.25 3193.75 L 2343.25 3252.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2343.25 3261.79 L 2337.13 3249.54 L 2343.25 3252.61 L 2349.38 3249.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: col-resize;"><path d="M 2343.25 3403.75 L 2343.25 3471.36" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2343.25 3403.75 L 2343.25 3471.36" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2343.25 3480.54 L 2337.13 3468.29 L 2343.25 3471.36 L 2349.38 3468.29 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: hidden; cursor: move;"></g><g style="visibility: visible; cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 1952px; margin-left: 1337px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; background-color: #ffffff; "><div style="display: inline-block; font-size: 11px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; background-color: light-dark(#ffffff, var(--ge-dark-color, #121212)); white-space: nowrap; ">Yes</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: col-resize;"><path d="M 2413.2 3333.8 L 2484.1 3333.8 L 2483.32 3204.89" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2413.2 3333.8 L 2484.1 3333.8 L 2483.32 3204.89" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2483.26 3195.71 L 2489.46 3207.92 L 2483.32 3204.89 L 2477.21 3207.99 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: hidden; cursor: move;"></g><g style="visibility: visible; cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 1904px; margin-left: 1404px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; background-color: #ffffff; "><div style="display: inline-block; font-size: 11px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; background-color: light-dark(#ffffff, var(--ge-dark-color, #121212)); white-space: nowrap; ">No</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: move;"><path d="M 2343.25 3263.75 L 2413.25 3333.75 L 2343.25 3403.75 L 2273.25 3333.75 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1905px; margin-left: 1300px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">if Amber LR IN btn</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: crosshair;"><path d="M 2343.25 3193.75 L 2833.25 3193.75 L 2833.25 3235.11" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2343.25 3193.75 L 2833.25 3193.75 L 2833.25 3235.11" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2833.25 3244.29 L 2827.13 3232.04 L 2833.25 3235.11 L 2839.38 3232.04 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: col-resize;"><path d="M 2833.25 3386.25 L 2833.25 3462.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2833.25 3386.25 L 2833.25 3462.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2833.25 3471.79 L 2827.13 3459.54 L 2833.25 3462.61 L 2839.38 3459.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: hidden; cursor: move;"></g><g style="visibility: visible; cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 1950px; margin-left: 1620px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; background-color: #ffffff; "><div style="display: inline-block; font-size: 11px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; background-color: light-dark(#ffffff, var(--ge-dark-color, #121212)); white-space: nowrap; ">Yes</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: col-resize;"><path d="M 2903.25 3316.25 L 3043.3 3316.3 L 3043.3 3193.8 L 2844.39 3193.75" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2903.25 3316.25 L 3043.3 3316.3 L 3043.3 3193.8 L 2844.39 3193.75" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2835.21 3193.75 L 2847.46 3187.63 L 2844.39 3193.75 L 2847.46 3199.88 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: hidden; cursor: move;"></g><g style="visibility: visible; cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 1893px; margin-left: 1706px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; background-color: #ffffff; "><div style="display: inline-block; font-size: 11px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; background-color: light-dark(#ffffff, var(--ge-dark-color, #121212)); white-space: nowrap; ">No</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: move;"><path d="M 2833.25 3246.25 L 2903.25 3316.25 L 2833.25 3386.25 L 2763.25 3316.25 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move; visibility: visible;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1895px; margin-left: 1580px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">if Amber RL IN btn</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: move;"><path d="M 1477 3613.75 L 1512 3473.75 L 1774.5 3473.75 L 1739.5 3613.75 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move; visibility: visible;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 168px; height: 1px; padding-top: 2025px; margin-left: 845px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Red_OUT_pin = SET, Amber_OUTPin &amp;&amp; Amber_LR_pin &amp;&amp; feed_back_pin&nbsp; = RESET</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: move;"><path d="M 1870.75 3648.75 L 1905.75 3456.25 L 2115.75 3456.25 L 2080.75 3648.75 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move; visibility: visible;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 138px; height: 1px; padding-top: 2030px; margin-left: 1070px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Amber_OUT_pin = SET ,Red_OUT_pin &amp;&amp; Amber_LR_pin &amp;&amp; feed_back_pin = RESET</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: col-resize;"><path d="M 2343.3 3622.5 L 2343.3 3657.5 L 2343.3 3648.8 L 2343.3 3672.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2343.3 3622.5 L 2343.3 3657.5 L 2343.3 3648.8 L 2343.3 3672.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2343.3 3681.79 L 2337.18 3669.54 L 2343.3 3672.61 L 2349.43 3669.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><path d="M 2212 3622.5 L 2247 3482.5 L 2474.5 3482.5 L 2439.5 3622.5 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move; visibility: visible;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 148px; height: 1px; padding-top: 2030px; margin-left: 1265px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Amber LR_pin = SET, Red_OUT_pin &amp;&amp; feed_back_pin &amp;&amp;Amber_OUT_pin = RESET</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: row-resize;"><path d="M 2833.3 3578.75 L 2833.3 3622.5 L 2833.26 3655.11" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2833.3 3578.75 L 2833.3 3622.5 L 2833.26 3655.11" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2833.25 3664.29 L 2827.14 3652.04 L 2833.26 3655.11 L 2839.39 3652.05 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><rect x="2728.25" y="3473.75" width="210" height="105" fill="#ffffff" stroke="#000000" stroke-width="1.75" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></rect></g><g style="cursor: move; visibility: visible;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 2015px; margin-left: 1560px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">feed_back_pin = OUTPUT</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: col-resize;"><path d="M 2824.5 3806.25 L 2824.5 3841.3 L 2834.1 3841.3 L 2833.79 3847.62" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2824.5 3806.25 L 2824.5 3841.3 L 2834.1 3841.3 L 2833.79 3847.62" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2833.35 3856.8 L 2827.82 3844.26 L 2833.79 3847.62 L 2840.06 3844.86 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><path d="M 2693.25 3806.25 L 2728.25 3648.75 L 2955.75 3648.75 L 2920.75 3806.25 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move; visibility: visible;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 148px; height: 1px; padding-top: 2130px; margin-left: 1540px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">feed_back_pin = SET ,Red_OUT_pin &amp;&amp; Amber_OUT_pin &amp;&amp; LR_OUT_pin = RESET</div></div></div></foreignobject></g></g><g style="visibility: visible;"><path d="M 2833.25 3928.75 L 2833.25 4005.11" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2833.25 3928.75 L 2833.25 4005.11" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2833.25 4014.29 L 2827.13 4002.04 L 2833.25 4005.11 L 2839.38 4002.04 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><path d="M 2763.25 3858.75 L 2868.25 3858.75 Q 2903.25 3858.75 2903.25 3893.75 Q 2903.25 3928.75 2868.25 3928.75 L 2763.25 3928.75 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move; visibility: visible;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 2225px; margin-left: 1580px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">200us&nbsp;</div></div></div></foreignobject></g></g><g style="visibility: visible;"><path d="M 2833.25 4121.25 L 2833.25 4197.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2833.25 4121.25 L 2833.25 4197.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2833.25 4206.79 L 2827.13 4194.54 L 2833.25 4197.61 L 2839.38 4194.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><path d="M 2728.25 4121.25 L 2763.25 4016.25 L 2938.25 4016.25 L 2903.25 4121.25 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 2325px; margin-left: 1560px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">feed_back_pin = RESET</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: col-resize;"><path d="M 2833.25 4313.75 L 2833.25 4372.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2833.25 4313.75 L 2833.25 4372.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2833.25 4381.79 L 2827.13 4369.54 L 2833.25 4372.61 L 2839.38 4369.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><rect x="2728.25" y="4208.75" width="210" height="105" fill="#ffffff" stroke="#000000" stroke-width="1.75" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></rect></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 2435px; margin-left: 1560px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">feed_back_pin = INPUT</div></div></div></foreignobject></g></g><g style="visibility: visible;"><path d="M 2833.25 4523.75 L 2833.25 4582.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2833.25 4523.75 L 2833.25 4582.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2833.25 4591.79 L 2827.13 4579.54 L 2833.25 4582.61 L 2839.38 4579.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><path d="M 2833.25 4383.75 L 2903.25 4453.75 L 2833.25 4523.75 L 2763.25 4453.75 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move; visibility: visible;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 2545px; margin-left: 1580px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">if RL_OUT_Pin = true</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: col-resize;"><path d="M 2938.25 4646.25 L 3237.5 4646.3 L 3237.5 3421.3 L 2861.89 3421.25" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2938.25 4646.25 L 3237.5 4646.3 L 3237.5 3421.3 L 2861.89 3421.25" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2852.71 3421.25 L 2864.96 3415.13 L 2861.89 3421.25 L 2864.96 3427.38 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><rect x="2728.25" y="4593.75" width="210" height="105" fill="#ffffff" stroke="#000000" stroke-width="1.75" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></rect></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 2655px; margin-left: 1560px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">RL_mode = true</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: pointer;"><path d="M 2343.25 3788.75 L 2343.25 3847.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2343.25 3788.75 L 2343.25 3847.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2343.25 3856.79 L 2337.13 3844.54 L 2343.25 3847.61 L 2349.38 3844.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><path d="M 2238.25 3788.75 L 2273.25 3683.75 L 2448.25 3683.75 L 2413.25 3788.75 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move; visibility: visible;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 2135px; margin-left: 1280px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Amber LR_OUT_pin = SET</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: pointer;"><path d="M 2343.25 4138.75 L 2343.25 4197.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2343.25 4138.75 L 2343.25 4197.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2343.25 4206.79 L 2337.13 4194.54 L 2343.25 4197.61 L 2349.38 4194.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><path d="M 2343.25 3998.75 L 2413.25 4068.75 L 2343.25 4138.75 L 2273.25 4068.75 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 2325px; margin-left: 1300px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">if feed_back_pin = true</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: col-resize;"><path d="M 2448.25 4261.3 L 2570.8 4261.3 L 2570.8 4156.3 L 2572.5 3438.8 L 2354.39 3438.75" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2448.25 4261.3 L 2570.8 4261.3 L 2570.8 4156.3 L 2572.5 3438.8 L 2354.39 3438.75" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2345.21 3438.75 L 2357.46 3432.63 L 2354.39 3438.75 L 2357.46 3444.88 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><rect x="2238.25" y="4208.75" width="210" height="105" fill="#ffffff" stroke="#000000" stroke-width="1.75" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></rect></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 2435px; margin-left: 1280px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">LR_mode = SET</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: col-resize;"><path d="M 2343.25 3928.75 L 2343.25 3987.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2343.25 3928.75 L 2343.25 3987.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2343.25 3996.79 L 2337.13 3984.54 L 2343.25 3987.61 L 2349.38 3984.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><path d="M 2273.25 3858.75 L 2378.25 3858.75 Q 2413.25 3858.75 2413.25 3893.75 Q 2413.25 3928.75 2378.25 3928.75 L 2273.25 3928.75 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 2225px; margin-left: 1300px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">200us&nbsp;</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: col-resize;"><path d="M 2045.75 2528.75 L 2045.75 2622.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2045.75 2528.75 L 2045.75 2622.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2045.75 2631.79 L 2039.63 2619.54 L 2045.75 2622.61 L 2051.88 2619.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><rect x="1940.75" y="2423.75" width="210" height="105" fill="#ffffff" stroke="#000000" stroke-width="1.75" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></rect></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 1415px; margin-left: 1110px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">HAL_init()</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: col-resize;"><path d="M 2045.75 2738.75 L 2045.75 2797.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2045.75 2738.75 L 2045.75 2797.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2045.75 2806.79 L 2039.63 2794.54 L 2045.75 2797.61 L 2051.88 2794.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><rect x="1940.75" y="2633.75" width="210" height="105" fill="#ffffff" stroke="#000000" stroke-width="1.75" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></rect></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 1535px; margin-left: 1110px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Sys_clk_init()</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: move;"><path d="M 2045.75 2913.75 L 2045.75 3007.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 2045.75 2913.75 L 2045.75 3007.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 2045.75 3016.79 L 2039.63 3004.54 L 2045.75 3007.61 L 2051.88 3004.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><rect x="1940.75" y="2808.75" width="210" height="105" fill="#ffffff" stroke="#000000" stroke-width="1.75" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></rect></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 1635px; margin-left: 1110px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">GPIO init()</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: move;"><rect x="1958.25" y="2017.75" width="105" height="52.5" fill="none" stroke="white" pointer-events="stroke" visibility="hidden" stroke-width="9"></rect><rect x="1958.25" y="2017.75" width="105" height="52.5" fill="none" stroke="none" pointer-events="all"></rect></g><g style="visibility: visible; cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 1168px; margin-left: 1149px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: nowrap; ">Master</div></div></div></foreignobject></g></g><g style="visibility: visible;"><rect x="3717" y="2017.75" width="87.5" height="52.5" fill="none" stroke="white" pointer-events="stroke" visibility="hidden" stroke-width="9"></rect><rect x="3717" y="2017.75" width="87.5" height="52.5" fill="none" stroke="none" pointer-events="all"></rect></g><g style="visibility: visible;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 1168px; margin-left: 2149px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: nowrap; ">Slave</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: col-resize;"><path d="M 3760.75 2248.75 L 3760.75 2342.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 3760.75 2248.75 L 3760.75 2342.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 3760.75 2351.79 L 3754.63 2339.54 L 3760.75 2342.61 L 3766.88 2339.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><ellipse cx="3760.75" cy="2178.75" rx="105" ry="70" fill="#ffffff" stroke="#000000" stroke-width="1.75" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></ellipse></g><g style=""><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 1245px; margin-left: 2090px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Start</div></div></div></foreignobject></g></g><g style="visibility: visible;"><path d="M 3760.75 2458.75 L 3760.75 2552.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 3760.75 2458.75 L 3760.75 2552.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 3760.75 2561.79 L 3754.63 2549.54 L 3760.75 2552.61 L 3766.88 2549.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><rect x="3655.75" y="2353.75" width="210" height="105" fill="#ffffff" stroke="#000000" stroke-width="1.75" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></rect></g><g style=""><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 1375px; margin-left: 2090px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">HAL_init();</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: col-resize;"><path d="M 3760.75 2668.75 L 3760.75 2745.11" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 3760.75 2668.75 L 3760.75 2745.11" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 3760.75 2754.29 L 3754.63 2742.04 L 3760.75 2745.11 L 3766.88 2742.04 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><rect x="3655.75" y="2563.75" width="210" height="105" fill="#ffffff" stroke="#000000" stroke-width="1.75" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></rect></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 1495px; margin-left: 2090px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Sys_clk_init();</div></div></div></foreignobject></g></g><g style="visibility: visible;"><path d="M 3760.75 2861.25 L 3760.75 2990.11" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 3760.75 2861.25 L 3760.75 2990.11" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 3760.75 2999.29 L 3754.63 2987.04 L 3760.75 2990.11 L 3766.88 2987.04 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><rect x="3655.75" y="2756.25" width="210" height="105" fill="#ffffff" stroke="#000000" stroke-width="1.75" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></rect></g><g style="cursor: move;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 1605px; margin-left: 2090px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">GPIO_init();</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: row-resize;"><path d="M 3760.75 3106.25 L 3760.8 3237.5 L 3533.3 3237.5 L 3533.25 3357.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 3760.75 3106.25 L 3760.8 3237.5 L 3533.3 3237.5 L 3533.25 3357.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 3533.25 3366.79 L 3527.13 3354.54 L 3533.25 3357.61 L 3539.38 3354.55 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><path d="M 3655.75 3106.25 L 3690.75 3001.25 L 3865.75 3001.25 L 3830.75 3106.25 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="cursor: move; visibility: visible;"><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 1745px; margin-left: 2090px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">master inputs</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: move;"><path d="M 3533.25 3368.75 L 3603.25 3438.75 L 3533.25 3508.75 L 3463.25 3438.75 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style=""><g transform="scale(1.75)"><foreignobject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%"><div style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 78px; height: 1px; padding-top: 1965px; margin-left: 1980px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: &quot;Helvetica&quot;; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">if&nbsp;</div></div></div></foreignobject></g></g><g style="visibility: visible; cursor: move;"><path d="M 3743.25 3368.75 L 3813.25 3438.75 L 3743.25 3508.75 L 3673.25 3438.75 Z" fill="#ffffff" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(#ffffff, var(--ge-dark-color, #121212)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g><g style="visibility: visible; cursor: move;"><path d="M 3760.75 3228.75 L 3760.75 3263.75 L 3743.25 3263.75 L 3743.25 3357.61" fill="none" stroke="white" stroke-width="9.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden"></path><path d="M 3760.75 3228.75 L 3760.75 3263.75 L 3743.25 3263.75 L 3743.25 3357.61" fill="none" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 3743.25 3366.79 L 3737.13 3354.54 L 3743.25 3357.61 L 3749.38 3354.54 Z" fill="#000000" stroke="#000000" stroke-width="1.75" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g></g><g style=""><g transform="translate(0.5,0.5)" style="cursor: move; visibility: visible; display: inline;"><rect x="3463" y="3369" width="140" height="140" fill="none" stroke="#00a8ff" stroke-dasharray="3 3" pointer-events="none" style="stroke: light-dark(rgb(0, 168, 255), rgb(0, 143, 218));"></rect></g><g style="cursor: nw-resize;"><image x="3454" y="3360" width="18" height="18" xlink:href="data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjE4cHgiIHZlcnNpb249IjEuMSIgc3R5bGU9ImNvbG9yLXNjaGVtZTogbGlnaHQgZGFyazsiPjxjaXJjbGUgY3g9IjkiIGN5PSI5IiByPSI1IiBzdHJva2U9IiNmZmYiIGZpbGw9IiMyOWI2ZjIiLz48L3N2Zz4=" preserveAspectRatio="none"></image></g><g style="cursor: n-resize;"><image x="3524" y="3360" width="18" height="18" xlink:href="data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjE4cHgiIHZlcnNpb249IjEuMSIgc3R5bGU9ImNvbG9yLXNjaGVtZTogbGlnaHQgZGFyazsiPjxjaXJjbGUgY3g9IjkiIGN5PSI5IiByPSI1IiBzdHJva2U9IiNmZmYiIGZpbGw9IiMyOWI2ZjIiLz48L3N2Zz4=" preserveAspectRatio="none"></image></g><g style="cursor: ne-resize;"><image x="3594" y="3360" width="18" height="18" xlink:href="data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjE4cHgiIHZlcnNpb249IjEuMSIgc3R5bGU9ImNvbG9yLXNjaGVtZTogbGlnaHQgZGFyazsiPjxjaXJjbGUgY3g9IjkiIGN5PSI5IiByPSI1IiBzdHJva2U9IiNmZmYiIGZpbGw9IiMyOWI2ZjIiLz48L3N2Zz4=" preserveAspectRatio="none"></image></g><g style="cursor: w-resize;"><image x="3454" y="3430" width="18" height="18" xlink:href="data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjE4cHgiIHZlcnNpb249IjEuMSIgc3R5bGU9ImNvbG9yLXNjaGVtZTogbGlnaHQgZGFyazsiPjxjaXJjbGUgY3g9IjkiIGN5PSI5IiByPSI1IiBzdHJva2U9IiNmZmYiIGZpbGw9IiMyOWI2ZjIiLz48L3N2Zz4=" preserveAspectRatio="none"></image></g><g style="cursor: e-resize;"><image x="3594" y="3430" width="18" height="18" xlink:href="data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjE4cHgiIHZlcnNpb249IjEuMSIgc3R5bGU9ImNvbG9yLXNjaGVtZTogbGlnaHQgZGFyazsiPjxjaXJjbGUgY3g9IjkiIGN5PSI5IiByPSI1IiBzdHJva2U9IiNmZmYiIGZpbGw9IiMyOWI2ZjIiLz48L3N2Zz4=" preserveAspectRatio="none"></image></g><g style="cursor: sw-resize;"><image x="3454" y="3500" width="18" height="18" xlink:href="data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjE4cHgiIHZlcnNpb249IjEuMSIgc3R5bGU9ImNvbG9yLXNjaGVtZTogbGlnaHQgZGFyazsiPjxjaXJjbGUgY3g9IjkiIGN5PSI5IiByPSI1IiBzdHJva2U9IiNmZmYiIGZpbGw9IiMyOWI2ZjIiLz48L3N2Zz4=" preserveAspectRatio="none"></image></g><g style="cursor: s-resize;"><image x="3524" y="3500" width="18" height="18" xlink:href="data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjE4cHgiIHZlcnNpb249IjEuMSIgc3R5bGU9ImNvbG9yLXNjaGVtZTogbGlnaHQgZGFyazsiPjxjaXJjbGUgY3g9IjkiIGN5PSI5IiByPSI1IiBzdHJva2U9IiNmZmYiIGZpbGw9IiMyOWI2ZjIiLz48L3N2Zz4=" preserveAspectRatio="none"></image></g><g style="cursor: se-resize;"><image x="3594" y="3500" width="18" height="18" xlink:href="data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjE4cHgiIHZlcnNpb249IjEuMSIgc3R5bGU9ImNvbG9yLXNjaGVtZTogbGlnaHQgZGFyazsiPjxjaXJjbGUgY3g9IjkiIGN5PSI5IiByPSI1IiBzdHJva2U9IiNmZmYiIGZpbGw9IiMyOWI2ZjIiLz48L3N2Zz4=" preserveAspectRatio="none"></image></g><g title="Click and drag to rotate, click to turn shape only by 90 degrees" style="cursor: crosshair;"><image x="3607" y="3349" width="16" height="16" xlink:href="data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiBzdHlsZT0iY29sb3Itc2NoZW1lOiBsaWdodCBkYXJrOyI+PHBhdGggc3Ryb2tlPSIjMjliNmYyIiBmaWxsPSIjMjliNmYyIiBkPSJNMTUuNTUgNS41NUwxMSAxdjMuMDdDNy4wNiA0LjU2IDQgNy45MiA0IDEyczMuMDUgNy40NCA3IDcuOTN2LTIuMDJjLTIuODQtLjQ4LTUtMi45NC01LTUuOTFzMi4xNi01LjQzIDUtNS45MVYxMGw0LjU1LTQuNDV6TTE5LjkzIDExYy0uMTctMS4zOS0uNzItMi43My0xLjYyLTMuODlsLTEuNDIgMS40MmMuNTQuNzUuODggMS42IDEuMDIgMi40N2gyLjAyek0xMyAxNy45djIuMDJjMS4zOS0uMTcgMi43NC0uNzEgMy45LTEuNjFsLTEuNDQtMS40NGMtLjc1LjU0LTEuNTkuODktMi40NiAxLjAzem0zLjg5LTIuNDJsMS40MiAxLjQxYy45LTEuMTYgMS40NS0yLjUgMS42Mi0zLjg5aC0yLjAyYy0uMTQuODctLjQ4IDEuNzItMS4wMiAyLjQ4eiIvPjwvc3ZnPg==" preserveAspectRatio="none"></image></g></g><g style=""></g></g></svg></div><div class="geTabContainer geTabItem" style="left: 212px; bottom: 0px; right: 240px; height: 36px;"><div class="geTab geControlTab" title="Pages" style="width: 30px;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMThweCIgdmlld0JveD0iMCAwIDI0IDI0IiB3aWR0aD0iMThweCIgZmlsbD0iIzAwMDAwMCI+PHBhdGggZD0iTTAgMGgyNHYyNEgwVjB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTEyIDhjMS4xIDAgMi0uOSAyLTJzLS45LTItMi0yLTIgLjktMiAyIC45IDIgMiAyem0wIDJjLTEuMSAwLTIgLjktMiAycy45IDIgMiAyIDItLjkgMi0yLS45LTItMi0yem0wIDZjLTEuMSAwLTIgLjktMiAycy45IDIgMiAyIDItLjkgMi0yLS45LTItMi0yeiIvPjwvc3ZnPg==&quot;); background-repeat: no-repeat; background-position: center center; background-size: 24px; position: relative; width: 100%; height: 100%;"></div></div><div class="geTabScroller"><div class="geTab gePageTab geActivePage" title="Page-1 (wZOZU7R4Sa3UPlFonY0U) [1]" draggable="true"><span style="max-width: 160px; text-overflow: ellipsis; overflow: hidden;">Page-1</span><div class="geTabMenuButton" style="background-image: url(&quot;data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxNHB4IiBoZWlnaHQ9IjEwcHgiIHZlcnNpb249IjEuMSIgc3R5bGU9ImNvbG9yLXNjaGVtZTogbGlnaHQgZGFyazsiPjxwYXRoIGQ9Ik0gMyA3IEwgNyAzIEwgMTEgNyIgc3Ryb2tlPSIjNzA3MDcwIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiLz48L3N2Zz4=&quot;); background-position: center center; background-repeat: no-repeat; background-size: 10px;"></div></div></div><div class="geTab geControlTab" title="Insert Page" style="width: 30px;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTkgMTNoLTZ2NmgtMnYtNkg1di0yaDZWNWgydjZoNnYyeiIvPjwvc3ZnPg==&quot;); background-repeat: no-repeat; background-position: center center; background-size: 24px; position: relative; width: 100%; height: 100%;"></div></div><div class="geTab geControlTab" style="width: 30px; display: none; transition: 0.2s linear;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0iTTI4LjA1IDM1LjMgMTYuNyAyMy45NSAyOC4wNSAxMi42bDEuNiAxLjY1LTkuNyA5LjcgOS43IDkuNzVaIi8+PC9zdmc+&quot;); background-repeat: no-repeat; background-position: center center; background-size: 24px; position: relative; width: 100%; height: 100%;"></div></div><div class="geTab geControlTab" style="width: 30px; display: none; transition: 0.2s linear;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0ibTE4Ljc1IDM1LjMtMS42LTEuNiA5LjctOS43NS05LjctOS43IDEuNi0xLjY1TDMwLjEgMjMuOTVaIi8+PC9zdmc+&quot;); background-repeat: no-repeat; background-position: center center; background-size: 24px; position: relative; width: 100%; height: 100%;"></div></div></div><div class="geToolbarContainer" style="left: 0px; right: 0px; top: 64px; height: 38px;"><div class="geToolbar" style="padding-left: 16px;"><a class="geLabel" title="View (Space+Drag to pan)" style="display: flex; align-items: center; white-space: nowrap; overflow: hidden; position: relative; box-sizing: border-box; width: 38px; opacity: 1; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-position: right -4px top 50%; background-repeat: no-repeat;"><div class="geToolbarButton geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjAwLTEyMHEtMzMgMC01Ni41LTIzLjVUMTIwLTIwMHYtNTYwcTAtMzMgMjMuNS01Ni41VDIwMC04NDBoNTYwcTMzIDAgNTYuNSAyMy41VDg0MC03NjB2NTYwcTAgMzMtMjMuNSA1Ni41VDc2MC0xMjBIMjAwWm0xMjAtODB2LTU2MEgyMDB2NTYwaDEyMFptODAgMGgzNjB2LTU2MEg0MDB2NTYwWm0tODAgMEgyMDBoMTIwWiIvPjwvc3ZnPg==&quot;); background-position: left center; background-repeat: no-repeat; background-size: 18px;"></div></a><div class="geSeparator"></div><a class="geLabel" title="Zoom (Alt+Mousewheel)" style="white-space: nowrap; position: relative; overflow: hidden; width: 54px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-position: right -4px top 50%; background-repeat: no-repeat;">175%</a><div class="geSeparator"></div><a class="geButton" title="Zoom In (Ctrl + / Alt+Mousewheel)"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNNzg0LTEyMCA1MzItMzcycS0zMCAyNC02OSAzOHQtODMgMTRxLTEwOSAwLTE4NC41LTc1LjVUMTIwLTU4MHEwLTEwOSA3NS41LTE4NC41VDM4MC04NDBxMTA5IDAgMTg0LjUgNzUuNVQ2NDAtNTgwcTAgNDQtMTQgODN0LTM4IDY5bDI1MiAyNTItNTYgNTZaTTM4MC00MDBxNzUgMCAxMjcuNS01Mi41VDU2MC01ODBxMC03NS01Mi41LTEyNy41VDM4MC03NjBxLTc1IDAtMTI3LjUgNTIuNVQyMDAtNTgwcTAgNzUgNTIuNSAxMjcuNVQzODAtNDAwWm0tNDAtNjB2LTgwaC04MHYtODBoODB2LTgwaDgwdjgwaDgwdjgwaC04MHY4MGgtODBaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton" title="Zoom Out (Ctrl - / Alt+Mousewheel)"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNNzg0LTEyMCA1MzItMzcycS0zMCAyNC02OSAzOHQtODMgMTRxLTEwOSAwLTE4NC41LTc1LjVUMTIwLTU4MHEwLTEwOSA3NS41LTE4NC41VDM4MC04NDBxMTA5IDAgMTg0LjUgNzUuNVQ2NDAtNTgwcTAgNDQtMTQgODN0LTM4IDY5bDI1MiAyNTItNTYgNTZaTTM4MC00MDBxNzUgMCAxMjcuNS01Mi41VDU2MC01ODBxMC03NS01Mi41LTEyNy41VDM4MC03NjBxLTc1IDAtMTI3LjUgNTIuNVQyMDAtNTgwcTAgNzUgNTIuNSAxMjcuNVQzODAtNDAwWk0yODAtNTQwdi04MGgyMDB2ODBIMjgwWiIvPjwvc3ZnPg==&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><div class="geSeparator"></div><a class="geButton" title="Undo (Ctrl+Z)"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjgwLTIwMHYtODBoMjg0cTYzIDAgMTA5LjUtNDBUNzIwLTQyMHEwLTYwLTQ2LjUtMTAwVDU2NC01NjBIMzEybDEwNCAxMDQtNTYgNTYtMjAwLTIwMCAyMDAtMjAwIDU2IDU2LTEwNCAxMDRoMjUycTk3IDAgMTY2LjUgNjNUODAwLTQyMHEwIDk0LTY5LjUgMTU3VDU2NC0yMDBIMjgwWiIvPjwvc3ZnPg==&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton mxDisabled" title="Redo (Ctrl+Y)"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMzk2LTIwMHEtOTcgMC0xNjYuNS02M1QxNjAtNDIwcTAtOTQgNjkuNS0xNTdUMzk2LTY0MGgyNTJMNTQ0LTc0NGw1Ni01NiAyMDAgMjAwLTIwMCAyMDAtNTYtNTYgMTA0LTEwNEgzOTZxLTYzIDAtMTA5LjUgNDBUMjQwLTQyMHEwIDYwIDQ2LjUgMTAwVDM5Ni0yODBoMjg0djgwSDM5NloiLz48L3N2Zz4=&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><div class="geSeparator"></div><a class="geButton" title="Delete (Delete)"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjgwLTEyMHEtMzMgMC01Ni41LTIzLjVUMjAwLTIwMHYtNTIwaC00MHYtODBoMjAwdi00MGgyNDB2NDBoMjAwdjgwaC00MHY1MjBxMCAzMy0yMy41IDU2LjVUNjgwLTEyMEgyODBabTQwMC02MDBIMjgwdjUyMGg0MDB2LTUyMFpNMzYwLTI4MGg4MHYtMzYwaC04MHYzNjBabTE2MCAwaDgwdi0zNjBoLTgwdjM2MFpNMjgwLTcyMHY1MjAtNTIwWiIvPjwvc3ZnPg==&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><div class="geSeparator"></div><a class="geButton" title="To Front (Ctrl+Shift+F)"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMzYwLTI4MHEtMzMgMC01Ni41LTIzLjVUMjgwLTM2MHYtNDAwcTAtMzMgMjMuNS01Ni41VDM2MC04NDBoNDAwcTMzIDAgNTYuNSAyMy41VDg0MC03NjB2NDAwcTAgMzMtMjMuNSA1Ni41VDc2MC0yODBIMzYwWm0wLTgwaDQwMHYtNDAwSDM2MHY0MDBaTTIwMC0yMDB2ODBxLTMzIDAtNTYuNS0yMy41VDEyMC0yMDBoODBabS04MC04MHYtODBoODB2ODBoLTgwWm0wLTE2MHYtODBoODB2ODBoLTgwWm0wLTE2MHYtODBoODB2ODBoLTgwWm0xNjAgNDgwdi04MGg4MHY4MGgtODBabTE2MCAwdi04MGg4MHY4MGgtODBabTE2MCAwdi04MGg4MHY4MGgtODBaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton" title="To Back (Ctrl+Shift+B)"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjAwLTEyMHEtMzMgMC01Ni41LTIzLjVUMTIwLTIwMHYtNDgwaDgwdjQ4MGg0ODB2ODBIMjAwWm0xNjAtMjQwdjgwcS0zMyAwLTU2LjUtMjMuNVQyODAtMzYwaDgwWm0tODAtODB2LTgwaDgwdjgwaC04MFptMC0xNjB2LTgwaDgwdjgwaC04MFptODAtMTYwaC04MHEwLTMzIDIzLjUtNTYuNVQzNjAtODQwdjgwWm04MCA0ODB2LTgwaDgwdjgwaC04MFptMC00ODB2LTgwaDgwdjgwaC04MFptMTYwIDB2LTgwaDgwdjgwaC04MFptMCA0ODB2LTgwaDgwdjgwaC04MFptMTYwLTQ4MHYtODBxMzMgMCA1Ni41IDIzLjVUODQwLTc2MGgtODBabTAgNDAwaDgwcTAgMzMtMjMuNSA1Ni41VDc2MC0yODB2LTgwWm0wLTgwdi04MGg4MHY4MGgtODBabTAtMTYwdi04MGg4MHY4MGgtODBaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><div class="geSeparator"></div><a class="geButton" title="Fill Color..."><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJtMjQ3LTkwNCA1Ny01NiAzNDMgMzQzcTIzIDIzIDIzIDU3dC0yMyA1N0w0NTctMzEzcS0yMyAyMy01NyAyM3QtNTctMjNMMTUzLTUwM3EtMjMtMjMtMjMtNTd0MjMtNTdsMTkwLTE5MS05Ni05NlptMTUzIDE1M0wyMDktNTYwaDM4Mkw0MDAtNzUxWm0zNjAgNDcxcS0zMyAwLTU2LjUtMjMuNVQ2ODAtMzYwcTAtMjEgMTIuNS00NXQyNy41LTQ1cTktMTIgMTktMjV0MjEtMjVxMTEgMTIgMjEgMjV0MTkgMjVxMTUgMjEgMjcuNSA0NXQxMi41IDQ1cTAgMzMtMjMuNSA1Ni41VDc2MC0yODBaTTgwIDB2LTE2MGg4MDBWMEg4MFoiLz48L3N2Zz4=&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton" title="Line Color..."><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNODAgMHYtMTYwaDgwMFYwSDgwWm0xNjAtMzIwaDU2bDMxMi0zMTEtMjktMjktMjgtMjgtMzExIDMxMnY1NlptLTgwIDgwdi0xNzBsNDQ4LTQ0N3ExMS0xMSAyNS41LTE3dDMwLjUtNnExNiAwIDMxIDZ0MjcgMThsNTUgNTZxMTIgMTEgMTcuNSAyNnQ1LjUgMzFxMCAxNS01LjUgMjkuNVQ3NzctNjg3TDMzMC0yNDBIMTYwWm01NjAtNTA0LTU2LTU2IDU2IDU2Wk02MDgtNjMxbC0yOS0yOS0yOC0yOCA1NyA1N1oiLz48L3N2Zz4=&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><a class="geButton" title="Shadow"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMTYwLTgwcS0zMyAwLTU2LjUtMjMuNVQ4MC0xNjB2LTQ4MHEwLTMzIDIzLjUtNTYuNVQxNjAtNzIwaDgwdi04MHEwLTMzIDIzLjUtNTYuNVQzMjAtODgwaDQ4MHEzMyAwIDU2LjUgMjMuNVQ4ODAtODAwdjQ4MHEwIDMzLTIzLjUgNTYuNVQ4MDAtMjQwaC04MHY4MHEwIDMzLTIzLjUgNTYuNVQ2NDAtODBIMTYwWm0xNjAtMjQwaDQ4MHYtNDgwSDMyMHY0ODBaIi8+PC9zdmc+&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a><div class="geSeparator"></div><a class="geButton" title="Connection" style="display: flex; align-items: center; white-space: nowrap; overflow: hidden; position: relative; box-sizing: border-box; width: 38px; opacity: 1; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-position: right -4px top 50%; background-repeat: no-repeat;"><div class="geAdaptiveAsset" style="background-position: left center; background-repeat: no-repeat; height: 100%; width: 100%; background-image: url(&quot;data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIyMHB4IiBoZWlnaHQ9IjIycHgiIHZpZXdCb3g9IjAgMCA0MiAyMCIgdmVyc2lvbj0iMS4xIiBzdHlsZT0iY29sb3Itc2NoZW1lOiBsaWdodCBkYXJrOyI+PHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCwzKSIgc3Ryb2tlLXdpZHRoPSIyIiBkPSJNIDAgOCBMIDI2IDggTCAyNiA0IEwgMzIgOCBMIDI2IDEyIEwgMjYgOCBaIiBzdHJva2U9IiM0MDQwNDAiIGZpbGw9IiM0MDQwNDAiLz48L3N2Zz4=&quot;);"></div></a><a class="geButton" title="Waypoints" style="display: flex; align-items: center; white-space: nowrap; overflow: hidden; position: relative; box-sizing: border-box; width: 38px; opacity: 1; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-position: right -4px top 50%; background-repeat: no-repeat;"><div class="geAdaptiveAsset" style="background-position: left center; background-repeat: no-repeat; height: 100%; width: 100%; background-image: url(&quot;data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE4cHgiIHZpZXdCb3g9IjAgMCAzNiAzNiIgdmVyc2lvbj0iMS4xIiBzdHlsZT0iY29sb3Itc2NoZW1lOiBsaWdodCBkYXJrOyI+PHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMyw0KSIgc3Ryb2tlLXdpZHRoPSIyIiBkPSJNIDAgMjYgTCA0IDI2IEwgNCAzMCBMIDAgMzAgWiBNIDIgMjYgTCAyIDE0IEwgMjggMTQgTCAyOCA0IE0gMjYgMCBMIDMwIDAgTCAzMCA0IEwgMjYgNCBaIiBzdHJva2U9IiM0MDQwNDAiIGZpbGw9Im5vbmUiLz48L3N2Zz4=&quot;);"></div></a><div class="geSeparator"></div><a class="geLabel" title="Insert (Doubleclick to insert text)" style="display: flex; align-items: center; white-space: nowrap; overflow: hidden; position: relative; box-sizing: border-box; width: 38px; opacity: 1; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-position: right -4px top 50%; background-repeat: no-repeat;"><div class="geToolbarButton geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTkgMTNoLTZ2NmgtMnYtNkg1di0yaDZWNWgydjZoNnYyeiIvPjwvc3ZnPg==&quot;); background-position: left center; background-repeat: no-repeat; background-size: 18px;"></div></a><div class="geSeparator"></div><a class="geButton" title="Table" style="position: relative; white-space: nowrap; overflow: hidden; width: 36px; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg==&quot;); background-position: right -4px top 50%; background-repeat: no-repeat;"><div class="geAdaptiveAsset" style="background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjAwLTEyMHEtMzMgMC01Ni41LTIzLjVUMTIwLTIwMHYtNTYwcTAtMzMgMjMuNS01Ni41VDIwMC04NDBoNTYwcTMzIDAgNTYuNSAyMy41VDg0MC03NjB2NTYwcTAgMzMtMjMuNSA1Ni41VDc2MC0xMjBIMjAwWm0yNDAtMjQwSDIwMHYxNjBoMjQwdi0xNjBabTgwIDB2MTYwaDI0MHYtMTYwSDUyMFptLTgwLTgwdi0xNjBIMjAwdjE2MGgyNDBabTgwIDBoMjQwdi0xNjBINTIwdjE2MFpNMjAwLTY4MGg1NjB2LTgwSDIwMHY4MFoiLz48L3N2Zz4=&quot;); background-position: center center; background-repeat: no-repeat; background-size: 18px; width: 22px; height: 20px;"></div></a></div><a title="Format (Ctrl+Shift+P)" class="geButton geAdaptiveAsset" style="position: absolute; display: inline-block; right: 30px; padding: 2px; font-size: 14px; width: 16px; height: 16px; background-position: 50% 50%; background-size: 16px 16px; background-repeat: no-repeat; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMzAwLTY0MHYzMjBsMTYwLTE2MC0xNjAtMTYwWk0yMDAtMTIwcS0zMyAwLTU2LjUtMjMuNVQxMjAtMjAwdi01NjBxMC0zMyAyMy41LTU2LjVUMjAwLTg0MGg1NjBxMzMgMCA1Ni41IDIzLjVUODQwLTc2MHY1NjBxMCAzMy0yMy41IDU2LjVUNzYwLTEyMEgyMDBabTQ0MC04MGgxMjB2LTU2MEg2NDB2NTYwWm0tODAgMHYtNTYwSDIwMHY1NjBoMzYwWm04MCAwaDEyMC0xMjBaIi8+PC9zdmc+&quot;);"></a><a title="Fullscreen" class="geButton geAdaptiveAsset" style="position: absolute; display: inline-block; right: 50px; padding: 2px; font-size: 14px; width: 16px; height: 16px; background-position: 50% 50%; background-size: 16px 16px; background-repeat: no-repeat; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMTIwLTEyMHYtMjAwaDgwdjEyMGgxMjB2ODBIMTIwWm01MjAgMHYtODBoMTIwdi0xMjBoODB2MjAwSDY0MFpNMTIwLTY0MHYtMjAwaDIwMHY4MEgyMDB2MTIwaC04MFptNjQwIDB2LTEyMEg2NDB2LTgwaDIwMHYyMDBoLTgwWiIvPjwvc3ZnPg==&quot;);"></a><a title="Collapse/Expand" class="geButton geAdaptiveAsset" style="position: absolute; display: inline-block; width: 16px; height: 16px; color: rgb(102, 102, 102); right: 10px; padding: 2px; font-size: 14px; text-decoration: none; background-image: url(&quot;data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJtMjk2LTIyNC01Ni01NiAyNDAtMjQwIDI0MCAyNDAtNTYgNTYtMTg0LTE4My0xODQgMTgzWm0wLTI0MC01Ni01NiAyNDAtMjQwIDI0MCAyNDAtNTYgNTYtMTg0LTE4My0xODQgMTgzWiIvPjwvc3ZnPg==&quot;); background-position: 50% 50%; background-repeat: no-repeat; background-size: 16px 16px;"></a></div><div class="geHsplit" style="width: 12px; z-index: 1; touch-action: none; top: 103px; left: 212px; bottom: 37px;"></div><iframe src="./reykor.drawio - draw.io_files/saved_resource.html" style="display: none;"></iframe><div class="geSidebarTooltip" style="user-select: none; z-index: 10005; touch-action: none; display: none; overflow: visible; width: 106px; height: 153px; position: absolute; left: 215px; top: 493px;"><svg style="left: 0px; top: 0px; width: 100%; height: 100%; display: block; min-width: 75px; min-height: 75px; overflow: visible;"><g transform="translate(9,7)"><g></g><g><g transform="translate(0.5,0.5)" style="visibility: visible;"><path d="M 16 66 L 61.5 20.5" fill="none" stroke="white" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));" visibility="hidden" stroke-width="9"></path><path d="M 16 66 L 61.5 20.5" fill="none" stroke="#000000" stroke-miterlimit="10" pointer-events="stroke" style="stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path><path d="M 65.21 16.79 L 62.73 24.22 L 61.5 20.5 L 57.78 19.27 Z" fill="#000000" stroke="#000000" stroke-miterlimit="10" pointer-events="all" style="fill: light-dark(rgb(0, 0, 0), rgb(255, 255, 255)); stroke: light-dark(rgb(0, 0, 0), rgb(255, 255, 255));"></path></g></g><g></g><g></g></g></svg><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJAQMAAADaX5RTAAAABlBMVEV7mr3///+wksspAAAAAnRSTlP/AOW3MEoAAAAdSURBVAgdY9jXwCDDwNDRwHCwgeExmASygSL7GgB12QiqNHZZIwAAAABJRU5ErkJggg==" title="Close" style="position: absolute; cursor: default; padding: 8px; right: 2px; top: 2px; display: none;"><div title="Directional Connector" style="border-top-style: solid; border-top-width: 1px; text-align: center; width: 100%; overflow: hidden; position: absolute; padding-top: 6px; bottom: 6px; margin-top: -53px;">Directional Connector</div></div></body></html>