565 lines
584 KiB
HTML
565 lines
584 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>Architecture_diagram.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="./Architecture_diagram.drawio - draw.io_files/dropins.js.download" id="dropboxjs" data-app-key="jg02tc0onwmhlgm"></script><script type="text/javascript" defer="true" src="./Architecture_diagram.drawio - draw.io_files/OneDrive.js.download"></script><script type="text/javascript" defer="true" src="./Architecture_diagram.drawio - draw.io_files/Dropbox-sdk.min.js.download"></script><script src="./Architecture_diagram.drawio - draw.io_files/cb=gapi.loaded_0" async=""></script><script type="text/javascript" defer="true" src="./Architecture_diagram.drawio - draw.io_files/extensions.min.js.download"></script><script type="text/javascript" defer="true" src="./Architecture_diagram.drawio - draw.io_files/stencils.min.js.download"></script><script type="text/javascript" defer="true" src="./Architecture_diagram.drawio - draw.io_files/shapes-14-6-5.min.js.download"></script><script type="text/javascript" defer="true" src="./Architecture_diagram.drawio - draw.io_files/api.js.download" gapi_processed="true"></script><script type="text/javascript" defer="true" src="./Architecture_diagram.drawio - draw.io_files/pusher.min.js.download"></script><script type="text/javascript" defer="true" src="./Architecture_diagram.drawio - draw.io_files/PostConfig.js.download"></script><script type="text/javascript" defer="true" src="./Architecture_diagram.drawio - draw.io_files/app.min.js.download"></script><script type="text/javascript" defer="true" src="./Architecture_diagram.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="./Architecture_diagram.drawio - draw.io_files/grapheditor.css">
|
|
<link rel="stylesheet" media="(forced-colors: active)" href="./Architecture_diagram.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="./Architecture_diagram.drawio - draw.io_files/common.css" charset="UTF-8" type="text/css"><script type="text/javascript" src="./Architecture_diagram.drawio - draw.io_files/startup.js.download"></script><script src="./Architecture_diagram.drawio - draw.io_files/core.js.download" charset="UTF-8"></script><script src="./Architecture_diagram.drawio - draw.io_files/svg.js.download" charset="UTF-8"></script><script src="./Architecture_diagram.drawio - draw.io_files/tex.js.download" charset="UTF-8"></script><script src="./Architecture_diagram.drawio - draw.io_files/asciimath.js.download" charset="UTF-8"></script><script src="./Architecture_diagram.drawio - draw.io_files/safe.js.download" charset="UTF-8"></script><script src="./Architecture_diagram.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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHdpZHRoPSIyNCI+PHBhdGggZD0iTTEyIDE1cTEuMjUgMCAyLjEyNS0uODc1VDE1IDEycTAtMS4yNS0uODc1LTIuMTI1VDEyIDlxLTEuMjUgMC0yLjEyNS44NzVUOSAxMnEwIDEuMjUuODc1IDIuMTI1VDEyIDE1Wm0wIDJxLTIuMDc1IDAtMy41MzctMS40NjNRNyAxNC4wNzUgNyAxMnQxLjQ2My0zLjUzOFE5LjkyNSA3IDEyIDd0My41MzggMS40NjJRMTcgOS45MjUgMTcgMTJxMCAyLjA3NS0xLjQ2MiAzLjUzN1ExNC4wNzUgMTcgMTIgMTdaTTIgMTNxLS40MjUgMC0uNzEyLS4yODhRMSAxMi40MjUgMSAxMnQuMjg4LS43MTNRMS41NzUgMTEgMiAxMWgycS40MjUgMCAuNzEzLjI4N1E1IDExLjU3NSA1IDEydC0uMjg3LjcxMlE0LjQyNSAxMyA0IDEzWm0xOCAwcS0uNDI1IDAtLjcxMi0uMjg4UTE5IDEyLjQyNSAxOSAxMnQuMjg4LS43MTNRMTkuNTc1IDExIDIwIDExaDJxLjQyNSAwIC43MTIuMjg3LjI4OC4yODguMjg4LjcxM3QtLjI4OC43MTJRMjIuNDI1IDEzIDIyIDEzWm0tOC04cS0uNDI1IDAtLjcxMi0uMjg4UTExIDQuNDI1IDExIDRWMnEwLS40MjUuMjg4LS43MTNRMTEuNTc1IDEgMTIgMXQuNzEzLjI4N1ExMyAxLjU3NSAxMyAydjJxMCAuNDI1LS4yODcuNzEyUTEyLjQyNSA1IDEyIDVabTAgMThxLS40MjUgMC0uNzEyLS4yODhRMTEgMjIuNDI1IDExIDIydi0ycTAtLjQyNS4yODgtLjcxMlExMS41NzUgMTkgMTIgMTl0LjcxMy4yODhRMTMgMTkuNTc1IDEzIDIwdjJxMCAuNDI1LS4yODcuNzEyUTEyLjQyNSAyMyAxMiAyM1pNNS42NSA3LjA1IDQuNTc1IDZxLS4zLS4yNzUtLjI4OC0uNy4wMTMtLjQyNS4yODgtLjcyNS4zLS4zLjcyNS0uM3QuNy4zTDcuMDUgNS42NXEuMjc1LjMuMjc1LjcgMCAuNC0uMjc1LjctLjI3NS4zLS42ODcuMjg3LS40MTMtLjAxMi0uNzEzLS4yODdaTTE4IDE5LjQyNWwtMS4wNS0xLjA3NXEtLjI3NS0uMy0uMjc1LS43MTIgMC0uNDEzLjI3NS0uNjg4LjI3NS0uMy42ODgtLjI4Ny40MTIuMDEyLjcxMi4yODdMMTkuNDI1IDE4cS4zLjI3NS4yODguNy0uMDEzLjQyNS0uMjg4LjcyNS0uMy4zLS43MjUuM3QtLjctLjNaTTE2Ljk1IDcuMDVxLS4zLS4yNzUtLjI4Ny0uNjg4LjAxMi0uNDEyLjI4Ny0uNzEyTDE4IDQuNTc1cS4yNzUtLjMuNy0uMjg4LjQyNS4wMTMuNzI1LjI4OC4zLjMuMy43MjV0LS4zLjdMMTguMzUgNy4wNXEtLjMuMjc1LS43LjI3NS0uNCAwLS43LS4yNzVaTTQuNTc1IDE5LjQyNXEtLjMtLjMtLjMtLjcyNXQuMy0uN2wxLjA3NS0xLjA1cS4zLS4yNzUuNzEzLS4yNzUuNDEyIDAgLjY4Ny4yNzUuMy4yNzUuMjg4LjY4OC0uMDEzLjQxMi0uMjg4LjcxMkw2IDE5LjQyNXEtLjI3NS4zLS43LjI4Ny0uNDI1LS4wMTItLjcyNS0uMjg3Wk0xMiAxMloiLz48L3N2Zz4=");"></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("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIKICAgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMzA2LjE4NSAxMjAuMjk2IgogICB2aWV3Qm94PSIyNCAyNiA2OCA2OCIKICAgeT0iMHB4IgogICB4PSIwcHgiCiAgIHZlcnNpb249IjEuMSI+CiAgIAkgPGc+PGxpbmUKICAgICAgIHkyPSI3Mi4zOTQiCiAgICAgICB4Mj0iNDEuMDYxIgogICAgICAgeTE9IjQzLjM4NCIKICAgICAgIHgxPSI1OC4wNjkiCiAgICAgICBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiCiAgICAgICBzdHJva2Utd2lkdGg9IjMuNTUyOCIKICAgICAgIHN0cm9rZT0iI0ZGRkZGRiIKICAgICAgIGZpbGw9Im5vbmUiIC8+PGxpbmUKICAgICAgIHkyPSI3Mi4zOTQiCiAgICAgICB4Mj0iNzUuMDc2IgogICAgICAgeTE9IjQzLjM4NCIKICAgICAgIHgxPSI1OC4wNjgiCiAgICAgICBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiCiAgICAgICBzdHJva2Utd2lkdGg9IjMuNTAwOCIKICAgICAgIHN0cm9rZT0iI0ZGRkZGRiIKICAgICAgIGZpbGw9Im5vbmUiIC8+PGc+PHBhdGgKICAgICAgICAgZD0iTTUyLjc3Myw3Ny4wODRjMCwxLjk1NC0xLjU5OSwzLjU1My0zLjU1MywzLjU1M0gzNi45OTljLTEuOTU0LDAtMy41NTMtMS41OTktMy41NTMtMy41NTN2LTkuMzc5ICAgIGMwLTEuOTU0LDEuNTk5LTMuNTUzLDMuNTUzLTMuNTUzaDEyLjIyMmMxLjk1NCwwLDMuNTUzLDEuNTk5LDMuNTUzLDMuNTUzVjc3LjA4NHoiCiAgICAgICAgIGZpbGw9IiNGRkZGRkYiIC8+PC9nPjxnCiAgICAgICBpZD0iZzM0MTkiPjxwYXRoCiAgICAgICAgIGQ9Ik02Ny43NjIsNDguMDc0YzAsMS45NTQtMS41OTksMy41NTMtMy41NTMsMy41NTNINTEuOTg4Yy0xLjk1NCwwLTMuNTUzLTEuNTk5LTMuNTUzLTMuNTUzdi05LjM3OSAgICBjMC0xLjk1NCwxLjU5OS0zLjU1MywzLjU1My0zLjU1M0g2NC4yMWMxLjk1NCwwLDMuNTUzLDEuNTk5LDMuNTUzLDMuNTUzVjQ4LjA3NHoiCiAgICAgICAgIGZpbGw9IiNGRkZGRkYiIC8+PC9nPjxnPjxwYXRoCiAgICAgICAgIGQ9Ik04Mi43NTIsNzcuMDg0YzAsMS45NTQtMS41OTksMy41NTMtMy41NTMsMy41NTNINjYuOTc3Yy0xLjk1NCwwLTMuNTUzLTEuNTk5LTMuNTUzLTMuNTUzdi05LjM3OSAgICBjMC0xLjk1NCwxLjU5OS0zLjU1MywzLjU1My0zLjU1M2gxMi4yMjJjMS45NTQsMCwzLjU1MywxLjU5OSwzLjU1MywzLjU1M1Y3Ny4wODR6IgogICAgICAgICBmaWxsPSIjRkZGRkZGIiAvPjwvZz48L2c+PC9zdmc+"); 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="Architecture_diagram.drawio - Rename" class="geItem" style="padding: 2px 8px; display: inline; font-size: 18px; white-space: nowrap;">Architecture_diagram.drawio</a></div><a class="geUser geItem" style="background-image: url("images/expanded.gif"); 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("data:image/gif;base64,R0lGODlhMAAwAIAAAP///wAAACH5BAEAAAAALAAAAAAwADAAAAIxhI+py+0Po5y02ouz3rz7D4biSJbmiabqyrbuC8fyTNf2jef6zvf+DwwKh8Si8egpAAA7");"></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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg=="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg=="); 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;"><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; 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" 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;"><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; 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="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;"><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;"><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;"><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; 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 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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;"><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=""Helvetica"" 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=""Helvetica"" 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=""Helvetica"" 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=""Helvetica"" 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=""Helvetica"" 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=""Helvetica"" 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=""Helvetica"" 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=""Helvetica"" 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=""Helvetica"" 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=""Helvetica"" 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=""Helvetica"" 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / AR & 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Desktop & 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Network & 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS18 / Security, Identity & 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / AR & 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Management & 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Migration & 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Network & 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>AWS / Security, Identity & 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); background-repeat: no-repeat; background-position: 0px 50%; background-size: 20px; display: none;"><span>Electrical / Rotating Equipment & 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDAwLTI4MHYtNDAwbDIwMCAyMDAtMjAwIDIwMFoiLz48L3N2Zz4="); 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: 0px; bottom: 0px;"></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 0px 36px 212px; touch-action: none; overflow: auto;" tabindex="0"><div class="geBackgroundPage" style="position: absolute; border-width: 1px; overflow: hidden; left: 1674px; top: 778px; width: 2549px; height: 1099px; 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("data:image/svg+xml;base64,PHN2ZyBzdHlsZT0iY29sb3Itc2NoZW1lOiBsaWdodCBkYXJrOyIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJncmlkIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxwYXRoIGQ9Ik0gMCAxMCBMIDQwIDEwIE0gMTAgMCBMIDEwIDQwIE0gMCAyMCBMIDQwIDIwIE0gMjAgMCBMIDIwIDQwIE0gMCAzMCBMIDQwIDMwIE0gMzAgMCBMIDMwIDQwIiBmaWxsPSJub25lIiBzdHlsZT0ic3Ryb2tlOmxpZ2h0LWRhcmsoI2QwZDBkMCwgIzQyNDI0Mik7IiBzdHJva2U9IiNkMGQwZDAiIG9wYWNpdHk9IjAuMiIgc3Ryb2tlLXdpZHRoPSIxIi8+PHBhdGggZD0iTSA0MCAwIEwgMCAwIDAgNDAiIGZpbGw9Im5vbmUiIHN0eWxlPSJzdHJva2U6bGlnaHQtZGFyaygjZDBkMGQwLCAjNDI0MjQyKTsiIHN0cm9rZT0iI2QwZDBkMCIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+"); background-position: -31px -1px;"></div><svg style="left: 0px; top: 0px; width: 100%; height: 100%; display: block; min-width: 5898px; min-height: 2656px; 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><g transform="translate(0.5,0.5)" style="visibility: visible;"><path d="M 2524 778 L 2524 1878" 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 2524 778 L 2524 1878" 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 3374 778 L 3374 1878" 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 3374 778 L 3374 1878" 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><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: row-resize;"><path d="M 2669 898 L 2669 878 L 2899 878 L 2899 891.63" 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 2669 898 L 2669 878 L 2899 878 L 2899 891.63" 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 2899 896.88 L 2895.5 889.88 L 2899 891.63 L 2902.5 889.88 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 transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><rect x="2594" y="898" width="150" height="150" fill="#ffffff" stroke="#000000" 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><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: 973px; margin-left: 2595px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: "Helvetica"; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">STM32C011F4<div>Master</div></div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: row-resize;"><path d="M 2484 973 L 2587.63 973" 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 2484 973 L 2587.63 973" 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 2592.88 973 L 2585.88 976.5 L 2587.63 973 L 2585.88 969.5 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 transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><rect x="2364" y="943" width="120" height="60" rx="9" ry="9" fill="#ffffff" stroke="#000000" 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><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: 973px; margin-left: 2365px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: "Helvetica"; 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 transform="translate(0.5,0.5)" style="visibility: visible; cursor: col-resize;"><path d="M 2899 1048 L 2899 1091.63" 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 2899 1048 L 2899 1091.63" 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 2899 1096.88 L 2895.5 1089.88 L 2899 1091.63 L 2902.5 1089.88 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 transform="translate(0.5,0.5)" style="visibility: visible; cursor: col-resize;"><path d="M 2974 1048 L 2994 1048 L 2994 1091.63" 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 2974 1048 L 2994 1048 L 2994 1091.63" 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 2994 1096.88 L 2990.5 1089.88 L 2994 1091.63 L 2997.5 1089.88 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 transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><rect x="2824" y="898" width="150" height="150" fill="#ffffff" stroke="#000000" 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><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: 973px; margin-left: 2825px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: "Helvetica"; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">STM32C011F4<div>Slave</div></div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><rect x="2839" y="1098" width="120" height="60" rx="9" ry="9" fill="#ffffff" stroke="#000000" 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><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: 1128px; margin-left: 2840px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: "Helvetica"; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Red Led</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><rect x="2964" y="1098" width="120" height="60" rx="9" ry="9" fill="#ffffff" stroke="#000000" 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><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: 1128px; margin-left: 2965px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: "Helvetica"; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Amber Led</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: col-resize;"><path d="M 3199 1048 L 3199 1091.63" 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 3199 1048 L 3199 1091.63" 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 3199 1096.88 L 3195.5 1089.88 L 3199 1091.63 L 3202.5 1089.88 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 transform="translate(0.5,0.5)" style="visibility: visible; cursor: row-resize;"><path d="M 3274 1048 L 3344 1048 L 3344 1091.63" 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 3274 1048 L 3344 1048 L 3344 1091.63" 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 3344 1096.88 L 3340.5 1089.88 L 3344 1091.63 L 3347.5 1089.88 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 transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><rect x="3124" y="898" width="150" height="150" fill="#ffffff" stroke="#000000" 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><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: 973px; margin-left: 3125px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: "Helvetica"; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">STM32C011F4<div>Slave</div></div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><rect x="3139" y="1098" width="120" height="60" rx="9" ry="9" fill="#ffffff" stroke="#000000" 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><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: 1128px; margin-left: 3140px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: "Helvetica"; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Red Led</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><rect x="3284" y="1098" width="120" height="60" rx="9" ry="9" fill="#ffffff" stroke="#000000" 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><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: 1128px; margin-left: 3285px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: "Helvetica"; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Amber Led</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: crosshair;"><path d="M 2899 878 L 3214 878 L 3214 891.63" 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 2899 878 L 3214 878 L 3214 891.63" 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 3214 896.88 L 3210.5 889.88 L 3214 891.63 L 3217.5 889.88 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 transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><path d="M 2752.37 978 L 2817.63 978" 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 2752.37 978 L 2817.63 978" 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 2747.12 978 L 2754.12 974.5 L 2752.37 978 L 2754.12 981.5 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><path d="M 2822.88 978 L 2815.88 981.5 L 2817.63 978 L 2815.88 974.5 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 style="visibility: hidden;"></g><g style="visibility: visible;"><g><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: 979px; margin-left: 2787px;"><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: "Helvetica"; 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; ">GPIO Pins</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><path d="M 2980.37 978 L 3117.63 978" 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 2980.37 978 L 3117.63 978" 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 2975.12 978 L 2982.12 974.5 L 2980.37 978 L 2982.12 981.5 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><path d="M 3122.88 978 L 3115.88 981.5 L 3117.63 978 L 3115.88 974.5 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 style="visibility: hidden; cursor: move;"></g><g style="visibility: visible; cursor: move;"><g><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: 979px; margin-left: 3036px;"><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: "Helvetica"; 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; ">GPIO pins</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: pointer;"><path d="M 3499 1048 L 3499 1091.63" 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 3499 1048 L 3499 1091.63" 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 3499 1096.88 L 3495.5 1089.88 L 3499 1091.63 L 3502.5 1089.88 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 transform="translate(0.5,0.5)" style="visibility: visible; cursor: row-resize;"><path d="M 3574 973 L 3644 973 L 3644 1091.63" 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 3574 973 L 3644 973 L 3644 1091.63" 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 3644 1096.88 L 3640.5 1089.88 L 3644 1091.63 L 3647.5 1089.88 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 transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><rect x="3424" y="898" width="150" height="150" fill="#ffffff" stroke="#000000" 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><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: 973px; margin-left: 3425px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: "Helvetica"; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">STM32C011F4<div>Slave</div></div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><rect x="3439" y="1098" width="120" height="60" rx="9" ry="9" fill="#ffffff" stroke="#000000" 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><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: 1128px; margin-left: 3440px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: "Helvetica"; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Red Led</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><rect x="3584" y="1098" width="120" height="60" rx="9" ry="9" fill="#ffffff" stroke="#000000" 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><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: 1128px; margin-left: 3585px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; color: #000000; "><div style="display: inline-block; font-size: 12px; font-family: "Helvetica"; color: light-dark(#000000, #ffffff); line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Amber Led</div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: crosshair;"><path d="M 3214 878 L 3499 878 L 3499 891.63" 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 3214 878 L 3499 878 L 3499 891.63" 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 3499 896.88 L 3495.5 889.88 L 3499 891.63 L 3502.5 889.88 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 transform="translate(0.5,0.5)" style="visibility: visible;"></g><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><path d="M 3580.37 938 L 3744 938 L 3744 1178 L 2674 1178 L 2674 1054.37" 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 3580.37 938 L 3744 938 L 3744 1178 L 2674 1178 L 2674 1054.37" 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 3575.12 938 L 3582.12 934.5 L 3580.37 938 L 3582.12 941.5 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><path d="M 2674 1049.12 L 2677.5 1056.12 L 2674 1054.37 L 2670.5 1056.12 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 style="visibility: hidden; cursor: move;"></g><g style="visibility: visible; cursor: move;"><g><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: 1181px; margin-left: 3151px;"><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: "Helvetica"; 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; ">Feedback </div></div></div></foreignobject></g></g><g transform="translate(0.5,0.5)" style="visibility: visible; cursor: move;"><path d="M 3280.37 978 L 3417.63 978" 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 3280.37 978 L 3417.63 978" 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 3275.12 978 L 3282.12 974.5 L 3280.37 978 L 3282.12 981.5 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><path d="M 3422.88 978 L 3415.88 981.5 L 3417.63 978 L 3415.88 974.5 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 style="visibility: hidden;"></g><g style="visibility: visible;"><g><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: 977px; margin-left: 3345px;"><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: "Helvetica"; 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; ">GPIO Pins </div></div></div></foreignobject></g></g></g><g><g transform="translate(0.5,0.5)" style="cursor: move; visibility: visible;"><rect x="2761" y="972" width="52" height="13" 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: move;"><image x="2778" y="970" width="16" height="16" xlink:href="data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiIHZlcnNpb249IjEuMSIgc3R5bGU9ImNvbG9yLXNjaGVtZTogbGlnaHQgZGFyazsiPjxwYXRoIGQ9Im0gOCAzIEwgMTMgOCBMIDggMTMgTCAzIDggeiIgc3Ryb2tlPSIjZmZmIiBmaWxsPSIjZmNhMDAwIi8+PC9zdmc+" preserveAspectRatio="none"></image></g><g title="Click and drag to rotate, click to turn shape only by 90 degrees" style="cursor: crosshair;"><image x="2825" y="944" width="16" height="16" xlink:href="data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiBzdHlsZT0iY29sb3Itc2NoZW1lOiBsaWdodCBkYXJrOyI+PHBhdGggc3Ryb2tlPSIjMjliNmYyIiBmaWxsPSIjMjliNmYyIiBkPSJNMTUuNTUgNS41NUwxMSAxdjMuMDdDNy4wNiA0LjU2IDQgNy45MiA0IDEyczMuMDUgNy40NCA3IDcuOTN2LTIuMDJjLTIuODQtLjQ4LTUtMi45NC01LTUuOTFzMi4xNi01LjQzIDUtNS45MVYxMGw0LjU1LTQuNDV6TTE5LjkzIDExYy0uMTctMS4zOS0uNzItMi43My0xLjYyLTMuODlsLTEuNDIgMS40MmMuNTQuNzUuODggMS42IDEuMDIgMi40N2gyLjAyek0xMyAxNy45djIuMDJjMS4zOS0uMTcgMi43NC0uNzEgMy45LTEuNjFsLTEuNDQtMS40NGMtLjc1LjU0LTEuNTkuODktMi40NiAxLjAzem0zLjg5LTIuNDJsMS40MiAxLjQxYy45LTEuMTYgMS40NS0yLjUgMS42Mi0zLjg5aC0yLjAyYy0uMTQuODctLjQ4IDEuNzItMS4wMiAyLjQ4eiIvPjwvc3ZnPg==" preserveAspectRatio="none"></image></g></g><g></g></g></svg></div><div class="geTabContainer geTabItem" style="left: 212px; bottom: 0px; right: 0px; height: 36px;"><div class="geTab geControlTab" title="Pages" style="width: 30px;"><div class="geAdaptiveAsset" style="background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMThweCIgdmlld0JveD0iMCAwIDI0IDI0IiB3aWR0aD0iMThweCIgZmlsbD0iIzAwMDAwMCI+PHBhdGggZD0iTTAgMGgyNHYyNEgwVjB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTEyIDhjMS4xIDAgMi0uOSAyLTJzLS45LTItMi0yLTIgLjktMiAyIC45IDIgMiAyem0wIDJjLTEuMSAwLTIgLjktMiAycy45IDIgMiAyIDItLjkgMi0yLS45LTItMi0yem0wIDZjLTEuMSAwLTIgLjktMiAycy45IDIgMiAyIDItLjkgMi0yLS45LTItMi0yeiIvPjwvc3ZnPg=="); 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 (SRwQqNkXz1Vm5CGoCmWU) [1]" draggable="true"><span style="max-width: 160px; text-overflow: ellipsis; overflow: hidden;">Page-1</span><div class="geTabMenuButton" style="background-image: url("data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxNHB4IiBoZWlnaHQ9IjEwcHgiIHZlcnNpb249IjEuMSIgc3R5bGU9ImNvbG9yLXNjaGVtZTogbGlnaHQgZGFyazsiPjxwYXRoIGQ9Ik0gMyA3IEwgNyAzIEwgMTEgNyIgc3Ryb2tlPSIjNzA3MDcwIiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTkgMTNoLTZ2NmgtMnYtNkg1di0yaDZWNWgydjZoNnYyeiIvPjwvc3ZnPg=="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0iTTI4LjA1IDM1LjMgMTYuNyAyMy45NSAyOC4wNSAxMi42bDEuNiAxLjY1LTkuNyA5LjcgOS43IDkuNzVaIi8+PC9zdmc+"); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDgiIHdpZHRoPSI0OCI+PHBhdGggZD0ibTE4Ljc1IDM1LjMtMS42LTEuNiA5LjctOS43NS05LjctOS43IDEuNi0xLjY1TDMwLjEgMjMuOTVaIi8+PC9zdmc+"); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg=="); background-position: right -4px top 50%; background-repeat: no-repeat;"><div class="geToolbarButton geAdaptiveAsset" style="background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjAwLTEyMHEtMzMgMC01Ni41LTIzLjVUMTIwLTIwMHYtNTYwcTAtMzMgMjMuNS01Ni41VDIwMC04NDBoNTYwcTMzIDAgNTYuNSAyMy41VDg0MC03NjB2NTYwcTAgMzMtMjMuNSA1Ni41VDc2MC0xMjBIMjAwWm0xMjAtODB2LTU2MEgyMDB2NTYwaDEyMFptODAgMGgzNjB2LTU2MEg0MDB2NTYwWm0tODAgMEgyMDBoMTIwWiIvPjwvc3ZnPg=="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg=="); background-position: right -4px top 50%; background-repeat: no-repeat;">100%</a><div class="geSeparator"></div><a class="geButton" title="Zoom In (Ctrl + / Alt+Mousewheel)"><div class="geAdaptiveAsset" style="background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNNzg0LTEyMCA1MzItMzcycS0zMCAyNC02OSAzOHQtODMgMTRxLTEwOSAwLTE4NC41LTc1LjVUMTIwLTU4MHEwLTEwOSA3NS41LTE4NC41VDM4MC04NDBxMTA5IDAgMTg0LjUgNzUuNVQ2NDAtNTgwcTAgNDQtMTQgODN0LTM4IDY5bDI1MiAyNTItNTYgNTZaTTM4MC00MDBxNzUgMCAxMjcuNS01Mi41VDU2MC01ODBxMC03NS01Mi41LTEyNy41VDM4MC03NjBxLTc1IDAtMTI3LjUgNTIuNVQyMDAtNTgwcTAgNzUgNTIuNSAxMjcuNVQzODAtNDAwWm0tNDAtNjB2LTgwaC04MHYtODBoODB2LTgwaDgwdjgwaDgwdjgwaC04MHY4MGgtODBaIi8+PC9zdmc+"); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNNzg0LTEyMCA1MzItMzcycS0zMCAyNC02OSAzOHQtODMgMTRxLTEwOSAwLTE4NC41LTc1LjVUMTIwLTU4MHEwLTEwOSA3NS41LTE4NC41VDM4MC04NDBxMTA5IDAgMTg0LjUgNzUuNVQ2NDAtNTgwcTAgNDQtMTQgODN0LTM4IDY5bDI1MiAyNTItNTYgNTZaTTM4MC00MDBxNzUgMCAxMjcuNS01Mi41VDU2MC01ODBxMC03NS01Mi41LTEyNy41VDM4MC03NjBxLTc1IDAtMTI3LjUgNTIuNVQyMDAtNTgwcTAgNzUgNTIuNSAxMjcuNVQzODAtNDAwWk0yODAtNTQwdi04MGgyMDB2ODBIMjgwWiIvPjwvc3ZnPg=="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjgwLTIwMHYtODBoMjg0cTYzIDAgMTA5LjUtNDBUNzIwLTQyMHEwLTYwLTQ2LjUtMTAwVDU2NC01NjBIMzEybDEwNCAxMDQtNTYgNTYtMjAwLTIwMCAyMDAtMjAwIDU2IDU2LTEwNCAxMDRoMjUycTk3IDAgMTY2LjUgNjNUODAwLTQyMHEwIDk0LTY5LjUgMTU3VDU2NC0yMDBIMjgwWiIvPjwvc3ZnPg=="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMzk2LTIwMHEtOTcgMC0xNjYuNS02M1QxNjAtNDIwcTAtOTQgNjkuNS0xNTdUMzk2LTY0MGgyNTJMNTQ0LTc0NGw1Ni01NiAyMDAgMjAwLTIwMCAyMDAtNTYtNTYgMTA0LTEwNEgzOTZxLTYzIDAtMTA5LjUgNDBUMjQwLTQyMHEwIDYwIDQ2LjUgMTAwVDM5Ni0yODBoMjg0djgwSDM5NloiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjgwLTEyMHEtMzMgMC01Ni41LTIzLjVUMjAwLTIwMHYtNTIwaC00MHYtODBoMjAwdi00MGgyNDB2NDBoMjAwdjgwaC00MHY1MjBxMCAzMy0yMy41IDU2LjVUNjgwLTEyMEgyODBabTQwMC02MDBIMjgwdjUyMGg0MDB2LTUyMFpNMzYwLTI4MGg4MHYtMzYwaC04MHYzNjBabTE2MCAwaDgwdi0zNjBoLTgwdjM2MFpNMjgwLTcyMHY1MjAtNTIwWiIvPjwvc3ZnPg=="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMzYwLTI4MHEtMzMgMC01Ni41LTIzLjVUMjgwLTM2MHYtNDAwcTAtMzMgMjMuNS01Ni41VDM2MC04NDBoNDAwcTMzIDAgNTYuNSAyMy41VDg0MC03NjB2NDAwcTAgMzMtMjMuNSA1Ni41VDc2MC0yODBIMzYwWm0wLTgwaDQwMHYtNDAwSDM2MHY0MDBaTTIwMC0yMDB2ODBxLTMzIDAtNTYuNS0yMy41VDEyMC0yMDBoODBabS04MC04MHYtODBoODB2ODBoLTgwWm0wLTE2MHYtODBoODB2ODBoLTgwWm0wLTE2MHYtODBoODB2ODBoLTgwWm0xNjAgNDgwdi04MGg4MHY4MGgtODBabTE2MCAwdi04MGg4MHY4MGgtODBabTE2MCAwdi04MGg4MHY4MGgtODBaIi8+PC9zdmc+"); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjAwLTEyMHEtMzMgMC01Ni41LTIzLjVUMTIwLTIwMHYtNDgwaDgwdjQ4MGg0ODB2ODBIMjAwWm0xNjAtMjQwdjgwcS0zMyAwLTU2LjUtMjMuNVQyODAtMzYwaDgwWm0tODAtODB2LTgwaDgwdjgwaC04MFptMC0xNjB2LTgwaDgwdjgwaC04MFptODAtMTYwaC04MHEwLTMzIDIzLjUtNTYuNVQzNjAtODQwdjgwWm04MCA0ODB2LTgwaDgwdjgwaC04MFptMC00ODB2LTgwaDgwdjgwaC04MFptMTYwIDB2LTgwaDgwdjgwaC04MFptMCA0ODB2LTgwaDgwdjgwaC04MFptMTYwLTQ4MHYtODBxMzMgMCA1Ni41IDIzLjVUODQwLTc2MGgtODBabTAgNDAwaDgwcTAgMzMtMjMuNSA1Ni41VDc2MC0yODB2LTgwWm0wLTgwdi04MGg4MHY4MGgtODBabTAtMTYwdi04MGg4MHY4MGgtODBaIi8+PC9zdmc+"); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJtMjQ3LTkwNCA1Ny01NiAzNDMgMzQzcTIzIDIzIDIzIDU3dC0yMyA1N0w0NTctMzEzcS0yMyAyMy01NyAyM3QtNTctMjNMMTUzLTUwM3EtMjMtMjMtMjMtNTd0MjMtNTdsMTkwLTE5MS05Ni05NlptMTUzIDE1M0wyMDktNTYwaDM4Mkw0MDAtNzUxWm0zNjAgNDcxcS0zMyAwLTU2LjUtMjMuNVQ2ODAtMzYwcTAtMjEgMTIuNS00NXQyNy41LTQ1cTktMTIgMTktMjV0MjEtMjVxMTEgMTIgMjEgMjV0MTkgMjVxMTUgMjEgMjcuNSA0NXQxMi41IDQ1cTAgMzMtMjMuNSA1Ni41VDc2MC0yODBaTTgwIDB2LTE2MGg4MDBWMEg4MFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNODAgMHYtMTYwaDgwMFYwSDgwWm0xNjAtMzIwaDU2bDMxMi0zMTEtMjktMjktMjgtMjgtMzExIDMxMnY1NlptLTgwIDgwdi0xNzBsNDQ4LTQ0N3ExMS0xMSAyNS41LTE3dDMwLjUtNnExNiAwIDMxIDZ0MjcgMThsNTUgNTZxMTIgMTEgMTcuNSAyNnQ1LjUgMzFxMCAxNS01LjUgMjkuNVQ3NzctNjg3TDMzMC0yNDBIMTYwWm01NjAtNTA0LTU2LTU2IDU2IDU2Wk02MDgtNjMxbC0yOS0yOS0yOC0yOCA1NyA1N1oiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMTYwLTgwcS0zMyAwLTU2LjUtMjMuNVQ4MC0xNjB2LTQ4MHEwLTMzIDIzLjUtNTYuNVQxNjAtNzIwaDgwdi04MHEwLTMzIDIzLjUtNTYuNVQzMjAtODgwaDQ4MHEzMyAwIDU2LjUgMjMuNVQ4ODAtODAwdjQ4MHEwIDMzLTIzLjUgNTYuNVQ4MDAtMjQwaC04MHY4MHEwIDMzLTIzLjUgNTYuNVQ2NDAtODBIMTYwWm0xNjAtMjQwaDQ4MHYtNDgwSDMyMHY0ODBaIi8+PC9zdmc+"); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg=="); 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("data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIyMHB4IiBoZWlnaHQ9IjIycHgiIHZpZXdCb3g9IjAgMCA0MiAyMCIgdmVyc2lvbj0iMS4xIiBzdHlsZT0iY29sb3Itc2NoZW1lOiBsaWdodCBkYXJrOyI+PHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNCwzKSIgc3Ryb2tlLXdpZHRoPSIyIiBkPSJNIDAgOCBMIDI2IDggTCAyNiA0IEwgMzIgOCBMIDI2IDEyIEwgMjYgOCBaIiBzdHJva2U9IiM0MDQwNDAiIGZpbGw9IiM0MDQwNDAiLz48L3N2Zz4=");"></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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg=="); 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("data:image/svg+xml;base64,PCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj48c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE4cHgiIHZpZXdCb3g9IjAgMCAzNiAzNiIgdmVyc2lvbj0iMS4xIiBzdHlsZT0iY29sb3Itc2NoZW1lOiBsaWdodCBkYXJrOyI+PHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMyw0KSIgc3Ryb2tlLXdpZHRoPSIyIiBkPSJNIDAgMjYgTCA0IDI2IEwgNCAzMCBMIDAgMzAgWiBNIDIgMjYgTCAyIDE0IEwgMjggMTQgTCAyOCA0IE0gMjYgMCBMIDMwIDAgTCAzMCA0IEwgMjYgNCBaIiBzdHJva2U9IiM0MDQwNDAiIGZpbGw9Im5vbmUiLz48L3N2Zz4=");"></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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg=="); background-position: right -4px top 50%; background-repeat: no-repeat;"><div class="geToolbarButton geAdaptiveAsset" style="background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTkgMTNoLTZ2NmgtMnYtNkg1di0yaDZWNWgydjZoNnYyeiIvPjwvc3ZnPg=="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjNWY2MzY4Ij48cGF0aCBkPSJNNDgwLTM2MCAyODAtNTYwaDQwMEw0ODAtMzYwWiIvPjwvc3ZnPg=="); background-position: right -4px top 50%; background-repeat: no-repeat;"><div class="geAdaptiveAsset" style="background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMjAwLTEyMHEtMzMgMC01Ni41LTIzLjVUMTIwLTIwMHYtNTYwcTAtMzMgMjMuNS01Ni41VDIwMC04NDBoNTYwcTMzIDAgNTYuNSAyMy41VDg0MC03NjB2NTYwcTAgMzMtMjMuNSA1Ni41VDc2MC0xMjBIMjAwWm0yNDAtMjQwSDIwMHYxNjBoMjQwdi0xNjBabTgwIDB2MTYwaDI0MHYtMTYwSDUyMFptLTgwLTgwdi0xNjBIMjAwdjE2MGgyNDBabTgwIDBoMjQwdi0xNjBINTIwdjE2MFpNMjAwLTY4MGg1NjB2LTgwSDIwMHY4MFoiLz48L3N2Zz4="); 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNNDYwLTMyMHYtMzIwTDMwMC00ODBsMTYwIDE2MFpNMjAwLTEyMHEtMzMgMC01Ni41LTIzLjVUMTIwLTIwMHYtNTYwcTAtMzMgMjMuNS01Ni41VDIwMC04NDBoNTYwcTMzIDAgNTYuNSAyMy41VDg0MC03NjB2NTYwcTAgMzMtMjMuNSA1Ni41VDc2MC0xMjBIMjAwWm00NDAtODBoMTIwdi01NjBINjQwdjU2MFptLTgwIDB2LTU2MEgyMDB2NTYwaDM2MFptODAgMGgxMjAtMTIwWiIvPjwvc3ZnPg==");"></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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJNMTIwLTEyMHYtMjAwaDgwdjEyMGgxMjB2ODBIMTIwWm01MjAgMHYtODBoMTIwdi0xMjBoODB2MjAwSDY0MFpNMTIwLTY0MHYtMjAwaDIwMHY4MEgyMDB2MTIwaC04MFptNjQwIDB2LTEyMEg2NDB2LTgwaDIwMHYyMDBoLTgwWiIvPjwvc3ZnPg==");"></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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMDAwMDAwIj48cGF0aCBkPSJtMjk2LTIyNC01Ni01NiAyNDAtMjQwIDI0MCAyNDAtNTYgNTYtMTg0LTE4My0xODQgMTgzWm0wLTI0MC01Ni01NiAyNDAtMjQwIDI0MCAyNDAtNTYgNTYtMTg0LTE4My0xODQgMTgzWiIvPjwvc3ZnPg=="); 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><div class="geSidebarTooltip" style="user-select: none; z-index: 10005; touch-action: none; display: none; overflow: visible; width: 101px; height: 188px; position: absolute; left: 215px; top: 695.5px;"><svg style="left: 0px; top: 0px; width: 100%; height: 100%; display: block; min-width: 77px; min-height: 117px; overflow: visible;"><g transform="translate(3,0)"><g></g><g><g transform="translate(0.5,0.5)" style="visibility: visible;"><path d="M -4 66 L 16 36 L 16 57 L 76 57 L 76 36 L 96 66 L 76 96 L 76 75 L 16 75 L 16 96 Z" fill="#f1f3f4" stroke="#000000" stroke-miterlimit="10" transform="rotate(90,46,66)" pointer-events="all" style="fill: light-dark(rgb(241, 243, 244), rgb(27, 29, 30)); 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="Double Arrow Vertical" 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;">Double Arrow Vertical</div></div></body></html> |